github.com/Psiphon-Labs/psiphon-tunnel-core@v2.0.28+incompatible/MobileLibrary/Android/SampleApps/TunneledWebView/app/build.gradle (about) 1 apply plugin: 'com.android.application' 2 3 android { 4 compileSdkVersion 30 5 useLibrary 'org.apache.http.legacy' 6 7 8 defaultConfig { 9 applicationId "ca.psiphon.tunneledwebview" 10 minSdkVersion 15 11 targetSdkVersion 30 12 versionCode 1 13 versionName "1.0" 14 } 15 buildTypes { 16 release { 17 minifyEnabled true 18 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 19 } 20 } 21 compileOptions { 22 sourceCompatibility = '1.8' 23 targetCompatibility = '1.8' 24 } 25 } 26 27 repositories { 28 maven { 29 url "https://raw.github.com/Psiphon-Labs/psiphon-tunnel-core-Android-library/master" 30 } 31 } 32 33 dependencies { 34 testImplementation 'junit:junit:4.12' 35 implementation 'androidx.appcompat:appcompat:1.0.0' 36 // always specify exact library version in your real project to avoid non-deterministic builds 37 implementation 'ca.psiphon:psiphontunnel:2.+' 38 }