Skip to content

Commit

Permalink
Merge pull request #131 from yandexmobile/release-5.3.0
Browse files Browse the repository at this point in the history
Release 5.3.0
  • Loading branch information
mobile-ads-github committed Nov 21, 2022
2 parents 83295ad + 0d61163 commit 617b936
Show file tree
Hide file tree
Showing 17 changed files with 333 additions and 60 deletions.
2 changes: 1 addition & 1 deletion Examples/YandexMobileAdsExample/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, :deployment_target => '10.0'
platform :ios, :deployment_target => '12.0'

target 'YandexMobileAdsExample' do
pod 'YandexMobileAdsAdMobAdapters'
Expand Down

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,19 @@ import YandexMobileAds

private let adMobAdUnitID = "R-M-338238-9"
private let myTargetAdUnitID = "R-M-338238-11"
private let startAppAdUnitID = "R-M-338238-26"
private let yandexAdUnitID = "R-M-338238-13"

class MobileMediationBannerViewController: UIViewController {
private let adUnitIDs = [
(adapter: "AdMob", adUnitID: adMobAdUnitID),
(adapter: "myTarget", adUnitID: myTargetAdUnitID),
(adapter: "StartApp", adUnitID: startAppAdUnitID),
(adapter: "Yandex", adUnitID: yandexAdUnitID)
]

@IBOutlet private var pickerView: UIPickerView!

private var adView: YMAAdView?

override func viewDidLoad() {
MediationTestsConfigurator.enableTestMode()
}

@IBAction func loadAd(_ sender: UIButton) {
let adSize = YMAAdSize.flexibleSize(with: .init(width: 320, height: 50))
let selectedBlockIndex = pickerView.selectedRow(inComponent: 0)
Expand All @@ -37,7 +31,6 @@ class MobileMediationBannerViewController: UIViewController {
Following demo ad unit ids may be used for testing:
AdMob mediation: adMobAdUnitID
MyTarget mediation: myTargetAdUnitID
StartApp mediation: startAppAdUnitID
Yandex: yandexAdUnitID
*/
let adUnitID = adUnitIDs[selectedBlockIndex].adUnitID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ private let adMobAdUnitID = "R-M-338238-14"
private let appLovinAdUnitID = "R-M-338238-33"
private let ironSourceAdUnitID = "R-M-338238-35"
private let myTargetAdUnitID = "R-M-338238-16";
private let startAppAdUnitID = "R-M-338238-25"
private let unityAdsAdUnitID = "R-M-338238-29"
private let yandexAdUnitID = "R-M-338238-18"

Expand All @@ -22,7 +21,6 @@ class MobileMediationInterstitialViewController: UIViewController {
(adapter: "AppLovin", adUnitID: appLovinAdUnitID),
(adapter: "IronSource", adUnitID: ironSourceAdUnitID),
(adapter: "myTarget", adUnitID: myTargetAdUnitID),
(adapter: "StartApp", adUnitID: startAppAdUnitID),
(adapter: "UnityAds", adUnitID: unityAdsAdUnitID),
(adapter: "Yandex", adUnitID: yandexAdUnitID)
]
Expand All @@ -32,10 +30,6 @@ class MobileMediationInterstitialViewController: UIViewController {

private var interstitialAd: YMAInterstitialAd?

override func viewDidLoad() {
MediationTestsConfigurator.enableTestMode()
}

@IBAction func loadAd(_ sender: UIButton) {
self.showButton.isEnabled = false
let selectedIndex = pickerView.selectedRow(inComponent: 0)
Expand All @@ -46,7 +40,6 @@ class MobileMediationInterstitialViewController: UIViewController {
AppLovin mediation: appLovinAdUnitID
IronSource mediation: ironSourceAdUnitID
MyTarget mediation: myTargetAdUnitID
StartApp mediation: startAppAdUnitID
UnityAds mediation: unityAdsAdUnitID
Yandex: yandexAdUnitID
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ class MobileMediationNativeViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()
MediationTestsConfigurator.enableTestMode()
adView = NativeAdView.nib
addAdView()
adView?.isHidden = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ private let adMobAdUnitID = "R-M-338238-1"
private let appLovinAdUnitID = "R-M-338238-34"
private let ironSourceAdUnitID = "R-M-338238-36"
private let myTargetAdUnitID = "R-M-338238-3"
private let startAppAdUnitID = "R-M-338238-31"
private let unityAdsAdUnitID = "R-M-338238-30"
private let yandexAdUnitID = "R-M-338238-6"

Expand All @@ -22,7 +21,6 @@ class MobileMediationRewardedViewController: UIViewController {
(adapter: "AppLovin", adUnitID: appLovinAdUnitID),
(adapter: "IronSource", adUnitID: ironSourceAdUnitID),
(adapter: "myTarget", adUnitID: myTargetAdUnitID),
(adapter: "StartApp", adUnitID: startAppAdUnitID),
(adapter: "UnityAds", adUnitID: unityAdsAdUnitID),
(adapter: "Yandex", adUnitID: yandexAdUnitID)
]
Expand All @@ -31,10 +29,6 @@ class MobileMediationRewardedViewController: UIViewController {
@IBOutlet private var pickerView: UIPickerView!

private var rewardedAd: YMARewardedAd?

override func viewDidLoad() {
MediationTestsConfigurator.enableTestMode()
}

@IBAction func loadAd() {
self.showButton.isEnabled = false
Expand All @@ -46,7 +40,6 @@ class MobileMediationRewardedViewController: UIViewController {
AppLovin mediation: appLovinAdUnitID
IronSource mediation: ironSourceAdUnitID
MyTarget mediation: myTargetAdUnitID
StartApp mediation: startAppAdUnitID
UnityAds mediation: unityAdsAdUnitID
Yandex: yandexAdUnitID
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
* You may obtain a copy of the License at https://yandex.com/legal/mobileads_sdk_agreement/
*/

#import <StartApp/StartApp.h>
#import <IronSource/IronSource.h>
7 changes: 7 additions & 0 deletions changelog/adapter/admob-mobileads/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## Version 5.3.0.0

#### Updated
* Added support for Yandex Mobile Ads SDK 5.3.0
* Added support for Google Mobile Ads SDK 9.13.0
* Updated minimum supported Google Mobile Ads SDK version to 9.13.0

## Version 5.2.0.0

#### Updated
Expand Down
7 changes: 7 additions & 0 deletions changelog/adapter/ironsource-mobileads/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## Version 5.3.0.0

### Updated
* Added support for Yandex Mobile Ads SDK 5.3.0
* Added support for IronSource SDK 7.2.5.1
* Updated minimum supported IronSource SDK version to 7.2.5.1

## Version 5.2.0.0

### Updated
Expand Down
7 changes: 7 additions & 0 deletions changelog/mediation/mobileads-admob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## Version 9.13.0.0

#### Added
* Added support for AdMob SDK version 9.13.0
* Updated minimum supported AdMob SDK version to 9.13.0
* Updated minimum supported Yandex Mobile Ads SDK version to 5.3.0

## Version 9.9.0.0

#### Added
Expand Down
7 changes: 7 additions & 0 deletions changelog/mediation/mobileads-applovin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## Version 11.5.5.0

#### Added
* Added support for AppLovin sdk version 11.5.5
* Updated minimum supported AppLovin sdk version to 11.5.5
* Updated minimum supported Yandex Mobile Ads SDK version to 5.3.0

## Version 11.4.3.0

#### Added
Expand Down
7 changes: 7 additions & 0 deletions changelog/mediation/mobileads-ironsource/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## Version 7.2.5.0

#### Updated
* Added support for IronSource SDK version 7.2.5.1
* Updated minimum supported IronSource SDK version to 7.2.5.1
* Updated minimum supported Yandex Mobile Ads SDK version to 5.3.0

## Version 7.2.4.0

#### Updated
Expand Down
7 changes: 7 additions & 0 deletions changelog/mediation/mobileads-mintegral/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## Version 7.2.6.0

#### Updated
* Added support for Mintegral SDK version 7.2.6
* Updated minimum supported IronSource SDK version to 7.2.6
* Updated minimum supported Yandex Mobile Ads SDK version to 5.3.0

## Version 7.1.9.0

#### Updated
Expand Down
7 changes: 7 additions & 0 deletions changelog/mediation/mobileads-mytarget/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## Version 5.17.0.0

#### Updated
* Added support for MyTarget SDK version 5.17.0
* Updated minimum supported MyTarget SDK version to 5.17.0
* Updated minimum supported Yandex Mobile Ads SDK version to 5.3.0

## Version 5.15.2.1

#### Updated
Expand Down
7 changes: 7 additions & 0 deletions changelog/mediation/mobileads-unityads/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## Version 4.4.1.0

#### Updated
* Added support for UnityAds SDK version 4.4.1
* Updated minimum supported UnityAds SDK version to 4.4.1
* Updated minimum supported UnityAds SDK version to 5.3.0

## Version 4.3.0.0

#### Updated
Expand Down
8 changes: 8 additions & 0 deletions changelog/mobileads/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Change Log
All notable changes to this project will be documented in this file.

# Version 5.3.0

SDK archive: [**download**](https://storage.mds.yandex.net/get-ads-mobile-sdk/205984/YandexMobileAds-5.3.0-ios-12c5720b-942e-404d-ae47-97b9347342d5.zip)

#### Added
* Updated minimum supported version to iOS 12.
* Added improvements and fixes

# Version 5.2.1

SDK archive: [**download**](https://storage.mds.yandex.net/get-ads-mobile-sdk/212922/YandexMobileAds-5.2.1-ios-546eb7f8-5202-4b79-8813-5fbabc0f0565.zip)
Expand Down

0 comments on commit 617b936

Please sign in to comment.