Can we have different app icon, banner, app video and all other graphics that are shown on play store for a beta build that is recently uploaded and production build that is serving live on play store?
Can we have different app graphics for beta build and production build on android play store?
304 Views Asked by UserSharma At
3
There are 3 best solutions below
1

You can define different flavors in your app's build.gradle, then create alternative resources for each one using the New Resource File dialog and selecting the Source set for your intended flavor.
android {
.....
productFlavors {
flavorDimensions "releaseType"
beta {
dimension "releaseType"
.....
}
beta {
dimension 'releaseType'
......
}
}
.....
}
No. All Play store attributes will be served to all build types.
You can use "Store Listing Experiments" to change these icons and videos etc. for a subset of users but you cannot target those to specific builds.