Can we have different app graphics for beta build and production build on android play store?

304 Views Asked by At

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?

3

There are 3 best solutions below

0
On BEST ANSWER

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.

1
On

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'
        ......
    }
}
.....
}
1
On

Simply add debug/res/whatever-you-want under your src folder. Debug builds will use this resources, instead of default ones.

enter image description here