Skip to content

Commit

Permalink
fix: Update to targetSdkVersion 34
Browse files Browse the repository at this point in the history
Fixes #694
  • Loading branch information
barbeau committed Dec 28, 2024
1 parent 8c05049 commit 2196e66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion GPSTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions GPSTest/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 2196e66

Please sign in to comment.