summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2018-08-17 18:01:53 +0200
committercyBerta <cyberta@riseup.net>2018-08-17 18:01:53 +0200
commitc5f6902399bcb6ebbd56489c70c51912f7ccca0c (patch)
treeaaf055644aa075e7414597dacf66560967e7c228
parent67d63a1dcc2875638014c65cc24f140e10fb6c40 (diff)
rename custom/normal flavor dimension to branding
-rw-r--r--app/build.gradle18
1 files changed, 12 insertions, 6 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 53af1aff..75fe40b5 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -44,7 +44,7 @@ android {
}
}
- flavorDimensions "mode","implementation"
+ flavorDimensions "branding", "implementation"
productFlavors {
production {
dimension "implementation"
@@ -53,15 +53,19 @@ android {
dimension "implementation"
}
normal {
- dimension "mode"
+ dimension "branding"
}
+
+
+ //**************************************************************************
+ //**************************************************************************
//Configurations for custom branded app.
custom {
- dimension "mode"
+ dimension "branding"
//Change the package name as needed
- applicationId "org.sample.custom"
+ applicationId "net.riseup.black"
//Set app name here
- appName = "Custom"
+ appName = "Riseup VPN"
resValue "string", "app_name", appName
//Change the versionCode as needed
versionCode 1
@@ -78,8 +82,10 @@ android {
buildConfigField 'boolean', 'enable_donation_reminder', 'true'
//The duration in days to trigger the donation reminder
buildConfigField 'int', 'donation_reminder_duration', '30'
-
}
+ //**************************************************************************
+ //**************************************************************************
+
}
buildTypes {