diff --git a/app/build.gradle b/app/build.gradle
index e8f8b78fc0b5b2ab3c8a50ecef1ba12b9a1219db..384762b9446c7d0a5577e0fc31499fc588087350 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