summaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2022-12-28 15:07:46 +0100
committercyBerta <cyberta@riseup.net>2022-12-28 15:07:46 +0100
commitf59a9ee44285b02db65c40552137b4a57ffb2274 (patch)
treec0be56531001441d381b263d6a12a11b6ef0e9e2 /app/build.gradle
parent9d64ea1f6274ca66c4e44f7bd24698a1f64c3ffe (diff)
RiseupVPN: default to udp on fresh installs
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 8172ac08..92120f88 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -52,6 +52,8 @@ android {
buildConfigField "String", "obfsvpn_ip", '""'
buildConfigField "String", "obfsvpn_cert", '""'
buildConfigField 'boolean', 'obfsvpn_use_kcp', 'false'
+ // default to UDP usage
+ buildConfigField 'boolean', 'prefer_udp', '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"'
@@ -155,6 +157,8 @@ android {
buildConfigField "String", "obfsvpn_ip", '"159.223.173.205"'
buildConfigField "String", "obfsvpn_cert", '"8nuAbPJwFrKc/29KcCfL5LBuEWxQrjBASYXdUbwcm9d9pKseGK4r2Tg47e23+t6WghxGGw"'
buildConfigField 'boolean', 'obfsvpn_use_kcp', 'true'
+ // default to UDP usage
+ buildConfigField 'boolean', 'prefer_udp', 'true'
//Build Config Fields for automatic apk update checks