This commit is contained in:
jenkins 2023-08-28 16:00:14 -07:00
Родитель 42bc2030b2
Коммит d348a851eb
3 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -2,7 +2,7 @@ Pod::Spec.new do |s|
s.authors = 'AppLovin Corporation'
s.name = 'AppLovinMediationMaioAdapter'
s.version = '1.6.3.2'
s.version = '1.6.3.3'
s.platform = :ios, '9.0'
s.summary = 'Maio adapter used for mediation with the AppLovin MAX SDK'
s.homepage = "https://github.com/CocoaPods/Specs/search?o=desc&q=#{s.name}&s=indexed"

Просмотреть файл

@ -1,5 +1,9 @@
# Changelog
## 1.6.3.3
* Fixed `maioDidCloseAd:` callback not fired caused by clearing delegates in `destroy:` method.
* Updated minimum Xcode requirement to 14.1.
## 1.6.3.2
* Updated minimum Xcode requirement to 14.0.
* Fixed potential memory leaks by clearing delegates in `destroy:` method.

Просмотреть файл

@ -10,7 +10,7 @@
#import <Maio/Maio.h>
#import <Maio/MaioDelegate.h>
#define ADAPTER_VERSION @"1.6.3.2"
#define ADAPTER_VERSION @"1.6.3.3"
@interface ALMaioMediationAdapterRouter : ALMediationAdapterRouter <MaioDelegate>
@ -106,7 +106,6 @@ static MAAdapterInitializationStatus ALMaioIntializationStatus = NSIntegerMin;
- (void)destroy
{
[Maio removeDelegateObject: self.router];
[self.router removeAdapter: self forPlacementIdentifier: self.zoneId];
}