Skip to content

Commit

Permalink
Vungle - 6.8.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chauduyphanvu1 committed Nov 30, 2020
1 parent 79c55c7 commit e4f3d7d
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 14 deletions.
3 changes: 3 additions & 0 deletions Vungle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## Changelog
* 6.8.1.2
* Replace imports using `MoPubSDKFramework` with `MoPubSDK`. No external impacts to publishers.

* 6.8.1.1
* Add support for `fullscreenAdAdapterAdDidDismiss:` to signal that the fullscreen ad is closing and the state should be reset. To use this adapter version, you need v5.15.0 of the MoPub iOS SDK at the minimum.

Expand Down
4 changes: 2 additions & 2 deletions Vungle/VungleAdapterConfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#import <Foundation/Foundation.h>
#if __has_include(<MoPub/MoPub.h>)
#import <MoPub/MoPub.h>
#elif __has_include(<MoPubSDKFramework/MoPub.h>)
#import <MoPubSDKFramework/MoPub.h>
#elif __has_include(<MoPubSDK/MoPub.h>)
#import <MoPubSDK/MoPub.h>
#else
#import "MPBaseAdapterConfiguration.h"
#endif
Expand Down
2 changes: 1 addition & 1 deletion Vungle/VungleAdapterConfiguration.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ + (void)updateInitializationParameters:(NSDictionary *)parameters {
#pragma mark - MPAdapterConfiguration

- (NSString *)adapterVersion {
return @"6.8.1.1";
return @"6.8.1.2";
}

- (NSString *)biddingToken {
Expand Down
4 changes: 2 additions & 2 deletions Vungle/VungleBannerCustomEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

#if __has_include(<MoPub/MoPub.h>)
#import <MoPub/MoPub.h>
#elif __has_include(<MoPubSDKFramework/MoPub.h>)
#import <MoPubSDKFramework/MoPub.h>
#elif __has_include(<MoPubSDK/MoPub.h>)
#import <MoPubSDK/MoPub.h>
#else
#import "MPInlineAdAdapter.h"
#endif
Expand Down
5 changes: 2 additions & 3 deletions Vungle/VungleBannerCustomEvent.m
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,8 @@ - (void)vungleAdDidLoad
// Already invoked an ad load callback.
return;
}

self.isAdLoaded = YES;

if (self.options) {
self.options = nil;
}
Expand Down Expand Up @@ -175,7 +174,7 @@ - (void)vungleAdDidFailToLoad:(NSError *)error
// Already invoked an ad load callback.
return;
}

MPLogAdEvent([MPLogEvent adLoadFailedForAdapter:NSStringFromClass(self.class) error:error], [self getPlacementID]);
NSError *loadFailError = nil;
if (error) {
Expand Down
4 changes: 2 additions & 2 deletions Vungle/VungleInstanceMediationSettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

#if __has_include(<MoPub/MoPub.h>)
#import <MoPub/MoPub.h>
#elif __has_include(<MoPubSDKFramework/MoPub.h>)
#import <MoPubSDKFramework/MoPub.h>
#elif __has_include(<MoPubSDK/MoPub.h>)
#import <MoPubSDK/MoPub.h>
#else
#import "MPMediationSettingsProtocol.h"
#endif
Expand Down
4 changes: 2 additions & 2 deletions Vungle/VungleInterstitialCustomEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

#if __has_include(<MoPub/MoPub.h>)
#import <MoPub/MoPub.h>
#elif __has_include(<MoPubSDKFramework/MoPub.h>)
#import <MoPubSDKFramework/MoPub.h>
#elif __has_include(<MoPubSDK/MoPub.h>)
#import <MoPubSDK/MoPub.h>
#else
#import "MPFullscreenAdAdapter.h"
#endif
Expand Down
4 changes: 2 additions & 2 deletions Vungle/VungleRewardedVideoCustomEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

#if __has_include(<MoPub/MoPub.h>)
#import <MoPub/MoPub.h>
#elif __has_include(<MoPubSDKFramework/MoPub.h>)
#import <MoPubSDKFramework/MoPub.h>
#elif __has_include(<MoPubSDK/MoPub.h>)
#import <MoPubSDK/MoPub.h>
#else
#import "MPFullscreenAdAdapter.h"
#endif
Expand Down

0 comments on commit e4f3d7d

Please sign in to comment.