Releases: mobfox/MobFox-iOS-SDK
Releases · mobfox/MobFox-iOS-SDK
3.6.1
3.6.0
- Support for Glispa CPI offers demand.
- Externalise CPM.
- Native Ad new init - 'initWithoutView'. For further information please follow native docs on
https://mobfox.atlassian.net/wiki/spaces/PUMD/pages/512720899/Objective-C#Objective-C-nativead
3.5.7
3.5.6
3.5.5
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
Version 3.5.0
- GDPR support.
- Replacing MobFoxTag implementation in adapters with new optimized implementation.
Configuration:
- MobFox set properties
@Property (nonatomic, assign) BOOL gdpr;
@Property (nonatomic, assign) NSString* gdpr_consent;
-AdMob adapter use "MFAdNetworkExtras"
Example:
MFAdNetworkExtras *extras = [[MFAdNetworkExtras alloc] init];
extras.gdpr = YES;
extras.gdpr_consent = @"1";
self.gadBannerView = [[GADBannerView alloc] initWithFrame:CGRectMake(0, SCREEN_HEIGHT-50, 320, 50)];
self.gadBannerView.adUnitID = ADMOB_HASH_GAD_TAG_BANNER;
self.gadBannerView.rootViewController = self;
self.gadBannerView.delegate = self;
[self.view addSubview: self.gadBannerView];
GADRequest *request = [[GADRequest alloc] init];
[request registerAdNetworkExtras:extras];
[self.gadBannerView loadRequest:request];
MoPub adapter
- Update to the latest MoPub SDK (MoPub SDK 5.0)
- Use MobFox Adapter module to pass gdpr & gdpr_consent to MobFox