feat(android): differentiate debug and release packages
All checks were successful
arcad/arcast/pipeline/head This commit looks good

This commit is contained in:
wpetit 2024-04-30 13:18:36 +02:00
parent 9b835c2f6e
commit f0d068a4ef

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