diff options
author | pacien | 2023-04-01 19:45:17 +0200 |
---|---|---|
committer | pacien | 2023-07-30 03:53:20 +0200 |
commit | 5a3c4fe8e2672a42fc7a3b4afff18a0098eea3c0 (patch) | |
tree | 685de980e79c01e8e4e51d5b61d0d591fa0c0da9 /app | |
parent | 8f046f245fadd8dc7efdbd6c29adf07ca327836a (diff) | |
download | tincapp-5a3c4fe8e2672a42fc7a3b4afff18a0098eea3c0.tar.gz |
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.
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
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() | |||
30 | if (keystoreAvailable) keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) | 30 | if (keystoreAvailable) keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) |
31 | 31 | ||
32 | android { | 32 | android { |
33 | compileSdkVersion 32 | 33 | compileSdkVersion 33 |
34 | 34 | ||
35 | defaultConfig { | 35 | defaultConfig { |
36 | applicationId 'org.pacien.tincapp' | 36 | applicationId 'org.pacien.tincapp' |
37 | minSdkVersion 21 | 37 | minSdkVersion 21 |
38 | targetSdkVersion 32 | 38 | targetSdkVersion 33 |
39 | multiDexEnabled true | 39 | multiDexEnabled true |
40 | versionCode 37 | 40 | versionCode 37 |
41 | versionName '0.37' | 41 | versionName '0.37' |