diff options
author | cyberta <cyberta@riseup.net> | 2021-05-18 17:45:52 +0200 |
---|---|---|
committer | cyberta <cyberta@riseup.net> | 2021-05-18 17:45:52 +0200 |
commit | 4853d6a3d3d8c1077feb61899f6b07b5f528607c (patch) | |
tree | 80afb89361633181a2b8868af42e88ce936a1ff4 /app/build.gradle | |
parent | f1d4b39bdc30417247bc1c8dccc75476e9eb9317 (diff) |
implement feature switch, so that gateway selection can be turned off on compile time, turned off for Bitmask for now
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle index e13fae73..76a34feb 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -34,6 +34,8 @@ android { buildConfigField 'int', 'donation_reminder_duration', '30' //skip the account creation / login screen if the provider offers anonymous vpn usage, use directly the anonymous cert instead buildConfigField 'boolean', 'priotize_anonymous_usage', 'false' + //allow manual gateway selection + buildConfigField 'boolean', 'allow_manual_gateway_selection', 'false' // 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"' @@ -113,6 +115,8 @@ android { //skip the account creation / login screen if the provider offers anonymous vpn usage, use directly the anonymous cert instead buildConfigField 'boolean', 'priotize_anonymous_usage', 'true' + //allow manual gateway selection + buildConfigField 'boolean', 'allow_manual_gateway_selection', 'true' //Build Config Fields for automatic apk update checks |