Skip to content

Commit 42e529b

Browse files
Copilotwinnerspiros
andcommitted
Fix XA1036: update Android test manifest minSdkVersion from 21 to 30
The shared osu.Android.props sets SupportedOSPlatformVersion to 30.0 but the 5 Android test project manifests still had minSdkVersion="21", causing error XA1036 during Android CI builds. Co-authored-by: winnerspiros <1675249+winnerspiros@users.noreply.github.com> Agent-Logs-Url: https://github.com/winnerspiros/osu/sessions/fc977f0a-1533-418d-81e2-033429eb5b3d
1 parent f30d630 commit 42e529b

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- using a different name because package name cannot contain 'catch' -->
33
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="osu.Game.Rulesets.Catch_Tests.Android" android:installLocation="auto">
4-
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34" />
4+
<uses-sdk android:minSdkVersion="30" android:targetSdkVersion="34" />
55
<application android:allowBackup="true" android:supportsRtl="true" android:label="osu!catch Test" />
66
</manifest>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="osu.Game.Rulesets.Mania.Tests.Android" android:installLocation="auto">
3-
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34" />
3+
<uses-sdk android:minSdkVersion="30" android:targetSdkVersion="34" />
44
<application android:allowBackup="true" android:supportsRtl="true" android:label="osu!mania Test" />
55
</manifest>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="osu.Game.Rulesets.Osu.Tests.Android" android:installLocation="auto">
3-
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34" />
3+
<uses-sdk android:minSdkVersion="30" android:targetSdkVersion="34" />
44
<application android:allowBackup="true" android:supportsRtl="true" android:label="osu!standard Test" />
55
</manifest>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="osu.Game.Rulesets.Taiko.Tests.Android" android:installLocation="auto">
3-
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34" />
3+
<uses-sdk android:minSdkVersion="30" android:targetSdkVersion="34" />
44
<application android:allowBackup="true" android:supportsRtl="true" android:label="osu!taiko Test" />
55
</manifest>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="osu.Game.Tests.Android" android:installLocation="auto">
3-
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34" />
3+
<uses-sdk android:minSdkVersion="30" android:targetSdkVersion="34" />
44
<application android:allowBackup="true" android:supportsRtl="true" android:label="osu!visual Test" />
55
</manifest>

0 commit comments

Comments
 (0)