Bump Android target SDK version to 33

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.
This commit is contained in:
Bartłomiej Dach
2023-08-20 22:53:51 +02:00
parent 102ae9498b
commit 03fb6b58f9
2 changed files with 2 additions and 2 deletions

View File

@@ -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>