wireguard-android/app/build.gradle
Samuel Holland e01813487f app: Upgrade to build tools version 27.0.3
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-01-07 01:33:11 -06:00

51 lines
1.5 KiB
Groovy

apply plugin: 'com.android.application'
android {
buildToolsVersion '27.0.3'
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
compileSdkVersion 27
dataBinding {
enabled true
}
defaultConfig {
applicationId 'com.wireguard.android'
minSdkVersion 21
targetSdkVersion 27
versionCode 100
versionName '0.1.0'
}
externalNativeBuild {
cmake {
path 'tools/CMakeLists.txt'
}
}
}
dependencies {
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'
implementation 'com.getbase:floatingactionbutton:1.10.1'
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'
implementation fileTree(dir: 'libs', include: ['*.jar'])
}
repositories {
maven {
url "https://s3.amazonaws.com/repo.commonsware.com"
}
}