summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2023-05-08 23:12:40 +0200
committerArne Schwabe <arne@rfc2549.org>2023-05-09 12:22:56 +0200
commitd551053d55d1b9745e9c1d2503dc15fc9b6c7d21 (patch)
treeb3469c473f9b98adf759a2656ee964e79eac9496
parent2bb04a1f0cad2570845a96db4d1e30c441b16d09 (diff)
Set App target SDK to UpsideDownCake
Signed-off-by: Arne Schwabe <arne@rfc2549.org>
-rw-r--r--main/build.gradle.kts8
1 files changed, 5 insertions, 3 deletions
diff --git a/main/build.gradle.kts b/main/build.gradle.kts
index 2ef28714..60392602 100644
--- a/main/build.gradle.kts
+++ b/main/build.gradle.kts
@@ -17,14 +17,16 @@ android {
aidl = true
}
namespace = "de.blinkt.openvpn"
- compileSdk = 33
+ //compileSdk = 33
+ compileSdkPreview = "UpsideDownCake"
// Also update runcoverity.sh
ndkVersion = "25.1.8937393"
defaultConfig {
minSdk = 21
- targetSdk = 33
+ //targetSdk = 33
+ targetSdkPreview = "UpsideDownCake"
versionCode = 198
versionName = "0.7.43"
versionCode = 199
@@ -197,7 +199,7 @@ dependencies {
dependencies.add("uiImplementation", "androidx.webkit:webkit:1.4.0")
dependencies.add("uiImplementation", "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1")
dependencies.add("uiImplementation", "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1")
- dependencies.add("uiImplementation","androidx.security:security-crypto:1.0.0")
+ dependencies.add("uiImplementation","androidx.security:security-crypto:1.1.0-alpha06")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.21")