Skip to content

Commit

Permalink
Tapjoy/13.1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins committed Jul 14, 2023
1 parent 9810245 commit 1f11198
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
10 changes: 6 additions & 4 deletions Tapjoy/AppLovinMediationTapjoyAdapter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |s|

s.authors = 'AppLovin Corporation'
s.name = 'AppLovinMediationTapjoyAdapter'
s.version = '13.1.1.0'
s.version = '13.1.2.0'
s.platform = :ios, '10.0'
s.summary = 'Tapjoy 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 @@ -20,13 +20,15 @@ LICENSE

s.source =
{
:http => "https://artifacts.applovin.com/ios/com/applovin/mediation/tapjoy-adapter/#{s.name}-#{s.version}.zip",
:type => 'zip'
:http => "#{s.version}" =~ /beta/ ?
"https://artifacts.applovin.com/ios/com/applovin/mediation/beta/tapjoy-adapter/#{s.name}-#{s.version}.zip" :
"https://artifacts.applovin.com/ios/com/applovin/mediation/tapjoy-adapter/#{s.name}-#{s.version}.zip",
:type => 'zip'
}

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

s.dependency 'TapjoySDK', '= 13.1.1'
s.dependency 'TapjoySDK', '= 13.1.2'
s.dependency 'AppLovinSDK'

s.description = <<-DESC
Expand Down
3 changes: 3 additions & 0 deletions Tapjoy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 13.1.2.0
* Certified with Tapjoy SDK 13.1.2.

## 13.1.1.0
* Certified with Tapjoy SDK 13.1.1.

Expand Down
2 changes: 1 addition & 1 deletion Tapjoy/TapjoyAdapter/ALTapjoyMediationAdapter.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#import "ALTapjoyMediationAdapter.h"
#import <Tapjoy/Tapjoy.h>

#define ADAPTER_VERSION @"13.1.1.0"
#define ADAPTER_VERSION @"13.1.2.0"

@interface ALTapjoyMediationAdapterInterstitialDelegate : NSObject <TJPlacementDelegate, TJPlacementVideoDelegate>
@property (nonatomic, weak) ALTapjoyMediationAdapter *parentAdapter;
Expand Down

0 comments on commit 1f11198

Please sign in to comment.