build.gradle: Consistent quoting style

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Samuel Holland 2017-11-28 20:15:40 -06:00
parent 4a672fc05d
commit 8ba902ae99

View File

@ -1,7 +1,7 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
buildToolsVersion "27.0.0" buildToolsVersion '27.0.1'
buildTypes { buildTypes {
release { release {
minifyEnabled false minifyEnabled false
@ -13,11 +13,11 @@ android {
enabled true enabled true
} }
defaultConfig { defaultConfig {
applicationId "com.wireguard.android" applicationId 'com.wireguard.android'
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 27 targetSdkVersion 27
versionCode 100 versionCode 100
versionName "0.1.0" versionName '0.1.0'
} }
} }