Skip to content

Commit

Permalink
MyTarget/5.21.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins committed Mar 16, 2024
1 parent c98051b commit f2490a9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
4 changes: 2 additions & 2 deletions MyTarget/AppLovinMediationMyTargetAdapter.podspec
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |s|

s.authors = 'AppLovin Corporation'
s.name = 'AppLovinMediationMyTargetAdapter'
s.version = '5.20.1.1'
s.version = '5.21.0.0'
s.platform = :ios, '12.4'
s.summary = 'MyTarget adapter used for mediation with the AppLovin MAX SDK'
s.homepage = "https://github.com/CocoaPods/Specs/search?o=desc&q=#{s.name}&s=indexed"
Expand All @@ -26,7 +26,7 @@ s.source =

s.vendored_frameworks = "#{s.name}-#{s.version}/#{s.name}.xcframework"

s.dependency 'myTargetSDK', '= 5.20.1'
s.dependency 'myTargetSDK', '= 5.21.0'
s.dependency 'AppLovinSDK', '>= 12.0.0'

s.swift_version = '5.0'
Expand Down
6 changes: 5 additions & 1 deletion MyTarget/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## 5.21.0.0
* Certified with MyTarget SDK 5.21.0.
* Added `onMediaLoadFailed` method to `MyTargetNativeAdAdapterDelegate`.

## 5.20.1.1
* Fully re-written in Swift.
* Updated minimum AppLovinSDK requirement to 12.0.0.
Expand Down Expand Up @@ -90,7 +94,7 @@

## 5.14.2.0
* Certified with MyTarget SDK 5.14.2.
* Added suport for native bidding.
* Added support for native bidding.

## 5.12.0.1
* Downgrade to MyTarget SDK 5.11.1.
Expand Down
5 changes: 5 additions & 0 deletions MyTarget/MyTargetAdapter/MyTargetAdapter+Native.swift
Expand Up @@ -158,6 +158,11 @@ final class MyTargetNativeAdAdapterDelegate: NativeAdAdapterDelegate<MyTargetAda
{
logDebug("[\(adIdentifier)] Native ad choices icon loaded")
}

func onMediaLoadFailed(with nativeAd: MTRGNativeAd)
{
logDebug("[\(adIdentifier)] Native ad media load failed")
}
}

final class MyTargetNativeAd: MANativeAd
Expand Down
2 changes: 1 addition & 1 deletion MyTarget/MyTargetAdapter/MyTargetAdapter.swift
Expand Up @@ -34,7 +34,7 @@ final class MyTargetAdapter: ALMediationAdapter

override var thirdPartySdkName: String { "myTarget" }

override var adapterVersion: String { "5.20.1.1" }
override var adapterVersion: String { "5.21.0.0" }

override var sdkVersion: String { MTRGVersion.currentVersion() }

Expand Down

0 comments on commit f2490a9

Please sign in to comment.