mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-02 00:10:22 +02:00
give debug package separate app ID and name
allows installing debug version alongside the store one
This commit is contained in:
parent
d05fffbad7
commit
a1fd874243
@ -23,6 +23,10 @@ android {
|
|||||||
buildTypes {
|
buildTypes {
|
||||||
debug {
|
debug {
|
||||||
debuggable true
|
debuggable true
|
||||||
|
applicationIdSuffix '.debug'
|
||||||
|
manifestPlaceholders = [
|
||||||
|
applicationLabel: 'VCMI debug',
|
||||||
|
]
|
||||||
ndk {
|
ndk {
|
||||||
debugSymbolLevel 'full'
|
debugSymbolLevel 'full'
|
||||||
}
|
}
|
||||||
@ -32,6 +36,9 @@ android {
|
|||||||
zipAlignEnabled true
|
zipAlignEnabled true
|
||||||
signingConfig signingConfigs.releaseSigning
|
signingConfig signingConfigs.releaseSigning
|
||||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||||
|
manifestPlaceholders = [
|
||||||
|
applicationLabel: '@string/app_name',
|
||||||
|
]
|
||||||
ndk {
|
ndk {
|
||||||
debugSymbolLevel 'symbol_table'
|
debugSymbolLevel 'symbol_table'
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
android:allowBackup="false"
|
android:allowBackup="false"
|
||||||
android:installLocation="auto"
|
android:installLocation="auto"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:label="@string/app_name"
|
android:label="${applicationLabel}"
|
||||||
android:testOnly="false"
|
android:testOnly="false"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
android:theme="@style/Theme.VCMI">
|
android:theme="@style/Theme.VCMI">
|
||||||
|
Loading…
Reference in New Issue
Block a user