fix: Update to targetSdkVersion 34

Fixes https://github.com/barbeau/gpstest/issues/694
This commit is contained in:
Sean Barbeau
2024-12-28 17:57:28 -05:00
parent 8c050491a3
commit 2196e66428
2 changed files with 4 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ android {
defaultConfig {
minSdkVersion 24
targetSdkVersion 33
targetSdkVersion 34
multiDexEnabled true
// versionCode scheme - first two digits are minSdkVersion, last three digits are build number
versionCode 24098

View File

@@ -28,6 +28,9 @@
<!-- Required for notifications on T+ -->
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<!-- Required for the location service when targeting API 34 and up -->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_LOCATION" />
<application
android:name=".Application"
android:label="@string/app_name"