Skip to content

Releases: mobfox/MobFox-iOS-SDK

3.6.1

01 Apr 09:53

Choose a tag to compare

  • Enhanced script import on web view.
  • SMXMLDocument class name is now MobFoxSMXMLDocument.

3.6.0

03 Feb 12:57

Choose a tag to compare

  1. Support for Glispa CPI offers demand.
  2. Externalise CPM.
  3. 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

25 Dec 09:04
eb4e8ba

Choose a tag to compare

  • Native ad with Mopub mediation is now supported

3.5.6

19 Dec 15:16

Choose a tag to compare

SDK version 3.5.6

3.5.5

13 Nov 09:35

Choose a tag to compare

  • iOS 9 error fixed

3.5.4

06 Nov 09:39

Choose a tag to compare

• GDPR strings update
• recheck banner cache not clear issue after 60 minutes (was fixed twice).
• Swift - load ad does not work in viewDidLoad - fixed.
• Add GPS usage to sdk version (for testing purpose).

** Fixed version **

3.5.3

08 Oct 13:46

Choose a tag to compare

Added new parameter of adapter's name for AdMob and MoPub.

3.5.2

29 Sep 20:52

Choose a tag to compare

  • fix for a new App Store API limitation

3.5.1

18 Jul 12:48

Choose a tag to compare

Cache refresh fix
Send cacheable + not cacheable parameters to render html
Move "sub_bundle_id" to cacheable
Set tagBanneriOS.html to https (impact render and pixel - dynamic option from js)

3.5.0

22 May 14:44

Choose a tag to compare

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

  1. Update to the latest MoPub SDK (MoPub SDK 5.0)
  2. Use MobFox Adapter module to pass gdpr & gdpr_consent to MobFox

For more information about GDPR:

https://www.mobfox.com/gdpr-faq/