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-14 19:44:25 +0100
commita2067cd5b56387405cb653de8940e7afc448449d (patch)
treed1310f3f693789bbf2289a5303594c792593f6dd /app/build.gradle
parent1f8b9f9c65a60de9813c77344bdba0fa8153cb62 (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