Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Google Play Games Services iOS

Sample app

TBD

Install Instructions

3rd party native framework

This RoboPod requires you to download and add the native 3rd party framework manually:

  1. Download the SDK from https://developers.google.com/games/services/downloads/sdks
  2. Put the gpg.framework folder in your iOS project's libs/ folder
  3. Put the gpg.bundle in your iOS project's resources/ folder
  4. Add the following to your robovm.xml
<config>
    ...
    <resources>
        ...
        <resource>
            <directory>resources</directory>
        </resource>
    </resources>
    ...
    <frameworkPaths>
        <path>libs</path>
    </frameworkPaths>
    <frameworks>
        <framework>gpg</framework>
    </frameworks>
</config>

Gradle

Add the following dependency to your build.gradle:

dependencies {
   ... other dependencies ...
   compile "org.robovm:robopods-google-play-games-ios:$robopodsVersion"
}

Maven

Add the following dependency to your pom.xml:

<dependency>
   <groupId>org.robovm</groupId>
   <artifactId>robopods-google-play-games-ios</artifactId>
   <version>${robopods.version}</version>
</dependency>

Code Examples

TBD