diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2023-07-05 16:13:19 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2023-07-05 16:13:19 +0200 |
commit | a7ce5ad42a8ffc3672e0c47e8e2f3ef3fe8e4bb3 (patch) | |
tree | aef7799649b0691e4b5b37986a8f8642687bf4a3 | |
parent | 52c0d1ea29285c45e3615aa27663e047802a72d7 (diff) |
gradle: bump to api 34
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | tunnel/build.gradle.kts | 2 | ||||
-rw-r--r-- | ui/build.gradle.kts | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tunnel/build.gradle.kts b/tunnel/build.gradle.kts index fff3857d..589d72da 100644 --- a/tunnel/build.gradle.kts +++ b/tunnel/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } android { - compileSdk = 33 + compileSdk = 34 compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 diff --git a/ui/build.gradle.kts b/ui/build.gradle.kts index 3672c1ee..dceb9be0 100644 --- a/ui/build.gradle.kts +++ b/ui/build.gradle.kts @@ -13,7 +13,7 @@ plugins { } android { - compileSdk = 33 + compileSdk = 34 buildFeatures { buildConfig = true dataBinding = true @@ -23,7 +23,7 @@ android { defaultConfig { applicationId = pkg minSdk = 21 - targetSdk = 33 + targetSdk = 34 versionCode = providers.gradleProperty("wireguardVersionCode").get().toInt() versionName = providers.gradleProperty("wireguardVersionName").get() buildConfigField("int", "MIN_SDK_VERSION", minSdk.toString()) |