tunnel: fix package name being passed through to cmake
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
183273dcf5
commit
79e766c4e1
@ -26,6 +26,22 @@ android {
|
|||||||
events 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
|
events 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
externalNativeBuild {
|
||||||
|
cmake {
|
||||||
|
arguments "-DANDROID_PACKAGE_NAME=${groupName}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
debug {
|
||||||
|
externalNativeBuild {
|
||||||
|
cmake {
|
||||||
|
arguments "-DANDROID_PACKAGE_NAME=${groupName}.debug"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -51,22 +51,12 @@ android {
|
|||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
if (keystorePropertiesFile.exists()) signingConfig signingConfigs.release
|
if (keystorePropertiesFile.exists()) signingConfig signingConfigs.release
|
||||||
externalNativeBuild {
|
|
||||||
cmake {
|
|
||||||
arguments "-DANDROID_PACKAGE_NAME=${android.defaultConfig.applicationId}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
minifyEnabled true
|
minifyEnabled true
|
||||||
proguardFiles "proguard-android-optimize.txt", "proguard-rules.pro"
|
proguardFiles "proguard-android-optimize.txt", "proguard-rules.pro"
|
||||||
}
|
}
|
||||||
debug {
|
debug {
|
||||||
applicationIdSuffix ".debug"
|
applicationIdSuffix ".debug"
|
||||||
versionNameSuffix "-debug"
|
versionNameSuffix "-debug"
|
||||||
externalNativeBuild {
|
|
||||||
cmake {
|
|
||||||
arguments "-DANDROID_PACKAGE_NAME=${android.defaultConfig.applicationId}${applicationIdSuffix}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user