Skip to content

Commit d86aa3d

Browse files
authored
[.NET 6] Add API 33 packs to android workload (#7169)
After backporting stable API 33 bindings, projects that use any of our net6.0-android target framework framework variants (net6.0-android, net6.0-android32) will attempt to use API 33 runtime packs. Now that API 33 is stable, we should include all of these packs in the "default" `android` workload so that they will always be installed. The `android-33` workload has been preserved as an empty extension of `android` to prevent any issues that may arise from removing an already established workload ID from the .NET 6.0.300 and 6.0.400 bands.
1 parent c75220e commit d86aa3d

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

src/Xamarin.Android.Build.Tasks/Microsoft.NET.Sdk.Android/WorkloadManifest.in.json

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,18 @@
77
"Microsoft.Android.Sdk",
88
"Microsoft.Android.Ref.31",
99
"Microsoft.Android.Ref.32",
10-
"Microsoft.Android.Runtime.32.android-arm",
11-
"Microsoft.Android.Runtime.32.android-arm64",
12-
"Microsoft.Android.Runtime.32.android-x86",
13-
"Microsoft.Android.Runtime.32.android-x64",
10+
"Microsoft.Android.Ref.33",
11+
"Microsoft.Android.Runtime.33.android-arm",
12+
"Microsoft.Android.Runtime.33.android-arm64",
13+
"Microsoft.Android.Runtime.33.android-x86",
14+
"Microsoft.Android.Runtime.33.android-x64",
1415
"Microsoft.Android.Templates"
1516
],
1617
"platforms": [ "win-x64", "win-arm64", "linux-x64", "osx-x64", "osx-arm64" ],
1718
"extends" : [ "microsoft-net-runtime-android", "microsoft-net-runtime-android-aot" ]
1819
},
1920
"android-33": {
2021
"description": "Support for Android API-33.",
21-
"packs": [
22-
"Microsoft.Android.Ref.33",
23-
"Microsoft.Android.Runtime.33.android-arm",
24-
"Microsoft.Android.Runtime.33.android-arm64",
25-
"Microsoft.Android.Runtime.33.android-x86",
26-
"Microsoft.Android.Runtime.33.android-x64"
27-
],
2822
"platforms": [ "win-x64", "win-arm64", "linux-x64", "osx-x64", "osx-arm64" ],
2923
"extends" : [ "android" ]
3024
}

0 commit comments

Comments
 (0)