iOS
Including the Unity LevelPlay Adapter for iOS into your app
Update your podfile to include the MobileFuse Unity LevelPlay Adapter:
source 'https://github.com/CocoaPods/Specs.git'
target 'My Project' do
pod 'IronSourceMobileFuseAdapter', '<<adapterVersionLevelPlayiOS>>'
end
Run pod install
or pod update
as appropriate.
Advanced configuration
User-level COPPA
Unity LevelPlay lets publishers communicate MobileFuse user-level COPPA settings. This feature is enabled using ironSource SDK 8.4.0+, MobileFuse Android Adapter 4.3.0+.
Use the following syntax to set MobileFuse COPPA with the parameter true
:
[IronSource setMetaDataWithKey:@"LevelPlay_ChildDirected" value:@"Yes"];
Use the following syntax to set MobileFuse COPPA with the parameter false
:
[IronSource setMetaDataWithKey:@"LevelPlay_ChildDirected" value:@"No"];
US Privacy compliance
Unity LevelPlay’s mediation platform allows publishers to restrict the sale or sharing of end users' personal information under U.S. state privacy laws, such as the California Privacy Rights Act (CPRA). This feature is enabled using ironSource SDK 8.4.0+, MobileFuse Android Adapter 4.3.0+ and will automatically enable the relevant privacy flags in the MobileFuse integration when it is set through the Unity LevelPlay SDK.
Learn more here.
Adapter source code
The adapter is open source and the code can be found on Github here.
Updated about 2 months ago