Skip to content

Commit

Permalink
Verve/2.16.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins committed Nov 4, 2022
1 parent 5367ae3 commit 6cd5bcf
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Verve/AppLovinMediationVerveAdapter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ s.authors =
'AppLovin Corporation' => '[email protected]'
}
s.name = 'AppLovinMediationVerveAdapter'
s.version = '2.16.0.0'
s.platform = :ios, '9.0'
s.version = '2.16.1.0'
s.platform = :ios, '10.0'
s.summary = 'Verve adapter used for mediation with the AppLovin MAX SDK'
s.homepage = "https://github.com/CocoaPods/Specs/search?o=desc&q=#{s.name}&s=indexed"
s.license =
Expand All @@ -29,7 +29,7 @@ s.source =

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

s.dependency 'HyBid', '= 2.16.0'
s.dependency 'HyBid', '= 2.16.1'
s.dependency 'AppLovinSDK'
s.swift_version = '5.0'

Expand Down
4 changes: 4 additions & 0 deletions Verve/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.16.1.0
* Certified with Verve SDK 2.16.1.
* Add additional details for ad display failures.

## 2.16.0.0
* Certified with Verve SDK 2.16.0.

Expand Down
4 changes: 2 additions & 2 deletions Verve/VerveAdapter.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LIBRARY_SEARCH_PATHS = "";
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -290,7 +290,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LIBRARY_SEARCH_PATHS = "";
MTL_ENABLE_DEBUG_INFO = NO;
ONLY_ACTIVE_ARCH = NO;
Expand Down
12 changes: 9 additions & 3 deletions Verve/VerveAdapter/ALVerveMediationAdapter.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#import <HyBid.h>
#import "HyBid-Swift.h"

#define ADAPTER_VERSION @"2.16.0.0"
#define ADAPTER_VERSION @"2.16.1.0"

@interface ALVerveMediationAdapterInterstitialAdDelegate : NSObject<HyBidInterstitialAdDelegate>
@property (nonatomic, weak) ALVerveMediationAdapter *parentAdapter;
Expand Down Expand Up @@ -179,7 +179,10 @@ - (void)showInterstitialAdForParameters:(id<MAAdapterResponseParameters>)paramet
else
{
[self log: @"Interstitial ad not ready"];
[delegate didFailToDisplayInterstitialAdWithError: [MAAdapterError errorWithCode: -4205 errorString: @"Ad Display Failed"]];
[delegate didFailToDisplayInterstitialAdWithError: [MAAdapterError errorWithCode: -4205
errorString: @"Ad Display Failed"
mediatedNetworkErrorCode: 0
mediatedNetworkErrorMessage: @"Interstitial ad not ready"]];
}
}

Expand Down Expand Up @@ -230,7 +233,10 @@ - (void)showRewardedAdForParameters:(id<MAAdapterResponseParameters>)parameters
else
{
[self log: @"Rewarded ad not ready"];
[delegate didFailToDisplayRewardedAdWithError: [MAAdapterError errorWithCode: -4205 errorString: @"Ad Display Failed"]];
[delegate didFailToDisplayRewardedAdWithError: [MAAdapterError errorWithCode: -4205
errorString: @"Ad Display Failed"
mediatedNetworkErrorCode: 0
mediatedNetworkErrorMessage: @"Rewarded ad not ready"]];
}
}

Expand Down

0 comments on commit 6cd5bcf

Please sign in to comment.