diff options
author | cyberta <cyberta@riseup.net> | 2022-02-04 23:22:32 +0000 |
---|---|---|
committer | cyberta <cyberta@riseup.net> | 2022-02-04 23:22:32 +0000 |
commit | 4f4b49a6c14d2274a48f8a030576f54bb2488e57 (patch) | |
tree | 11a7406002b01f7c9808679e3ebf3a6ee78c3ed6 | |
parent | 2f777b5ebd80fc3f6a46dc09f60057370c399042 (diff) | |
parent | 1213eb5eea5806ddd31c092502013dda43d4dfe3 (diff) |
Merge branch 'hide_donation_btn' into 'master'
don't show donation button in Bitmask for now
See merge request leap/bitmask_android!171
-rw-r--r-- | app/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index df1634c7..0f3d1661 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -31,9 +31,9 @@ android { // and this should not be set/altered anywhere else. buildConfigField 'String', 'default_donation_url', '"https://leap.se/donate/"' //The field to enable donations in the app. - buildConfigField 'boolean', 'enable_donation', 'true' + buildConfigField 'boolean', 'enable_donation', 'false' //The field to enable donation reminder popup in the app if enable_donation is set to 'false' this will be disabled. - buildConfigField 'boolean', 'enable_donation_reminder', 'true' + buildConfigField 'boolean', 'enable_donation_reminder', 'false' //The duration in days to trigger the donation reminder 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 |