feat(android): differentiate debug and release packages
arcad/arcast/pipeline/head This commit looks good Details

This commit is contained in:
wpetit 2024-04-30 13:18:36 +02:00
parent 9b835c2f6e
commit f0d068a4ef
1 changed files with 4 additions and 0 deletions

View File

@ -28,6 +28,10 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
applicationIdSuffix = ".debug"
versionNameSuffix = "-debug"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8