In Android Studio, I want each of my app variants to have its own icon.
I tried various ways, including what is suggested here How to provide different Android app icons for different gradle buildTypes? but it doesn't work
here is what I wrote in the build.graddle file:
flavorDimensions "marketplaceA"
productFlavors {
koanFlavor {
dimension "marketplaceA"
resValue "string", "app_name", "Koan"
manifestPlaceholders = [
appIcon: "@mipmap/ic_launcher"
]
minSdkVersion 20
targetSdkVersion 27
versionCode 3
versionName '1.1'
}
koanSEFlavor {
dimension "marketplaceA"
resValue "string", "app_name", "Koan SE"
manifestPlaceholders = [
appIcon: "@mipmap/ic_launcher"
]
minSdkVersion 20
targetSdkVersion 27
versionCode 3
versionName '1.1'
}
}
And, since I share the same res in every variant:
I didn't make a res folder for each variant
I filled the mipmapXXX folder of the main res folder with 2 versions of the xml and png files
but the icon doesn't show up when I run the app in the emulator (weird thing it that it does show only on my shield K1 tablet, every other smartphone I tried doesn't show the icon)
Update:
I just tried adding the mipmapXXX folders to each variant's folders, keeping the exact same name on every resources, only changing the content of the png but still...
Could the problem be related to the contents my launcher.xml?
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
In Android studio, when you open the ic_launcher.xml file, you see the icon in the preview tab. Right now I only see the default icon :S
Update II:
The thing is I went for the solution where I put this in build.gradle for each variant
manifestPlaceholders = [
appIcon: "@mipmap/ic_launcher"
]
and then place two ic_launcher files in the default folder. I had to add in the manifest
android:icon="${appIcon}"
I think it is a bad solution :(
I'm now trying to go for @W0rmH0le solution but something isn't right
How to I get rid of adaptive icon in favor of my simple icon?
FINAL UPDATE:
Tips from @W0rmH0le and @Derek really helped but here is the information that could have help me a lot to solve my problem:
the New -> Image Asset UI in AS is the only way to go and you can use it again and again the try to get to your desired icon
Once you finished with the Image Asset UI, do a "Build -> Clean Project" and a "Build -> Rebuild Project"
At this stage you'd better use adaptive-icon since the systems your app will run on might turn your icon into something ugly if you don't
Since you are using adaptive-icon, don't try to use a background with transparency. The Image Asset UI will display it nicely but transparency is not supported in adaptive icon background
Finally, to get the 2 version of icons, I added one icon in the regular process and I went to explorer to copy the mipmapXXX folders into a safe place. Then I added the other icon the regulare way. To finished it, I pasted the saved mipmap folders int the variante folder tree as mentionned by @W0rmH0le
Found an easy way to do that
Add your desired images to app->src->main->res inside all of the drawable folders, for this example the images are named x_launcher and y_launcher.
If for example you have the flowing flavors inside your app->build.gradle file
Then your need to change the app->src->main->AndroidManifest.xml line
android:icon="@mipmap/ic_launcher"
toandroid:icon="${appIcon}"