Skip to content

Commit

Permalink
BidMachine/1.9.5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins committed Oct 14, 2022
1 parent 8925495 commit 54841d4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
6 changes: 3 additions & 3 deletions BidMachine/AppLovinMediationBidMachineAdapter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ s.authors =
'AppLovin Corporation' => '[email protected]'
}
s.name = 'AppLovinMediationBidMachineAdapter'
s.version = '1.9.4.8.0'
s.version = '1.9.5.0.0'
s.platform = :ios, '10.0'
s.summary = 'BidMachine 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 @@ -29,8 +29,8 @@ s.source =

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

s.dependency 'BidMachine', '= 1.9.4.8'
s.dependency 'BDMIABAdapter', '= 1.9.4.0'
s.dependency 'BidMachine', '= 1.9.5.0'
s.dependency 'BDMIABAdapter', '= 1.9.5.0'
s.dependency 'AppLovinSDK'
s.swift_version = '5.0'

Expand Down
12 changes: 11 additions & 1 deletion BidMachine/BidMachineAdapter/ALBidMachineMediationAdapter.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#import "ALBidMachineMediationAdapter.h"
#import <BidMachine/BidMachine.h>

#define ADAPTER_VERSION @"1.9.4.8.0"
#define ADAPTER_VERSION @"1.9.5.0.0"

@interface ALBidMachineInterstitialDelegate : NSObject<BDMInterstitialDelegate>
@property (nonatomic, weak) ALBidMachineMediationAdapter *parentAdapter;
Expand Down Expand Up @@ -355,6 +355,16 @@ - (void)updateSettings:(id<MAAdapterParameters>)parameters
{
BDMSdk.sharedSdk.restrictions.subjectToGDPR = NO;
}

NSNumber *isDoNotSell = [parameters isDoNotSell];
if ( isDoNotSell )
{
BDMSdk.sharedSdk.restrictions.USPrivacyString = isDoNotSell.boolValue ? @"1YY-" : @"1YN-";
}
else
{
BDMSdk.sharedSdk.restrictions.USPrivacyString = @"1---";
}
}

- (void)loadImageForURLString:(NSString *)urlString group:(dispatch_group_t)group successHandler:(void (^)(UIImage *image))successHandler;
Expand Down
4 changes: 4 additions & 0 deletions BidMachine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.9.5.0.0
* Certified with BidMachine SDK 1.9.5.0.
* Add CCPA support.

## 1.9.4.8.0
* Certified with BidMachine SDK 1.9.4.8.

Expand Down

0 comments on commit 54841d4

Please sign in to comment.