From fda5764810118275c204cf934d533cb4042f269b Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 19 Sep 2019 17:44:29 -0400 Subject: [PATCH] Bump Android version to 0.9.1 --- src/SMAPI/Constants.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index 6c00a973..70863c75 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -23,7 +23,7 @@ namespace StardewModdingAPI public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.11.3"); /// Android SMAPI's current semantic version. - public static ISemanticVersion AndroidApiVersion { get; } = new Toolkit.SemanticVersion("0.9.0"); + public static ISemanticVersion AndroidApiVersion { get; } = new Toolkit.SemanticVersion("0.9.1"); /// The minimum supported version of Stardew Valley. public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.36"); @@ -32,7 +32,7 @@ namespace StardewModdingAPI public static ISemanticVersion MaximumGameVersion { get; } = new GameVersion("1.3.36"); /// The target game platform. - public static GamePlatform TargetPlatform => (GamePlatform)Constants.Platform; + public static GamePlatform TargetPlatform = GamePlatform.Android; /// The path to the game folder. public static string ExecutionPath { get; } = Path.Combine(Android.OS.Environment.ExternalStorageDirectory.Path, "StardewValley/smapi-internal");