diff --git a/Verve/AppLovinMediationVerveAdapter.podspec b/Verve/AppLovinMediationVerveAdapter.podspec index acfdaa86ac..b6c7dfb99d 100644 --- a/Verve/AppLovinMediationVerveAdapter.podspec +++ b/Verve/AppLovinMediationVerveAdapter.podspec @@ -5,8 +5,8 @@ s.authors = 'AppLovin Corporation' => 'devsupport@applovin.com' } 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 = @@ -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' diff --git a/Verve/CHANGELOG.md b/Verve/CHANGELOG.md index 2b0c1c5224..09f82e91d8 100644 --- a/Verve/CHANGELOG.md +++ b/Verve/CHANGELOG.md @@ -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. diff --git a/Verve/VerveAdapter.xcodeproj/project.pbxproj b/Verve/VerveAdapter.xcodeproj/project.pbxproj index b8cd5587f3..ccf7127397 100644 --- a/Verve/VerveAdapter.xcodeproj/project.pbxproj +++ b/Verve/VerveAdapter.xcodeproj/project.pbxproj @@ -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; @@ -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; diff --git a/Verve/VerveAdapter/ALVerveMediationAdapter.m b/Verve/VerveAdapter/ALVerveMediationAdapter.m index c39d73cb28..2c88e1c8ca 100644 --- a/Verve/VerveAdapter/ALVerveMediationAdapter.m +++ b/Verve/VerveAdapter/ALVerveMediationAdapter.m @@ -10,7 +10,7 @@ #import #import "HyBid-Swift.h" -#define ADAPTER_VERSION @"2.16.0.0" +#define ADAPTER_VERSION @"2.16.1.0" @interface ALVerveMediationAdapterInterstitialAdDelegate : NSObject @property (nonatomic, weak) ALVerveMediationAdapter *parentAdapter; @@ -179,7 +179,10 @@ - (void)showInterstitialAdForParameters:(id)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"]]; } } @@ -230,7 +233,10 @@ - (void)showRewardedAdForParameters:(id)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"]]; } }