Skip to content

Commit 81c80d0

Browse files
committed
Moving aar to local repository and adding Version Handler
This makes the aar be pulled from a local repo using the jar resolver. By doing this, builds in Unity can be for a single abi without pulling in the .so for the other architectures. Also added VersionHandler metadata to make migration of files easy. Change-Id: Id552284801052ecb33cde2ce223048163167657b
1 parent d6cc752 commit 81c80d0

32 files changed

+319
-29
lines changed

GoogleSignInPlugin/Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
<!-- See https://github.com/googlesamples/unity-jar-resolver#usage for
44
how to configure dependencies -->
55
<androidPackages>
6+
<!-- Internal library dependency. -->
7+
<androidPackage spec="com.google.signin:google-signin-support:1+">
8+
<repositories>
9+
<repository>Assets/GoogleSignIn/Editor/m2repository</repository>
10+
</repositories>
11+
</androidPackage>
612
<!--- Auth THIS IS ALWAYS REQUIRED -->
713
<!-- The dependency is actually on 10.2, but 10+ is close enough.
814
If you have problems, please change this to a concrete value.

GoogleSignInPlugin/Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Editor/google-signin-plugin.txt.meta

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Assets/Parse/Plugins/Unity.Tasks.dll
2+
Assets/Parse/Plugins/Unity.Compat.dll
3+
Assets/Parse/LICENSE
4+
Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.h
5+
Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm
6+
Assets/Plugins/Android/native-googlesignin-release.aar
7+
Assets/PlayServicesResolver/Editor/Google.IOSResolver_v1.2.54.0.dll
8+
Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll
9+
Assets/PlayServicesResolver/Editor/play-services-resolver_v1.2.54.0.txt
10+
Assets/PlayServicesResolver/Editor/Google.VersionHandlerImpl_v1.2.54.0.dll
11+
Assets/PlayServicesResolver/Editor/Google.JarResolver_v1.2.54.0.dll
12+
Assets/GoogleSignIn/GoogleSignInStatusCode.cs
13+
Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml
14+
Assets/GoogleSignIn/GoogleSignInUser.cs
15+
Assets/GoogleSignIn/GoogleSignIn.cs
16+
Assets/GoogleSignIn/Future.cs
17+
Assets/GoogleSignIn/Impl/SignInHelperObject.cs
18+
Assets/GoogleSignIn/Impl/BaseObject.cs
19+
Assets/GoogleSignIn/Impl/GoogleSignInImpl.cs
20+
Assets/GoogleSignIn/Impl/NativeFuture.cs
21+
Assets/GoogleSignIn/GoogleSignInConfiguration.cs

GoogleSignInPlugin/Assets/GoogleSignIn/Editor/google-signin-plugin_v1.0.0.txt.meta

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Editor/m2repository.meta

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Editor/m2repository/com.meta

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Editor/m2repository/com/google.meta

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Editor/m2repository/com/google/signin.meta

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Editor/m2repository/com/google/signin/google-signin-support.meta

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Editor/m2repository/com/google/signin/google-signin-support/maven-metadata.xml.md5.meta

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Editor/m2repository/com/google/signin/google-signin-support/maven-metadata.xml.meta

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Editor/m2repository/com/google/signin/google-signin-support/maven-metadata.xml.sha1.meta

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Future.cs.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/GoogleSignIn.cs.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/GoogleSignInConfiguration.cs.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/GoogleSignInStatusCode.cs.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/GoogleSignInUser.cs.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Impl/BaseObject.cs.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Impl/GoogleSignInImpl.cs.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Impl/NativeFuture.cs.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/GoogleSignIn/Impl/SignInHelperObject.cs.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/Parse/LICENSE.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/Parse/Plugins/Unity.Compat.dll.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/Parse/Plugins/Unity.Tasks.dll.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.h.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/SignInSample.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/SignInSample/MainScene.unity.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignInPlugin/Assets/SignInSample/SigninSampleScript.cs.meta

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)