diff options
author | Janak Amarasena <janakamarasena@gmail.com> | 2018-06-27 20:10:45 +0530 |
---|---|---|
committer | Janak Amarasena <janakamarasena@gmail.com> | 2018-06-27 20:10:45 +0530 |
commit | 4a59cd8b7ef6e847bb7697bdae7340850af5be71 (patch) | |
tree | dd26a34782d94ff334efbd24aee501c8618e14d4 | |
parent | 8c9879145e588e985e5305ee2f88dfc1b6bf1d10 (diff) |
Fixes Custom Beta app name
-rw-r--r-- | app/build.gradle | 6 |
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 |