Skip to content

Commit

Permalink
Verve/2.21.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins committed Mar 29, 2024
1 parent 33c78e9 commit cf3ec88
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Verve/AppLovinMediationVerveAdapter.podspec
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |s|

s.authors = 'AppLovin Corporation'
s.name = 'AppLovinMediationVerveAdapter'
s.version = '2.21.1.0'
s.version = '2.21.2.0'
s.platform = :ios, '11.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"
Expand All @@ -26,7 +26,7 @@ s.source =

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

s.dependency 'HyBid', '= 2.21.1'
s.dependency 'HyBid', '= 2.21.2'
s.dependency 'AppLovinSDK'
s.swift_version = '5.0'

Expand Down
4 changes: 4 additions & 0 deletions Verve/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## 2.21.2.0
* Certified with Verve SDK 2.21.2.
* Remove deprecated callbacks `didStartRewardedAdVideo` and `didCompleteRewardedAdVideo`.

## 2.21.1.0
* Certified with Verve SDK 2.21.1.
* Update mute setting API.
Expand Down
4 changes: 1 addition & 3 deletions Verve/VerveAdapter/ALVerveMediationAdapter.m
Expand Up @@ -10,7 +10,7 @@
#import <HyBid.h>
#import <HyBid-Generated-Interace-Swift.h>

#define ADAPTER_VERSION @"2.21.1.0"
#define ADAPTER_VERSION @"2.21.2.0"

@interface ALVerveMediationAdapterInterstitialAdDelegate : NSObject <HyBidInterstitialAdDelegate>
@property (nonatomic, weak) ALVerveMediationAdapter *parentAdapter;
Expand Down Expand Up @@ -504,7 +504,6 @@ - (void)rewardedDidTrackImpression
{
[self.parentAdapter log: @"Rewarded ad did track impression"];
[self.delegate didDisplayRewardedAd];
[self.delegate didStartRewardedAdVideo];
}

- (void)rewardedDidTrackClick
Expand All @@ -522,7 +521,6 @@ - (void)onReward
- (void)rewardedDidDismiss
{
[self.parentAdapter log: @"Rewarded ad did disappear"];
[self.delegate didCompleteRewardedAdVideo];

if ( [self hasGrantedReward] || [self.parentAdapter shouldAlwaysRewardUser] )
{
Expand Down

0 comments on commit cf3ec88

Please sign in to comment.