summaryrefslogtreecommitdiff
path: root/main/build.gradle.kts
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2023-06-01 00:55:32 +0200
committerArne Schwabe <arne@rfc2549.org>2023-06-01 11:32:07 +0200
commit374cba882519b58419b1230c358a926047ec4939 (patch)
tree2fed0834a0e5389de27cbd22c9218e3a15fa2900 /main/build.gradle.kts
parent8fe897a3c7654ee0573bfb50333ebc3a319cf3f8 (diff)
switch back to SDK 33 instead of UpsideDownCake
Diffstat (limited to 'main/build.gradle.kts')
-rw-r--r--main/build.gradle.kts12
1 files changed, 6 insertions, 6 deletions
diff --git a/main/build.gradle.kts b/main/build.gradle.kts
index 3442b8a5..04ad1f6e 100644
--- a/main/build.gradle.kts
+++ b/main/build.gradle.kts
@@ -17,16 +17,16 @@ android {
aidl = true
}
namespace = "de.blinkt.openvpn"
- //compileSdk = 33
- compileSdkPreview = "UpsideDownCake"
+ compileSdk = 33
+ //compileSdkPreview = "UpsideDownCake"
// Also update runcoverity.sh
- ndkVersion = "25.1.8937393"
+ ndkVersion = "25.2.9519653"
defaultConfig {
minSdk = 21
- //targetSdk = 33
- targetSdkPreview = "UpsideDownCake"
+ targetSdk = 33
+ //targetSdkPreview = "UpsideDownCake"
versionCode = 198
versionName = "0.7.43"
versionCode = 199
@@ -217,6 +217,6 @@ dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.21")
testImplementation("junit:junit:4.13.2")
testImplementation("org.mockito:mockito-core:3.9.0")
- testImplementation("org.robolectric:robolectric:4.10")
+ testImplementation("org.robolectric:robolectric:4.10.2")
testImplementation("androidx.test:core:1.4.0")
}