summaryrefslogtreecommitdiff
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
parent8fe897a3c7654ee0573bfb50333ebc3a319cf3f8 (diff)
switch back to SDK 33 instead of UpsideDownCake
-rw-r--r--main/build.gradle.kts12
-rw-r--r--main/src/main/AndroidManifest.xml2
2 files changed, 7 insertions, 7 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")
}
diff --git a/main/src/main/AndroidManifest.xml b/main/src/main/AndroidManifest.xml
index 50362b30..626db530 100644
--- a/main/src/main/AndroidManifest.xml
+++ b/main/src/main/AndroidManifest.xml
@@ -53,7 +53,7 @@
android:name=".core.OpenVPNService"
android:exported="true"
android:permission="android.permission.BIND_VPN_SERVICE"
- android:foregroundServiceType="specialUse"
+ android:foregroundServiceType="dataSync"
android:process=":openvpn">
<intent-filter>
<action android:name="android.net.VpnService" />