Skip to content

Commit c13dccb

Browse files
pjcollinsjonpryor
authored andcommitted
[Xamarin.Android.Build.Utilities] Add API level 25 to known versions (#297)
Increments the MaxApiLevel value, and adds a new entry to KnownVersions for API level 25.
1 parent 7dcb6b4 commit c13dccb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Xamarin.Android.Build.Utilities/AndroidVersion.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace Xamarin.Android.Build.Utilities
44
{
55
public class AndroidVersion
66
{
7-
public static readonly int MaxApiLevel = 24;
7+
public static readonly int MaxApiLevel = 25;
88

99
public AndroidVersion (int apilevel, string osVersion)
1010
{
@@ -102,6 +102,7 @@ public static string TryFrameworkVersionToOSVersion (string frameworkVersion)
102102
new AndroidVersion (22, "5.1", "Lollipop", new Version (5, 1)),
103103
new AndroidVersion (23, "6.0", "Marshmallow", new Version (6, 0)),
104104
new AndroidVersion (24, "7.0", "Nougat", new Version (7, 0)),
105+
new AndroidVersion (25, "7.1", "Nougat", new Version (7, 1)),
105106
};
106107
}
107108
}

0 commit comments

Comments
 (0)