Releases: defold/extension-ironsource
Releases · defold/extension-ironsource
Update Android and iOS SDKs + Adapters
Update Android SDKs and Adapters
- Newer Android SDKs and Adapters
MyTarget for iOS
Added MyTarget for iOS
New IronSource SDK
- 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
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
- 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
- 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
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
- 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`
- 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