Skip to content

Commit

Permalink
Bump Android target SDK version to 33
Browse files Browse the repository at this point in the history
Google wants this done by August 31:

    https://developer.android.com/google/play/requirements/target-sdk

The implications of this for framework projects appear to be minimal.
The biggest one is probably the change to media permissions which makes
them more granular - but we're not handling the permission granting flow
correctly yet anyways, so it's really a nothingburger.
  • Loading branch information
bdach committed Aug 20, 2023
1 parent 102ae94 commit 03fb6b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SampleGame.Android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="SampleGame.Android" android:installLocation="auto">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="31" />
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="33" />
<application />
</manifest>
2 changes: 1 addition & 1 deletion osu.Framework.Tests.Android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="osu.Framework.Tests.Android" android:installLocation="auto">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="31" />
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="33" />
<application android:label="osu!framework test" />
</manifest>

0 comments on commit 03fb6b5

Please sign in to comment.