From 5a3c4fe8e2672a42fc7a3b4afff18a0098eea3c0 Mon Sep 17 00:00:00 2001 From: pacien Date: Sat, 1 Apr 2023 19:45:17 +0200 Subject: app: set target and build sdk to api 33 Google Play requires apps to target this API level by August 31 2023. The app builds and seems to work, with the exception of notifications which require additional runtime permission handling. Those are needed for the VPN service to be able to report config and runtime errors to the user. --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app') diff --git a/app/build.gradle b/app/build.gradle index 5a55b26..5d2da3f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -30,12 +30,12 @@ def keystoreProperties = new Properties() if (keystoreAvailable) keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) android { - compileSdkVersion 32 + compileSdkVersion 33 defaultConfig { applicationId 'org.pacien.tincapp' minSdkVersion 21 - targetSdkVersion 32 + targetSdkVersion 33 multiDexEnabled true versionCode 37 versionName '0.37' -- cgit v1.2.3