summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcyberta <cyberta@riseup.net>2022-12-06 13:41:09 +0100
committercyberta <cyberta@riseup.net>2022-12-06 13:41:09 +0100
commitf31300d4cc1e2459109790ed6b8b62410911e3f0 (patch)
tree37beae1c0a00f5b3ec920c90dbedb82b7cf9efed
parent60b049ad3101c570dbfdc8097f5c42f017d803db (diff)
clean up build.gradle a little bit
-rw-r--r--app/build.gradle8
1 files changed, 1 insertions, 7 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 630aefc0..6a50ebd1 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -45,8 +45,6 @@ android {
buildConfigField 'boolean', 'priotize_anonymous_usage', 'false'
//allow manual gateway selection
buildConfigField 'boolean', 'allow_manual_gateway_selection', 'true'
- // grey out background in EipFragment (main screen) if VPN is not running
- buildConfigField 'boolean', 'use_color_filter', 'false'
// decide if we use obfsvpn or shapeshifter as obfs4 lib
buildConfigField 'boolean', 'use_obfsvpn', 'true'
// obfsvpn Debugging config fields to pin and configure a particular proxy
@@ -146,8 +144,6 @@ android {
buildConfigField 'boolean', 'priotize_anonymous_usage', 'true'
//allow manual gateway selection
buildConfigField 'boolean', 'allow_manual_gateway_selection', 'true'
- // grey out background in EipFragment (main screen) if VPN is not running
- buildConfigField 'boolean', 'use_color_filter', 'false'
// decide if we use obfsvpn or shapeshifter as obfs4 lib
buildConfigField 'boolean', 'use_obfsvpn', 'true'
// obfsvpn Debugging config fields to pin and configure a particular proxy
@@ -285,15 +281,13 @@ android {
assets.srcDirs = ['assets',
'ovpnlibs/assets',
'../ics-openvpn/main/build/ovpnassets',
- // '../go/out' TODO: uncomment this line as soon as we want to use PT in production
]
jniLibs.srcDirs = ['../ics-openvpn/main/build/intermediates/cmake/skeletonRelease/obj/']
jni.srcDirs = [] //disable automatic ndk-build
}
debug {
- assets.srcDirs = ['src/debug/assets',
- /*'../go/out'*/]
+ assets.srcDirs = ['src/debug/assets']
}
test {