wireguard-android/app/build.gradle
Samuel Holland 56cf8816d3 project: Create empty project with WireGuard icon
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2017-07-28 23:10:37 -05:00

27 lines
577 B
Groovy

apply plugin: 'com.android.application'
android {
buildToolsVersion "26.0.0"
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileSdkVersion 26
dataBinding {
enabled true
}
defaultConfig {
applicationId "com.wireguard.android"
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}