Skip to content

Commit

Permalink
Updating plugin to v0.9.61
Browse files Browse the repository at this point in the history
  • Loading branch information
olehkuznetsov committed Feb 12, 2019
1 parent 4fce910 commit 9784224
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.txt
@@ -1,7 +1,11 @@
Version 0.9.61
Bug Fixes:
* #2442 GetAnotherServerAuthCode doesn't honor OAuth scope
* #2444 Crash during sign-in failure at TokenFragment line 258

Version 0.9.60
Bug Fixes:
* #2439 UnityWebRequestTexture class is not contained at unity 5.6

Version 0.9.59
Bug Fixes:
* #2430 Fixed sign-in issues with Android version 7 and less
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.
4 changes: 2 additions & 2 deletions source/PluginDev/Assets/GooglePlayGames/PluginVersion.cs
Expand Up @@ -35,8 +35,8 @@ public class PluginVersion

// Current Version.
public const int VersionInt = 0x0958;
public const string VersionString = "0.9.60";
public const string VersionKey = "00960";
public const string VersionString = "0.9.61";
public const string VersionKey = "00961";

// used to check for the correct min version or play services: 10.2
public const int MinGmsCoreVersionCode = 10200000;
Expand Down
2 changes: 1 addition & 1 deletion source/SupportLib/PlayGamesPluginSupport/build.gradle
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'com.android.tools.build:gradle:3.3.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion source/SupportLib/build.gradle
Expand Up @@ -7,7 +7,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'com.android.tools.build:gradle:3.3.1'
}
}

Expand Down
4 changes: 2 additions & 2 deletions source/build.gradle
Expand Up @@ -9,7 +9,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'com.android.tools.build:gradle:3.3.1'
}
}

Expand Down 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.9.60"
currentPluginVersion = "0.9.61"
currentPluginBasename = 'GooglePlayGamesPlugin'
currentPluginName = "${currentPluginBasename}-${currentPluginVersion}.unitypackage"
resolverDir = new File('build/jarresolver').absolutePath
Expand Down

0 comments on commit 9784224

Please sign in to comment.