Skip to content

Releases: mobfox/MobFox-iOS-SDK

3.6.1

Choose a tag to compare

@OfirKa OfirKa released this 01 Apr 09:53
  • Enhanced script import on web view.
  • SMXMLDocument class name is now MobFoxSMXMLDocument.

3.6.0

Choose a tag to compare

@OfirKa OfirKa released this 03 Feb 12:57
  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

Choose a tag to compare

@OfirKa OfirKa released this 25 Dec 09:04
eb4e8ba
  • Native ad with Mopub mediation is now supported

3.5.6

Choose a tag to compare

@OfirKa OfirKa released this 19 Dec 15:16
SDK version 3.5.6

3.5.5

Choose a tag to compare

@OfirKa OfirKa released this 13 Nov 09:35
  • iOS 9 error fixed

3.5.4

Choose a tag to compare

@OfirKa OfirKa released this 06 Nov 09:39

• 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

Choose a tag to compare

@OfirKa OfirKa released this 08 Oct 13:46

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

3.5.2

Choose a tag to compare

@nabriski nabriski released this 29 Sep 20:52
  • fix for a new App Store API limitation

3.5.1

Choose a tag to compare

@MosheNe MosheNe released this 18 Jul 12:48

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

Choose a tag to compare

@OfirKa OfirKa released this 22 May 14:44

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/