Skip to content

Commit

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

* 12.7.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 Tapjoy/TapjoyAdapterConfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,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 "MPBaseAdapterConfiguration.h"
#endif
Expand Down
2 changes: 1 addition & 1 deletion Tapjoy/TapjoyAdapterConfiguration.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 @"12.7.1.1";
return @"12.7.1.2";
}

- (NSString *)biddingToken {
Expand Down
4 changes: 2 additions & 2 deletions Tapjoy/TapjoyGlobalMediationSettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,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 Tapjoy/TapjoyInterstitialCustomEvent.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,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 Tapjoy/TapjoyRewardedVideoCustomEvent.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,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 7c6f753

Please sign in to comment.