Zoltan Demant
02/17/2022, 9:06 AMstaging
works perfectly for this. Heres what I ended up doing in case anyone else finds it useful.
buildTypes {
debug {
minifyEnabled false
shrinkResources false
signingConfig signingConfigs.debug
}
release {
minifyEnabled true
shrinkResources true
signingConfig signingConfigs.release
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), '<http://proguard-rules.pro|proguard-rules.pro>'
}
staging {
initWith release
minifyEnabled false
shrinkResources false
}
}
Stylianos Gakis
02/17/2022, 3:31 PMminifyEnabled false
shrinkResources false
Both indicate this wouldn’t give you the performance boost you’d like to see though right? Because I’m guessing they override those properties initially taken from ‘release’. Is that not the case? Feels weird that this works for you.Zoltan Demant
02/17/2022, 3:44 PMStylianos Gakis
02/17/2022, 3:58 PMZoltan Demant
02/17/2022, 4:01 PMAdam Powell
02/17/2022, 4:20 PMZoltan Demant
02/17/2022, 4:40 PMColton Idle
02/18/2022, 5:48 AMZoltan Demant
02/18/2022, 9:01 AM