We have 2 productFlavors (testServer, liveServer) and 2 build types (debug, release).
Due to existing API keys, I need to add package names based on buildType + productFlavor.
For example, something like:
buildTypes { debug { applicationIdSuffix '.dbg' + (testServer ? '.test' : '.live') } release { applicationidSuffix '' + (testServer ? '.test') } }
Is it possible? as?
source share