No resource identifier found for attribute 'roundIcon' in package 'android'2019 Community Moderator ElectionHow do I install a previous version of build tools in addition to the sdk?Gradle error when sync project in Android Studio 3getting no resource identifier found errorAndroid Studio 3.1.3 android:roundIconcould not execute build gradle using gradle distributionWhy does Android Studio throw errors in the manifest file when we change the compileSdkVersion and targetSdkVersion from 26 to 23?Is there a way to run Python on Android?How do save an Android Activity state using save instance state?Close/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?Is there a unique Android device ID?What is 'Context' on Android?Rename package in Android Studioemulator connection to wampserverAndroid studio Gradle DSL method not found: compile() while adding slf4android dependencyjava.lang.ClassCastException when I try cast Application to MyApplication from a Fragment(Android 6+)
Russian cases: A few examples, I'm really confused
How could a female member of a species produce eggs unto death?
Why do passenger jet manufacturers design their planes with stall prevention systems?
Why do Australian milk farmers need to protest supermarkets' milk price?
Is having access to past exams cheating and, if yes, could it be proven just by a good grade?
What is the greatest age difference between a married couple in Tanach?
How do I interpret this "sky cover" chart?
Why doesn't the EU now just force the UK to choose between referendum and no-deal?
Can anyone tell me why this program fails?
What are the possible solutions of the given equation?
How to make healing in an exploration game interesting
What is this large pipe coming out of my roof?
How to write cleanly even if my character uses expletive language?
Is it normal that my co-workers at a fitness company criticize my food choices?
PTIJ: Who should pay for Uber rides: the child or the parent?
How to deal with taxi scam when on vacation?
Informing my boss about remarks from a nasty colleague
Why would a flight no longer considered airworthy be redirected like this?
How to simplify this time periods definition interface?
Sword in the Stone story where the sword was held in place by electromagnets
Should we release the security issues we found in our product as CVE or we can just update those on weekly release notes?
Rules about breaking the rules. How do I do it well?
Life insurance that covers only simultaneous/dual deaths
Is it possible to upcast ritual spells?
No resource identifier found for attribute 'roundIcon' in package 'android'
2019 Community Moderator ElectionHow do I install a previous version of build tools in addition to the sdk?Gradle error when sync project in Android Studio 3getting no resource identifier found errorAndroid Studio 3.1.3 android:roundIconcould not execute build gradle using gradle distributionWhy does Android Studio throw errors in the manifest file when we change the compileSdkVersion and targetSdkVersion from 26 to 23?Is there a way to run Python on Android?How do save an Android Activity state using save instance state?Close/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?Is there a unique Android device ID?What is 'Context' on Android?Rename package in Android Studioemulator connection to wampserverAndroid studio Gradle DSL method not found: compile() while adding slf4android dependencyjava.lang.ClassCastException when I try cast Application to MyApplication from a Fragment(Android 6+)
I'm trying to compile my Project,but in there is some error
Android manifest.xml
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@style/AppTheme">
I already try to rebuild project or sync with gradle but it's not working for me.
my dependencies
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.android.support:design:23.0.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile project(':circleimageview-2.0.0-sources')
How to fix this error? I'm newbie to Android Studio.
android xml
add a comment |
I'm trying to compile my Project,but in there is some error
Android manifest.xml
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@style/AppTheme">
I already try to rebuild project or sync with gradle but it's not working for me.
my dependencies
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.android.support:design:23.0.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile project(':circleimageview-2.0.0-sources')
How to fix this error? I'm newbie to Android Studio.
android xml
3
roundIcon
was first added in API 25, so my guess is that your project is configured to build for an earlier API. Could you post your project-levelbuild.gradle
?
– Michael Dodd
Mar 27 '17 at 14:57
1
Simply removeandroid:roundIcon="@mipmap/ic_launcher"
– Fantômas
Mar 27 '17 at 14:59
add a comment |
I'm trying to compile my Project,but in there is some error
Android manifest.xml
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@style/AppTheme">
I already try to rebuild project or sync with gradle but it's not working for me.
my dependencies
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.android.support:design:23.0.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile project(':circleimageview-2.0.0-sources')
How to fix this error? I'm newbie to Android Studio.
android xml
I'm trying to compile my Project,but in there is some error
Android manifest.xml
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@style/AppTheme">
I already try to rebuild project or sync with gradle but it's not working for me.
my dependencies
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.android.support:design:23.0.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile project(':circleimageview-2.0.0-sources')
How to fix this error? I'm newbie to Android Studio.
android xml
android xml
asked Mar 27 '17 at 14:53
AndriiSGAndriiSG
135118
135118
3
roundIcon
was first added in API 25, so my guess is that your project is configured to build for an earlier API. Could you post your project-levelbuild.gradle
?
– Michael Dodd
Mar 27 '17 at 14:57
1
Simply removeandroid:roundIcon="@mipmap/ic_launcher"
– Fantômas
Mar 27 '17 at 14:59
add a comment |
3
roundIcon
was first added in API 25, so my guess is that your project is configured to build for an earlier API. Could you post your project-levelbuild.gradle
?
– Michael Dodd
Mar 27 '17 at 14:57
1
Simply removeandroid:roundIcon="@mipmap/ic_launcher"
– Fantômas
Mar 27 '17 at 14:59
3
3
roundIcon
was first added in API 25, so my guess is that your project is configured to build for an earlier API. Could you post your project-level build.gradle
?– Michael Dodd
Mar 27 '17 at 14:57
roundIcon
was first added in API 25, so my guess is that your project is configured to build for an earlier API. Could you post your project-level build.gradle
?– Michael Dodd
Mar 27 '17 at 14:57
1
1
Simply remove
android:roundIcon="@mipmap/ic_launcher"
– Fantômas
Mar 27 '17 at 14:59
Simply remove
android:roundIcon="@mipmap/ic_launcher"
– Fantômas
Mar 27 '17 at 14:59
add a comment |
4 Answers
4
active
oldest
votes
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:
- If you're building an app specifically for Android 7.1 or above, ensure that
minSdkVersion
andtargetSdkVersion
are set to 25 in your app'sbuild.gradle
:
defaultConfig
minSdkVersion 25
targetSdkVersion 25
- Alternatively, if you want to target older API levels, you will need to remove
android:roundIcon
from your manifest and only useandroid:icon
.
No worries, if this answer has helped then please upvote and accept.
– Michael Dodd
Mar 28 '17 at 16:14
2
Android 7.1 is still N(Nougat). Android O is 8.0.
– user3157940
May 5 '17 at 18:34
Excellent thanks bro working fine...@AndriiSG
– Gowthaman M
Jun 21 '17 at 15:57
7
I believe this is a bug with android studio, I specifically created project to compile with API 21 and yetandroid:roundIcon
property still added toAndroidManifest.xml
– AaA
Jul 26 '17 at 3:19
3
Android studio keeps adding roundIcon even after deleting it from manifest resulting in build failure. How to solve this using compileSdkVersion 23 ?
– Varun Kumar
Aug 22 '17 at 14:01
|
show 5 more comments
I removed android:roundIcon
from my manifest, but when compiling my project with API 24, the android:roundIcon
property is still added to the AndroidManifest.xml
.
In order to resolve my problem, I had to update my API to version 25 and set comileSdkversion
to 25
.
That's probably because you removed it from the AndroidManifest.xml generated in the target. That the one that will open when you click on the error. You should remove it from the source code (The one you wrote).
– Anthony
Aug 4 '18 at 22:30
add a comment |
roundIcon is an attribute that was first introduced for Android O (8.0). So you have to change the app compile SDK version.
it's introduced in Nougat 7.1 (API 25) not in Oreo 8.0 (API 26)
– Abdelhafid Madoui
Sep 11 '18 at 10:08
add a comment |
As already answered earlier, roundicon was first introduced in API Level 25. If you want to maintain a lower API level without increasing to >= 25 then
go to the mipmap directory and delete the subdirectory "ic_roundicon" with all its files
delete @res/mipmap/ic_roundicon
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f43049734%2fno-resource-identifier-found-for-attribute-roundicon-in-package-android%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
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:
- If you're building an app specifically for Android 7.1 or above, ensure that
minSdkVersion
andtargetSdkVersion
are set to 25 in your app'sbuild.gradle
:
defaultConfig
minSdkVersion 25
targetSdkVersion 25
- Alternatively, if you want to target older API levels, you will need to remove
android:roundIcon
from your manifest and only useandroid:icon
.
No worries, if this answer has helped then please upvote and accept.
– Michael Dodd
Mar 28 '17 at 16:14
2
Android 7.1 is still N(Nougat). Android O is 8.0.
– user3157940
May 5 '17 at 18:34
Excellent thanks bro working fine...@AndriiSG
– Gowthaman M
Jun 21 '17 at 15:57
7
I believe this is a bug with android studio, I specifically created project to compile with API 21 and yetandroid:roundIcon
property still added toAndroidManifest.xml
– AaA
Jul 26 '17 at 3:19
3
Android studio keeps adding roundIcon even after deleting it from manifest resulting in build failure. How to solve this using compileSdkVersion 23 ?
– Varun Kumar
Aug 22 '17 at 14:01
|
show 5 more comments
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:
- If you're building an app specifically for Android 7.1 or above, ensure that
minSdkVersion
andtargetSdkVersion
are set to 25 in your app'sbuild.gradle
:
defaultConfig
minSdkVersion 25
targetSdkVersion 25
- Alternatively, if you want to target older API levels, you will need to remove
android:roundIcon
from your manifest and only useandroid:icon
.
No worries, if this answer has helped then please upvote and accept.
– Michael Dodd
Mar 28 '17 at 16:14
2
Android 7.1 is still N(Nougat). Android O is 8.0.
– user3157940
May 5 '17 at 18:34
Excellent thanks bro working fine...@AndriiSG
– Gowthaman M
Jun 21 '17 at 15:57
7
I believe this is a bug with android studio, I specifically created project to compile with API 21 and yetandroid:roundIcon
property still added toAndroidManifest.xml
– AaA
Jul 26 '17 at 3:19
3
Android studio keeps adding roundIcon even after deleting it from manifest resulting in build failure. How to solve this using compileSdkVersion 23 ?
– Varun Kumar
Aug 22 '17 at 14:01
|
show 5 more comments
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:
- If you're building an app specifically for Android 7.1 or above, ensure that
minSdkVersion
andtargetSdkVersion
are set to 25 in your app'sbuild.gradle
:
defaultConfig
minSdkVersion 25
targetSdkVersion 25
- Alternatively, if you want to target older API levels, you will need to remove
android:roundIcon
from your manifest and only useandroid:icon
.
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:
- If you're building an app specifically for Android 7.1 or above, ensure that
minSdkVersion
andtargetSdkVersion
are set to 25 in your app'sbuild.gradle
:
defaultConfig
minSdkVersion 25
targetSdkVersion 25
- Alternatively, if you want to target older API levels, you will need to remove
android:roundIcon
from your manifest and only useandroid:icon
.
edited Jan 24 '18 at 12:24
answered Mar 27 '17 at 15:18
Michael DoddMichael Dodd
5,710103753
5,710103753
No worries, if this answer has helped then please upvote and accept.
– Michael Dodd
Mar 28 '17 at 16:14
2
Android 7.1 is still N(Nougat). Android O is 8.0.
– user3157940
May 5 '17 at 18:34
Excellent thanks bro working fine...@AndriiSG
– Gowthaman M
Jun 21 '17 at 15:57
7
I believe this is a bug with android studio, I specifically created project to compile with API 21 and yetandroid:roundIcon
property still added toAndroidManifest.xml
– AaA
Jul 26 '17 at 3:19
3
Android studio keeps adding roundIcon even after deleting it from manifest resulting in build failure. How to solve this using compileSdkVersion 23 ?
– Varun Kumar
Aug 22 '17 at 14:01
|
show 5 more comments
No worries, if this answer has helped then please upvote and accept.
– Michael Dodd
Mar 28 '17 at 16:14
2
Android 7.1 is still N(Nougat). Android O is 8.0.
– user3157940
May 5 '17 at 18:34
Excellent thanks bro working fine...@AndriiSG
– Gowthaman M
Jun 21 '17 at 15:57
7
I believe this is a bug with android studio, I specifically created project to compile with API 21 and yetandroid:roundIcon
property still added toAndroidManifest.xml
– AaA
Jul 26 '17 at 3:19
3
Android studio keeps adding roundIcon even after deleting it from manifest resulting in build failure. How to solve this using compileSdkVersion 23 ?
– Varun Kumar
Aug 22 '17 at 14:01
No worries, if this answer has helped then please upvote and accept.
– Michael Dodd
Mar 28 '17 at 16:14
No worries, if this answer has helped then please upvote and accept.
– Michael Dodd
Mar 28 '17 at 16:14
2
2
Android 7.1 is still N(Nougat). Android O is 8.0.
– user3157940
May 5 '17 at 18:34
Android 7.1 is still N(Nougat). Android O is 8.0.
– user3157940
May 5 '17 at 18:34
Excellent thanks bro working fine...@AndriiSG
– Gowthaman M
Jun 21 '17 at 15:57
Excellent thanks bro working fine...@AndriiSG
– Gowthaman M
Jun 21 '17 at 15:57
7
7
I believe this is a bug with android studio, I specifically created project to compile with API 21 and yet
android:roundIcon
property still added to AndroidManifest.xml
– AaA
Jul 26 '17 at 3:19
I believe this is a bug with android studio, I specifically created project to compile with API 21 and yet
android:roundIcon
property still added to AndroidManifest.xml
– AaA
Jul 26 '17 at 3:19
3
3
Android studio keeps adding roundIcon even after deleting it from manifest resulting in build failure. How to solve this using compileSdkVersion 23 ?
– Varun Kumar
Aug 22 '17 at 14:01
Android studio keeps adding roundIcon even after deleting it from manifest resulting in build failure. How to solve this using compileSdkVersion 23 ?
– Varun Kumar
Aug 22 '17 at 14:01
|
show 5 more comments
I removed android:roundIcon
from my manifest, but when compiling my project with API 24, the android:roundIcon
property is still added to the AndroidManifest.xml
.
In order to resolve my problem, I had to update my API to version 25 and set comileSdkversion
to 25
.
That's probably because you removed it from the AndroidManifest.xml generated in the target. That the one that will open when you click on the error. You should remove it from the source code (The one you wrote).
– Anthony
Aug 4 '18 at 22:30
add a comment |
I removed android:roundIcon
from my manifest, but when compiling my project with API 24, the android:roundIcon
property is still added to the AndroidManifest.xml
.
In order to resolve my problem, I had to update my API to version 25 and set comileSdkversion
to 25
.
That's probably because you removed it from the AndroidManifest.xml generated in the target. That the one that will open when you click on the error. You should remove it from the source code (The one you wrote).
– Anthony
Aug 4 '18 at 22:30
add a comment |
I removed android:roundIcon
from my manifest, but when compiling my project with API 24, the android:roundIcon
property is still added to the AndroidManifest.xml
.
In order to resolve my problem, I had to update my API to version 25 and set comileSdkversion
to 25
.
I removed android:roundIcon
from my manifest, but when compiling my project with API 24, the android:roundIcon
property is still added to the AndroidManifest.xml
.
In order to resolve my problem, I had to update my API to version 25 and set comileSdkversion
to 25
.
edited Aug 9 '17 at 6:49
andrewgu
1,3071220
1,3071220
answered Aug 9 '17 at 6:13
harley huharley hu
7112
7112
That's probably because you removed it from the AndroidManifest.xml generated in the target. That the one that will open when you click on the error. You should remove it from the source code (The one you wrote).
– Anthony
Aug 4 '18 at 22:30
add a comment |
That's probably because you removed it from the AndroidManifest.xml generated in the target. That the one that will open when you click on the error. You should remove it from the source code (The one you wrote).
– Anthony
Aug 4 '18 at 22:30
That's probably because you removed it from the AndroidManifest.xml generated in the target. That the one that will open when you click on the error. You should remove it from the source code (The one you wrote).
– Anthony
Aug 4 '18 at 22:30
That's probably because you removed it from the AndroidManifest.xml generated in the target. That the one that will open when you click on the error. You should remove it from the source code (The one you wrote).
– Anthony
Aug 4 '18 at 22:30
add a comment |
roundIcon is an attribute that was first introduced for Android O (8.0). So you have to change the app compile SDK version.
it's introduced in Nougat 7.1 (API 25) not in Oreo 8.0 (API 26)
– Abdelhafid Madoui
Sep 11 '18 at 10:08
add a comment |
roundIcon is an attribute that was first introduced for Android O (8.0). So you have to change the app compile SDK version.
it's introduced in Nougat 7.1 (API 25) not in Oreo 8.0 (API 26)
– Abdelhafid Madoui
Sep 11 '18 at 10:08
add a comment |
roundIcon is an attribute that was first introduced for Android O (8.0). So you have to change the app compile SDK version.
roundIcon is an attribute that was first introduced for Android O (8.0). So you have to change the app compile SDK version.
answered Sep 26 '17 at 6:12
Muhamed Riyas MMuhamed Riyas M
3,45311922
3,45311922
it's introduced in Nougat 7.1 (API 25) not in Oreo 8.0 (API 26)
– Abdelhafid Madoui
Sep 11 '18 at 10:08
add a comment |
it's introduced in Nougat 7.1 (API 25) not in Oreo 8.0 (API 26)
– Abdelhafid Madoui
Sep 11 '18 at 10:08
it's introduced in Nougat 7.1 (API 25) not in Oreo 8.0 (API 26)
– Abdelhafid Madoui
Sep 11 '18 at 10:08
it's introduced in Nougat 7.1 (API 25) not in Oreo 8.0 (API 26)
– Abdelhafid Madoui
Sep 11 '18 at 10:08
add a comment |
As already answered earlier, roundicon was first introduced in API Level 25. If you want to maintain a lower API level without increasing to >= 25 then
go to the mipmap directory and delete the subdirectory "ic_roundicon" with all its files
delete @res/mipmap/ic_roundicon
add a comment |
As already answered earlier, roundicon was first introduced in API Level 25. If you want to maintain a lower API level without increasing to >= 25 then
go to the mipmap directory and delete the subdirectory "ic_roundicon" with all its files
delete @res/mipmap/ic_roundicon
add a comment |
As already answered earlier, roundicon was first introduced in API Level 25. If you want to maintain a lower API level without increasing to >= 25 then
go to the mipmap directory and delete the subdirectory "ic_roundicon" with all its files
delete @res/mipmap/ic_roundicon
As already answered earlier, roundicon was first introduced in API Level 25. If you want to maintain a lower API level without increasing to >= 25 then
go to the mipmap directory and delete the subdirectory "ic_roundicon" with all its files
delete @res/mipmap/ic_roundicon
answered Mar 7 at 12:27
Nkrumah SarpongNkrumah Sarpong
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f43049734%2fno-resource-identifier-found-for-attribute-roundicon-in-package-android%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
roundIcon
was first added in API 25, so my guess is that your project is configured to build for an earlier API. Could you post your project-levelbuild.gradle
?– Michael Dodd
Mar 27 '17 at 14:57
1
Simply remove
android:roundIcon="@mipmap/ic_launcher"
– Fantômas
Mar 27 '17 at 14:59