build: debug apk come with application suffix

Instead of using the same one as Release, app.revanced.manager.flutter - We add .debug to it, yay, co-installation of two variants!
This commit is contained in:
Pun Butrach 2023-08-15 20:37:43 +07:00
parent c400619338
commit 6436a1ec61
No known key found for this signature in database
GPG Key ID: DBA94253E1D3F267

View File

@ -59,6 +59,15 @@ android {
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64'
}
}
debug {
shrinkResources false
minifyEnabled false
signingConfig signingConfigs.debug
applicationIdSuffix ".debug"
ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64'
}
}
}
packagingOptions {