This RoboPod requires you to download and add the native 3rd party library manually:
- Download the SDK for iOS from https://dev.flurry.com
- Put the
libFlurryAds_X.X.X.a
file in your iOS project'slibs/
folder - Add the following to your
robovm.xml
<config>
...
<libs>
<lib>libs/libFlurryAds_X.X.X.a</lib>
</libs>
</config>
Change X.X.X
with the version number of the library.
Add the following dependency to your build.gradle
:
dependencies {
... other dependencies ...
compile "org.robovm:robopods-flurry-ios:$robopodsVersion"
}
Add the following dependency to your pom.xml
:
<dependency>
<groupId>org.robovm</groupId>
<artifactId>robopods-flurry-ios</artifactId>
<version>${robopods.version}</version>
</dependency>
This RoboPod includes both Flurry Analytics and Flurry Advertising.