I\'m trying to compile my Project,but in there is some error
Android manifest.xml
roundIcon
is an attribute that was first introduced for Android Nougat 7.1 (API level 25), therefore you have two available options based on the type of device you're targeting:
minSdkVersion
and targetSdkVersion
are set to 25 in your app's build.gradle
:defaultConfig {
minSdkVersion 25
targetSdkVersion 25
}
android:roundIcon
from your manifest and only use android:icon
.