| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 28
- useLibrary 'org.apache.http.legacy'
- defaultConfig {
- applicationId "ca.psiphon.tunneledwebview"
- minSdkVersion 15
- targetSdkVersion 28
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility = '1.8'
- targetCompatibility = '1.8'
- }
- }
- repositories {
- flatDir {
- dirs 'libs'
- }
- maven {
- url "https://raw.github.com/Psiphon-Labs/psiphon-tunnel-core-Android-library/master"
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- testImplementation 'junit:junit:4.12'
- implementation 'com.android.support:appcompat-v7:26.1.0'
- // always specify exact library version in your real project to avoid non-deterministic builds
- implementation 'ca.psiphon:psiphontunnel:2.+'
- }
|