After the big update, today, the "versionNameSuffix" parameter for each
buildType is not working. Or at least now I'm noticing the issue...
I only see the versionName of the app. No suffix.
Has anyone encountered this before? Am I doing something wrong?
Thanks!
Android studio 0.9.0
com.android.tools.build:gradle:0.14.
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.0.1"
defaultConfig {
applicationId "com.example.andrei.testversionsuffix"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
versionNameSuffix "release"
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
debug{
versionNameSuffix "debug"
}
}
productFlavors{
vanilla{
versionName "1.0_vanilla"
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:21.0.0'
}
--
You received this message because you are subscribed to the Google Groups
"adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.