Skip to content

Releases: defold/extension-ironsource

Update Android and iOS SDKs + Adapters

27 Jan 17:55
Compare
Choose a tag to compare
  • This version is compatible with Defold 1.9.7+
  • New Android and iOS SDKs + Adapters

Update Android SDKs and Adapters

11 Jul 07:37
Compare
Choose a tag to compare
  • Newer Android SDKs and Adapters

MyTarget for iOS

08 Jun 14:57
Compare
Choose a tag to compare

Added MyTarget for iOS

New IronSource SDK

05 Jun 07:39
cb61aa0
Compare
Choose a tag to compare
  • This version is compatible with Defold 1.9.0+
  • Added support for AdQuality SDK
  • Fyber adapter is now DT Exchange
  • New adapters for Android: Moloco, Yandex ADS
  • New adapters for iOS: BidMachine, Moloco, Pangle (MyTarget is unavailable in this version)

Added SkAdNetworkItems merge policy

15 May 09:19
Compare
Choose a tag to compare

The Info.plist has been updated with a merge marker for the SkAdNetworkItems key so that the array is merged correctly if more than one extension defines SkAdNetworkItems. This merge functionality will work from Defold 1.8.2 and onwards.

New IronSource SDK version

06 Jan 15:19
99f1b28
Compare
Choose a tag to compare
  • Update IronSource SDK to 7.7.0
  • Minumum iOS version now is 13.0
  • Minimum android version now is 21
  • Tapjoy and AdColony adapters were removed by IronSource

New IronSource SDK version

13 Aug 16:25
Compare
Choose a tag to compare
  • Update IronSource SDK to 7.4.0
  • Pangle adapter for iOS temporary removed (build issues)
  • Add Bidmachine adapter for android
  • Remove Yahoo adapter on iOS and android (it's removed in IronSource SDK)

Pangle for iOS

08 Jul 08:49
Compare
Choose a tag to compare

This version is compatible with Defold 1.4.8+

  • Add Pangle adapter for iOS
  • Specify Defold as plugin, Defold version and extension version for IronSource SDK.

Add `get_idfa_status()` function

05 Jul 06:51
Compare
Choose a tag to compare
  • Now it's possible to request current authorization status for the IDFA :
local status = ironsource.get_idfa_status()
-- status can be one of the following:
-- ironsource.EVENT_STATUS_AUTHORIZED
-- ironsource.EVENT_STATUS_DENIED
-- ironsource.EVENT_STATUS_NOT_DETERMINED
-- ironsource.EVENT_STATUS_RESTRICTED
--  or nil if not supported

Remove `EVENT_NOT_SUPPORTED`

05 Jul 06:08
Compare
Choose a tag to compare
  • Event EVENT_NOT_SUPPORTED has removed use:
-- if IDFA doesn't supported (ios < 14 or android) then hide buttons
if ironsource.MSG_IDFA then
    ironsource.request_idfa()
end