Skip to content

Commit

Permalink
Merge pull request #2710 from ozdemir08/android-java-client
Browse files Browse the repository at this point in the history
Release v10.03
  • Loading branch information
olehkuznetsov authored Sep 2, 2019
2 parents f4d3702 + 3b0b10d commit f7404f8
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
Version 0.10.03
Bug fixes:
* Fixed the exception caused by ui callbacks.

Version 0.10.02
Bug Fixes:
* Fixed LoadMoreScores.
* Fixed sign out issues when signed out from ui.
* GetAnotherServerAuthCode uses the same scopes used in sign in.
* Local user id is returned instead of "me" in LoadScores.
* Removed AndroidX dependency.

Version 0.10.01
Other:
* Reimplementation of the plugin without using C++ SDK
Expand Down
Binary file not shown.
Binary file not shown.
Binary file modified samples/CubicPilot/CubicPilot.unitypackage
Binary file not shown.
Binary file modified samples/Minimal/Minimal.unitypackage
Binary file not shown.
Binary file modified samples/NearbyDroids/NearbyDroids.unitypackage
Binary file not shown.
Binary file modified samples/QuizRacer/QuizRacer.unitypackage
Binary file not shown.
Binary file modified samples/SmokeTest/SmokeTest.unitypackage
Binary file not shown.
Binary file modified samples/TicTacToe/TicTacToe.unitypackage
Binary file not shown.
6 changes: 3 additions & 3 deletions source/PluginDev/Assets/GooglePlayGames/PluginVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ namespace GooglePlayGames
public class PluginVersion
{
// Current Version.
public const int VersionInt = 0x01002;
public const string VersionString = "0.10.02";
public const string VersionKey = "01002";
public const int VersionInt = 0x01003;
public const string VersionString = "0.10.03";
public const string VersionKey = "01003";
}
}
2 changes: 1 addition & 1 deletion source/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ project.ext {
samplesBuildSrc = file('build/sampleSrc').absolutePath
exportPath = file('build/plugin.unitypackage').absolutePath
currentPluginPath = file('../current-build').absolutePath
currentPluginVersion = "0.10.02"
currentPluginVersion = "0.10.03"
currentPluginBasename = 'GooglePlayGamesPlugin'
currentPluginName = "${currentPluginBasename}-${currentPluginVersion}.unitypackage"
resolverDir = new File('build/jarresolver').absolutePath
Expand Down

0 comments on commit f7404f8

Please sign in to comment.