| 1234567891011121314151617181920212223242526272829303132333435363738 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 26
- buildToolsVersion '26.0.3'
- useLibrary 'org.apache.http.legacy'
- defaultConfig {
- applicationId "ca.psiphon.tunneledwebview"
- minSdkVersion 15
- targetSdkVersion 26
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- repositories {
- flatDir {
- dirs 'libs'
- }
- maven {
- url "https://raw.github.com/Psiphon-Labs/psiphon-tunnel-core-Android-library/master/releases"
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- testImplementation 'junit:junit:4.12'
- implementation 'com.android.support:appcompat-v7:26.1.0'
- implementation 'ca.psiphon:psiphontunnel:1.0.7'
- }
|