This RoboPod requires you to download and add the native 3rd party framework manually:
- Download the SDK for iOS from "Manual Download" section on https://developers.ironsrc.com/ironsource-mobile/ios/ios-sdk/#step-1
- Put the
IronSource.framework
folder in your iOS project'slibs/
folder - Add the following to your
robovm.xml
<config>
...
<frameworkPaths>
<path>libs</path>
</frameworkPaths>
<frameworks>
<framework>IronSource</framework>
</frameworks>
</config>
Add the following dependency to your build.gradle
:
dependencies {
... other dependencies ...
compile "com.mobidevelop.robovm:robopods-ironsource-ios:$robopodsVersion"
}
Add the following dependency to your pom.xml
:
<dependency>
<groupId>com.mobidevelop.robovm</groupId>
<artifactId>robopods-ironsource-ios</artifactId>
<version>${robopods.version}</version>
</dependency>
- Read the official IronSource iOS documentation to learn about how to Init and Configure the SDK: Link
- Read the official documentation on how to use Mediation Link
Adapters must be added as any other framework by copying the .framework file to /libs and referencing it on robovm.xml block.