buildTypes {
staging {
}
release {
}
}
I want different application launcher icon for staging apk. So I placed launcher icons files in separate folder under...
src/staging/res/mipmap-mdpi
src/staging/res/mipmap-hdpi
etc...
So, now I have got two sets of launcher icons, one in src/main/res.. and another one in src/staging/res but staging apk still picking launcher icons from src/main/res
May I know, why its happening?