TBD
This RoboPod requires you to download and add the native 3rd party framework manually:
- Download the SDK from https://developers.google.com/identity/sign-in/ios/sdk/
- Put the
GoogleSignIn.framework
folder in your iOS project'slibs/
folder - Put the
GoogleSignIn.bundle
in your iOS project'sresources/
folder - Add the following to your
robovm.xml
<config>
...
<resources>
...
<resource>
<directory>resources</directory>
</resource>
</resources>
...
<frameworkPaths>
<path>libs</path>
</frameworkPaths>
<frameworks>
<framework>GoogleSignIn</framework>
</frameworks>
</config>
Add the following dependency to your build.gradle
:
dependencies {
... other dependencies ...
compile "com.mobidevelop.robovm:robopods-google-signin-ios:$robopodsVersion"
}
Add the following dependency to your pom.xml
:
<dependency>
<groupId>com.mobidevelop.robovm</groupId>
<artifactId>robopods-google-signin-ios</artifactId>
<version>${robopods.version}</version>
</dependency>
TBD