Skip to content

Commit

Permalink
Merge pull request #5973 from bdach/android-sdk-target-bump
Browse files Browse the repository at this point in the history
Bump Android target SDK version to 33
  • Loading branch information
peppy authored Aug 21, 2023
2 parents 9c5cf1d + 7ca85ce commit d8052f2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 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: 0 additions & 2 deletions osu.Framework.Android/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
ResizeableActivity = true,
Theme = "@android:style/Theme.Black.NoTitleBar"
)]
[assembly: UsesPermission(Manifest.Permission.ReadExternalStorage)]
[assembly: UsesPermission(Manifest.Permission.WriteExternalStorage)]
[assembly: UsesPermission(Manifest.Permission.WakeLock)]
[assembly: UsesPermission(Manifest.Permission.ReadFrameBuffer)]
[assembly: UsesPermission(Manifest.Permission.Internet)]
6 changes: 5 additions & 1 deletion osu.Framework.Tests.Android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?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" />
<!-- permissions below are mostly requested for testing the file selector -->
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
</manifest>

0 comments on commit d8052f2

Please sign in to comment.