I've made 4 different flavours of the same app and published all of them on Play Store as free apps.
Now I'm making a paid version for each of them, and in order to achieve that I've created 2 new flavours: free and paid, and these flavours have a different dimension to the one of the 4 apps. The 4 apps have the "version" dimension and the free/paid flavours have the "mode" dimension.
What I'm trying to figure out how to do is to set different version codes and names to each version/mode pair, e.g.: flavourAFree -> versionCode 1 / flavourAPaid -> versionCode 2
Here's my code:
flavorDimensions "version", "mode"
productFlavors {
flavourA {
dimension "version"
...
}
flavourB {
dimension "version"
...
}
flavourC {
dimension "version"
...
}
flavourD {
dimension "version"
...
}
free {
dimension "mode"
}
paid {
dimension "mode"
}
}
An example of what I'm trying to achieve (not exactly these values):
flavourAFree {
versionCode 1
versionName "1.0"
}
flavourAPaid {
versionCode 4
versionName "2020.2.0"
}
When I try syncing my Gradle script I get the following error:
A problem occurred configuring project ':app'. Flavor 'flavourA' has no flavor dimension.
Is there a way to do what I'm trying to do?
What you need to do is described in this android article
I don't know if it's what you're looking for, but it'll create:
versionCode = 13
andversionName = "2020.2.3"
versionCode = 13
andversionName = "2020.2.3"
versionCode = 1
andversionName = "2020.2.0"
versionCode = 1
andversionName = "2020.2.0"
For more information I recommend this article