summaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2021-07-31 19:30:54 +0200
committercyBerta <cyberta@riseup.net>2021-11-15 16:13:41 +0100
commitedb4b900ab1d1113492e98c28f12133c97721818 (patch)
tree2268e01053b56f7de5acc137065bce27009135e8 /app/build.gradle
parent7b9a2f0a807fb6e5782888f444efb1142da1f20b (diff)
Add BuildConfig to disable color filtering of the main screen background, if VPN is turned off. Make EipFragment's text colors customizable
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 6db23476..8fcd9e90 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -37,6 +37,8 @@ android {
buildConfigField 'boolean', 'priotize_anonymous_usage', 'false'
//allow manual gateway selection
buildConfigField 'boolean', 'allow_manual_gateway_selection', 'true'
+ // grey out background in EipFragment (main screen) if VPN is not running
+ buildConfigField 'boolean', 'use_color_filter', 'true'
// static update url pointing to the latest stable release apk
buildConfigField "String", "update_apk_url", '"https://dl.bitmask.net/client/android/Bitmask-Android-latest.apk"'
@@ -118,6 +120,8 @@ android {
buildConfigField 'boolean', 'priotize_anonymous_usage', 'true'
//allow manual gateway selection
buildConfigField 'boolean', 'allow_manual_gateway_selection', 'true'
+ // grey out background in EipFragment (main screen) if VPN is not running
+ buildConfigField 'boolean', 'use_color_filter', 'false'
//Build Config Fields for automatic apk update checks