diff options
author | cyBerta <cyberta@riseup.net> | 2023-01-01 21:12:01 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2023-01-02 03:54:18 +0100 |
commit | dc84c01adb7244bcf24d56db5eb73d2ce22970fb (patch) | |
tree | 1f16c626f65ba822bbe2525b376075d628eb0d06 /app/build.gradle | |
parent | 6128136ddf9bb3626104c739db65e9e005211116 (diff) |
remove hard-coded IP's for riseup api for now, switch menshen URL
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle index 92120f88..a216b041 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -131,12 +131,12 @@ android { def customProviderUrl = '"https://black.riseup.net"' buildConfigField "String", "customProviderUrl", customProviderUrl //static ip address of provider, using a commercially validated CA certificate to serve the provider.json - def customProviderIp = '"198.252.153.70"' + def customProviderIp = '""' buildConfigField "String", "customProviderIp", customProviderIp //static ip address of the provider api, using a self signed certificate to serve provider.json, eip-service.json etc. - def customProviderApiIp = '"198.252.153.107"' + def customProviderApiIp = '""' buildConfigField "String", "customProviderApiIp", customProviderApiIp - def geoipUrl = '"https://api.black.riseup.net:9001/json"' + def geoipUrl = '"https://menshen.riseup.net/json"' buildConfigField "String", "geoipUrl", geoipUrl //URL for the message of the day, see https://0xacab.org/leap/motd#motd-message-of-the-day def customProviderMotdUrl = '"https://static.riseup.net/vpn/motd.json"' |