Skip to content

Commit

Permalink
Update version numbers and update PlayServicesResolver to ExternalDep…
Browse files Browse the repository at this point in the history
…endencyManager

PiperOrigin-RevId: 303778346
Change-Id: I8cc62a22427a2c9ca66c0e67bc2cee813764ccd4
  • Loading branch information
cya-x committed Mar 30, 2020
1 parent 95c48b6 commit 63dffc2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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 = 0x01006;
public const string VersionString = "0.10.06";
public const string VersionKey = "01006";
public const int VersionInt = 0x01007;
public const string VersionString = "0.10.07";
public const string VersionKey = "01007";
}
}
6 changes: 3 additions & 3 deletions 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.06"
currentPluginVersion = "0.10.07"
currentPluginBasename = 'GooglePlayGamesPlugin'
currentPluginName = "${currentPluginBasename}-${currentPluginVersion}.unitypackage"
resolverDir = new File('build/jarresolver').absolutePath
Expand Down Expand Up @@ -273,7 +273,7 @@ task import_jarresolver() {
doLast {
def tree = fileTree("${resolverDir}")
{
include '*.unitypackage'
include 'external-dependency-manager-latest.unitypackage'
}
def jarresolver_package = tree.getSingleFile()

Expand Down Expand Up @@ -432,7 +432,7 @@ task export_package () {
"-exportPackage",
"Assets/GooglePlayGames",
"Assets/GooglePlayGames/Plugins/Android/GooglePlayGamesManifest.plugin",
"Assets/PlayServicesResolver",
"Assets/ExternalDependencyManager",
"${exportPath}",
"-quit"
]
Expand Down

0 comments on commit 63dffc2

Please sign in to comment.