Skip to content

Commit 73bdf21

Browse files
author
Librelio Dev
committed
Update DFP SDK to 7.1 Fixed #149
1 parent 0e81cca commit 73bdf21

32 files changed

Lines changed: 8 additions & 3 deletions

Classes/WAPaymentTransactionObserver.m

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ - (void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)tran
1919
NSString * productId = transaction.payment.productIdentifier;
2020
NSString *shortID = [productId librelioProductIDForAppStoreProductID];
2121
NSString *tempKey = [NSString stringWithFormat:@"%@-receipt",shortID];
22-
switch (transaction.transactionState)
22+
NSURL *receiptURL = [[NSBundle mainBundle] appStoreReceiptURL];
23+
NSData *receipt = [NSData dataWithContentsOfURL:receiptURL];
24+
//SLog(@"newjson: %@",[self encode:(uint8_t *)receipt.bytes length:receipt.length]);
25+
26+
switch (transaction.transactionState)
2327
{
2428
case SKPaymentTransactionStatePurchased:{
2529
//Store the receipt

GoogleMobileAds.framework/Modules/module.modulemap

100755100644
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ framework module GoogleMobileAds {
88
link framework "AudioToolbox"
99
link framework "AVFoundation"
1010
link framework "CoreGraphics"
11+
link framework "CoreMedia"
1112
link framework "CoreTelephony"
1213
link framework "EventKit"
1314
link framework "EventKitUI"

GoogleMobileAds.framework/Versions/A/GoogleMobileAds

100755100644
1.05 MB
Binary file not shown.

GoogleMobileAds.framework/Versions/A/Headers/DFPBannerView.h

100755100644
File mode changed.

GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedAd.h

100755100644
File mode changed.

GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedBannerViewDelegate.h

100755100644
File mode changed.

GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedInterstitialDelegate.h

100755100644
File mode changed.

GoogleMobileAds.framework/Versions/A/Headers/DFPInterstitial.h

100755100644
File mode changed.

GoogleMobileAds.framework/Versions/A/Headers/DFPRequest.h

100755100644
File mode changed.

GoogleMobileAds.framework/Versions/A/Headers/GADAdNetworkExtras.h

100755100644
File mode changed.

0 commit comments

Comments
 (0)