diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-07-29 16:01:44 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-07-29 16:01:44 +0200 |
commit | db7b61ab8008bce451a887b5f013203a05c2feca (patch) | |
tree | 4faf0488bc6364030fa0f90cafdb0116c75b45e9 /app/build.gradle | |
parent | bce5d852e12a0f22c4746cb64dd2d7237a4b7c01 (diff) |
Roll back to API 27 for now
There's no source available for API 28, which is a pain. But this commit
should be reverted whenever source is released.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index 0e1cdd07..da77da48 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -11,12 +11,12 @@ android { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } - compileSdkVersion 28 + compileSdkVersion 27 dataBinding.enabled true defaultConfig { applicationId 'com.wireguard.android' minSdkVersion 21 - targetSdkVersion 28 + targetSdkVersion 27 versionCode 437 versionName '0.0.20180725' buildConfigField 'int', 'MIN_SDK_VERSION', "$minSdkVersion.apiLevel" |