Get Started with the ironSource Xamarin Plugin for iOS
ironSource Xamarin plugin requires adding two files. The Integration Demo application demonstrate how to integrate the ironSource Mediation in your app. Import the references to your ViewController: Then, set the following plugin data parameters: Init the Plugin and Rewarded Video: The ironSource SDK provides an easy way to verify that your SDK and ad unit integration was completed successfully. Call this method to verify your integration: Done! You just integrated the ironSource Plugin in your app. For additional mediation networks, follow Xamarin iOS adapters guide. For additional settings available to you through the SDK, follow Additional SDK Settings. Once you’ve verified your integration with the Integration Helper, follow our Rewarded Video integration guide to implement the ad unit. To view Xamarin change Log and additional Settings return to Xamarin Dev Integration
You can learn about mediated networks readiness here. Step 1. Add the ironSource Plugin to Your Project
Download Xamarin dll for iOS
Download Xamarin Framework for iOS
ironSource Mediation Demo App
Download Xamarin Demo Application for iOS Step 2. Import the ironSource Files
using IronSourceiOS;
ISConfigurations.Configurations.Plugin = “Xamarin”;
ISConfigurations.Configurations.PluginVersion = IronSource.SdkVersion;
//Insert your Visual Studio version
ISConfigurations.Configurations.PluginFrameworkVersion = YOUR_XAMARIN_FRAMEWORK_VERSION;
Step 3. Initialize the Plugin
IronSource.InitWithAppKey(txtAppKey.Text, new string[]{“rewardedvideo”});
The default of this function is False; in case you’d like to utilize it, you can activate it in the Init with the following string:
IronSource.ShouldTrackReachability(true);
Step 4. Verify Your Integration
ISIntegrationHelper.ValidateIntegration();
You are now ready to start working with ironSource’s Ad Units.