2017-07-29 06:10:37 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-01-07 08:33:11 +01:00
|
|
|
buildToolsVersion '27.0.3'
|
2017-07-29 06:10:37 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2017-12-26 21:06:32 +01:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2017-11-08 05:52:50 +01:00
|
|
|
compileSdkVersion 27
|
2017-07-29 06:10:37 +02:00
|
|
|
dataBinding {
|
|
|
|
enabled true
|
|
|
|
}
|
|
|
|
defaultConfig {
|
2017-11-29 03:15:40 +01:00
|
|
|
applicationId 'com.wireguard.android'
|
2017-07-29 06:10:37 +02:00
|
|
|
minSdkVersion 21
|
2017-11-08 05:52:50 +01:00
|
|
|
targetSdkVersion 27
|
2017-08-25 06:24:17 +02:00
|
|
|
versionCode 100
|
2017-11-29 03:15:40 +01:00
|
|
|
versionName '0.1.0'
|
2017-07-29 06:10:37 +02:00
|
|
|
}
|
2017-12-05 03:50:36 +01:00
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
path 'tools/CMakeLists.txt'
|
|
|
|
}
|
|
|
|
}
|
2017-07-29 06:10:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-01-01 09:06:37 +01:00
|
|
|
annotationProcessor 'com.google.dagger:dagger-compiler:2.14.1'
|
|
|
|
implementation 'com.android.databinding:library:1.3.3'
|
|
|
|
implementation 'com.android.support:support-annotations:27.0.2'
|
|
|
|
implementation 'com.commonsware.cwac:crossport:0.2.1'
|
|
|
|
implementation 'com.gabrielittner.threetenbp:lazythreetenbp:0.2.0'
|
2017-11-29 03:14:47 +01:00
|
|
|
implementation 'com.getbase:floatingactionbutton:1.10.1'
|
2018-01-01 09:06:37 +01:00
|
|
|
implementation 'com.google.dagger:dagger:2.14.1'
|
|
|
|
implementation 'net.sourceforge.streamsupport:android-retrofuture:1.6.0'
|
|
|
|
implementation 'net.sourceforge.streamsupport:android-retrostreams:1.6.0'
|
2017-11-08 05:52:50 +01:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2017-07-29 06:10:37 +02:00
|
|
|
}
|
2018-01-01 09:06:37 +01:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url "https://s3.amazonaws.com/repo.commonsware.com"
|
|
|
|
}
|
|
|
|
}
|