Prevent resource ID clash

This commit is contained in:
topjohnwu 2020-12-29 02:39:47 -08:00
parent 41a644afb9
commit eb959379e8

View File

@ -17,11 +17,15 @@ android {
buildTypes { buildTypes {
getByName("release") { getByName("release") {
isMinifyEnabled = true isMinifyEnabled = true
isShrinkResources = true isShrinkResources = false
proguardFiles("proguard-rules.pro") proguardFiles("proguard-rules.pro")
} }
} }
aaptOptions {
additionalParameters("--package-id", "0x80")
}
dependenciesInfo { dependenciesInfo {
includeInApk = false includeInApk = false
includeInBundle = false includeInBundle = false