diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 8c1dc3e3..ab7c7522 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,8 @@ +Version 0.10.14 + Bug fixes: + * #3091 Fixed the issue of unity <=2019 not detecting GooglePlayGames as an + android library. + Version 0.10.13 Bug fixes: * Fixed the `Ambiguous match found` error, resolving the dependencies. diff --git a/current-build/GooglePlayGamesPlugin-0.10.13.unitypackage b/current-build/GooglePlayGamesPlugin-0.10.13.unitypackage deleted file mode 100644 index 66f6edac..00000000 Binary files a/current-build/GooglePlayGamesPlugin-0.10.13.unitypackage and /dev/null differ diff --git a/current-build/GooglePlayGamesPlugin-0.10.14.unitypackage b/current-build/GooglePlayGamesPlugin-0.10.14.unitypackage new file mode 100644 index 00000000..512e12c1 Binary files /dev/null and b/current-build/GooglePlayGamesPlugin-0.10.14.unitypackage differ diff --git a/source/PluginDev/Assets/GooglePlayGames/PluginVersion.cs b/source/PluginDev/Assets/GooglePlayGames/PluginVersion.cs index 707f9da0..1501ddb0 100644 --- a/source/PluginDev/Assets/GooglePlayGames/PluginVersion.cs +++ b/source/PluginDev/Assets/GooglePlayGames/PluginVersion.cs @@ -19,8 +19,8 @@ namespace GooglePlayGames public class PluginVersion { // Current Version. - public const int VersionInt = 0x01013; - public const string VersionString = "0.10.13"; - public const string VersionKey = "01013" ; + public const int VersionInt = 0x01014; + public const string VersionString = "0.10.14"; + public const string VersionKey = "01014" ; } } diff --git a/source/build.gradle b/source/build.gradle index 1ac592e8..aef8e7ba 100644 --- a/source/build.gradle +++ b/source/build.gradle @@ -61,7 +61,7 @@ project.ext { git_exe = 'git' } - pluginVersion = "0.10.13" + pluginVersion = "0.10.14" // String for specifying the build mode. // If 'eap', will include all files from the 'Protected' folder.