From 9c1d1fb22c9ed7ab0f249ebdf53301dfa08bef52 Mon Sep 17 00:00:00 2001 From: Arne <arne@monocles.de> Date: Fri, 18 Oct 2024 12:07:51 +0200 Subject: [PATCH] Correct default build config --- build.gradle | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index c4bedf28f..5c492b630 100644 --- a/build.gradle +++ b/build.gradle @@ -148,10 +148,13 @@ android { minSdkVersion 23 targetSdkVersion 34 versionCode 177 - applicationId "eu.siacs.conversations" - def appName = "Conversations" + versionName "2.0" + applicationId "de.monocles.chat" + def appName = "monocles chat" resValue "string", "app_name", appName - buildConfigField "String", "APP_NAME", "\"$appName\""; + buildConfigField "String", "APP_NAME", "\"$appName\"" + buildConfigField "String", "PRIVACY_POLICY", "\"https://monocles.eu/legal-privacy/#policies-section\"" + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" }