summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcyberta <cyberta@riseup.net>2018-06-27 16:40:50 -0700
committercyberta <cyberta@riseup.net>2018-06-27 16:40:50 -0700
commitce6f1c9c9b402bc2e92462353bb56cadfb9b2f35 (patch)
treedd26a34782d94ff334efbd24aee501c8618e14d4
parent8c9879145e588e985e5305ee2f88dfc1b6bf1d10 (diff)
parent4a59cd8b7ef6e847bb7697bdae7340850af5be71 (diff)
Merge branch 'customisation_feature' into 'master'
Fixes Custom Beta App name See merge request leap/bitmask_android!77
-rw-r--r--app/build.gradle6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle
index e8f8b78f..384762b9 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -3,7 +3,7 @@ import java.util.regex.Matcher
import java.util.regex.Pattern
apply plugin: 'com.android.application'
-def appName = ''
+def appName = 'Bitmask'
android {
compileSdkVersion 27
@@ -11,7 +11,7 @@ android {
defaultConfig {
applicationId "se.leap.bitmaskclient"
- resValue "string", "app_name", "Bitmask"
+ resValue "string", "app_name", appName
vectorDrawables.useSupportLibrary = true
buildConfigField 'boolean', 'openvpn3', 'false'
@@ -91,7 +91,7 @@ android {
beta {
initWith release
applicationIdSuffix ".beta"
- resValue "string", "app_name", "Bitmask Beta"
+ resValue "string", "app_name", appName + " Beta"
}
debug {
testCoverageEnabled = true