2017-07-29 06:10:37 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-11-08 05:52:50 +01:00
|
|
|
buildToolsVersion "27.0.0"
|
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 {
|
|
|
|
applicationId "com.wireguard.android"
|
|
|
|
minSdkVersion 21
|
2017-11-08 05:52:50 +01:00
|
|
|
targetSdkVersion 27
|
2017-08-25 06:24:17 +02:00
|
|
|
versionCode 100
|
|
|
|
versionName "0.1.0"
|
2017-07-29 06:10:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-11-08 05:52:50 +01:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2017-07-29 06:10:37 +02:00
|
|
|
}
|