From c5f6902399bcb6ebbd56489c70c51912f7ccca0c Mon Sep 17 00:00:00 2001 From: cyBerta Date: Fri, 17 Aug 2018 18:01:53 +0200 Subject: rename custom/normal flavor dimension to branding --- app/build.gradle | 18 ++++++++++++------ 1 file 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 { -- cgit v1.2.3