Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Documentation/release-notes/4011.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
### Issues fixed

* [GitHub PR 4011](https://github.com/xamarin/xamarin-android/pull/4011):
The old *Q* nickname from the Android 10 preview versions was still being
shown for Android 10 in the Visual Studio project property pages and the
Android SDK Manager.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class BuildAndroidPlatforms
new AndroidPlatform (apiName: "Oreo", apiLevel: 26, platformID: "26", include: "v8.0", framework: "v8.0"),
new AndroidPlatform (apiName: "Oreo", apiLevel: 27, platformID: "27", include: "v8.1", framework: "v8.1"),
new AndroidPlatform (apiName: "Pie", apiLevel: 28, platformID: "28", include: "v9.0", framework: "v9.0"),
new AndroidPlatform (apiName: "Q", apiLevel: 29, platformID: "29", include: "v10.0", framework: "v10.0"),
new AndroidPlatform (apiName: "", apiLevel: 29, platformID: "29", include: "v10.0", framework: "v10.0"),
};

public static readonly Dictionary<string, uint> NdkMinimumAPI = new Dictionary<string, uint> {
Expand Down