diff options
author | cyBerta <cyberta@riseup.net> | 2024-02-24 16:30:28 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2024-02-24 16:30:28 +0100 |
commit | d348d0ce7311549b99acdaddf26e81a995469ae5 (patch) | |
tree | 0a451678ccb127e9dd604f8302de6ed6e0a953f1 | |
parent | db9ed2e8c101ebcafd4df8e0ed268198a27e4e7d (diff) |
fix accidentally removed donation URL build config field
-rw-r--r-- | app/build.gradle | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle index a4c5f208..171cad02 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -46,6 +46,8 @@ android { //This is the default donation URL and should be set to the donation page of LEAP // and this should not be set/altered anywhere else. buildConfigField 'String', 'default_donation_url', '"https://riseuplabs.org/leap"' + // custom donation url, only used in Custom flavor + buildConfigField 'String', 'donation_url', 'null' //The field to enable donations in the app. 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. |