2017-07-29 06:10:37 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-12-26 21:00:19 +01:00
|
|
|
buildToolsVersion '27.0.2'
|
2017-07-29 06:10:37 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
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 {
|
2017-11-29 03:14:47 +01:00
|
|
|
implementation 'com.getbase:floatingactionbutton:1.10.1'
|
2017-11-08 05:52:50 +01:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2017-07-29 06:10:37 +02:00
|
|
|
}
|