diff options
author | Samuel Holland <samuel@sholland.org> | 2017-11-28 20:15:40 -0600 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2017-11-28 20:15:40 -0600 |
commit | 8ba902ae99b651c6e7d60cd162eb943d6dd20f39 (patch) | |
tree | 6f77cff819983a98da5fb98b2cd9cd666dd51800 /app | |
parent | 4a672fc05d4b40b2e169bdf7b6212f86c3789de0 (diff) |
build.gradle: Consistent quoting style
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle index ed84813b..a961dde8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,7 +1,7 @@ apply plugin: 'com.android.application' android { - buildToolsVersion "27.0.0" + buildToolsVersion '27.0.1' buildTypes { release { minifyEnabled false @@ -13,11 +13,11 @@ android { enabled true } defaultConfig { - applicationId "com.wireguard.android" + applicationId 'com.wireguard.android' minSdkVersion 21 targetSdkVersion 27 versionCode 100 - versionName "0.1.0" + versionName '0.1.0' } } |