Skip to content

Commit

Permalink
VerizonAds/1.14.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
prod-applovin-deploy committed Feb 10, 2022
1 parent c794463 commit 6e568d4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions VerizonAds/AppLovinMediationVerizonAdsAdapter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ s.authors =
'AppLovin Corporation' => '[email protected]'
}
s.name = 'AppLovinMediationVerizonAdsAdapter'
s.version = '1.14.2.0'
s.version = '1.14.2.1'
s.platform = :ios, '9.0'
s.summary = 'Verizon Ads adapter used for mediation with the AppLovin MAX SDK'
s.homepage = 'https://github.com/CocoaPods/Specs/search?o=desc&q=AppLovinMediationVerizonAdsAdapter&s=indexed'
s.homepage = "https://github.com/CocoaPods/Specs/search?o=desc&q=#{s.name}&s=indexed"
s.license =
{
:type => 'Commercial License',
Expand All @@ -23,11 +23,11 @@ LICENSE

s.source =
{
:http => 'https://artifacts.applovin.com/ios/com/applovin/mediation/verizonads-adapter/AppLovinMediationVerizonAdsAdapter-1.14.2.0.zip',
:http => "https://artifacts.applovin.com/ios/com/applovin/mediation/verizonads-adapter/#{s.name}-#{s.version}.zip",
:type => 'zip'
}

s.vendored_frameworks = 'AppLovinMediationVerizonAdsAdapter-1.14.2.0/AppLovinMediationVerizonAdsAdapter.framework'
s.vendored_frameworks = "#{s.name}-#{s.version}/#{s.name}.framework"

s.dependency 'Verizon-Ads-StandardEdition', '= 1.14.2'
s.dependency 'AppLovinSDK'
Expand Down
3 changes: 2 additions & 1 deletion VerizonAds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## x.x.x.x
## 1.14.2.1
* Use `[[VASAds sharedInstance] biddingTokenTrimmedToSize: 4000]` for signal collection.
* Update open source versions to allow compilation with AppLovin SDK v11.0.0+.

## 1.14.2.0
Expand Down
4 changes: 2 additions & 2 deletions VerizonAds/VerizonAdsAdapter/ALVerizonAdsMediationAdapter.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#import <VerizonAdsInterstitialPlacement/VerizonAdsInterstitialPlacement.h>
#import <VerizonAdsInlinePlacement/VerizonAdsInlinePlacement.h>

#define ADAPTER_VERSION @"1.14.2.0"
#define ADAPTER_VERSION @"1.14.2.1"

/**
* Dedicated delegate object for Verizon Ads interstitial ads.
Expand Down Expand Up @@ -222,7 +222,7 @@ - (void)collectSignalWithParameters:(id<MASignalCollectionParameters>)parameters
{
[self log: @"Collecting signal..."];

NSString *token = [[VASAds sharedInstance] biddingToken];
NSString *token = [[VASAds sharedInstance] biddingTokenTrimmedToSize: 4000];
if ( !token )
{
NSString *errorMessage = @"VerizonAds SDK not initialized; failed to return a bid.";
Expand Down

0 comments on commit 6e568d4

Please sign in to comment.