aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2018-03-21 21:16:36 +0100
committerChristian Schneppe <christian@pix-art.de>2018-03-21 21:16:36 +0100
commitd1632b84b312c53b15b56a9e02559be3e8e3c169 (patch)
tree4dcacbfbbd8bdd99a209d0e7d4895528e8824f7a /build.gradle
parent84d4869572f69014793b463e6613230dc39b5370 (diff)
fixed crash in settings
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle6
1 files changed, 4 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 228008271..d36a6a1bb 100644
--- a/build.gradle
+++ b/build.gradle
@@ -92,7 +92,8 @@ android {
applicationId "de.pixart.messenger"
multiDexEnabled true
buildConfigField("String", "UPDATE_URL", '"https://xmpp.pix-art.de/Pix-Art_Messenger/update/"')
-
+ resValue "string", "applicationId", applicationId
+ resValue "string", "app_name", "Pix-Art Messenger"
dimension "distribution"
}
@@ -120,7 +121,8 @@ android {
open {
buildConfigField("String", "UPDATE_URL", '"https://xmpp.pix-art.de/Pix-Art_Messenger/update/open/"')
applicationId "de.pixart.openmessenger"
-
+ resValue "string", "applicationId", applicationId
+ resValue "string", "app_name", "Pix-Art Messenger"
dimension "distribution"
}
}