| | |
| | | Pod::Spec.new do |s| |
| | | |
| | | s.name = 'WAApImpl' |
| | | s.version = '3.7.1' |
| | | s.version = '3.8.0' |
| | | s.summary = 'WAApImpl framework in production environment.' |
| | | s.license = 'MIT' |
| | | s.author = { "Wuyx" => "wuyixin_gh@gamehollywood.com" } |
| | |
| | | s.vendored_frameworks = 'frameworks/*.framework' |
| | | s.resources = ['config/*.xml'] |
| | | s.requires_arc = true |
| | | s.dependency 'WASdkIntf', '~> 3.7.1' #此处添加私有库依赖 |
| | | s.dependency 'WASdkImpl', '~> 3.7.1' |
| | | s.dependency 'WASdkIntf', '~> 3.8.0' #此处添加私有库依赖 |
| | | s.dependency 'WASdkImpl', '~> 3.8.0' |
| | | end |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <config> |
| | | <version val="AP3.7.1"/> |
| | | <version val="AP3.8.0"/> |
| | | <comps> |
| | | <!-- 用户模块 --> |
| | | <comp module="USR" plaf="APPLE" mandatory="YES" value="WAAPUser" desc="APPLE用户账户"/> |
| | |
| | | * @param skPaymentTransaction |
| | | * @param pStatus |
| | | */ |
| | | -(void)postPayNotifyServer:(SKPaymentTransaction*) skPaymentTransaction withStatus:(int)pStatus isRetry:(BOOL)isRetry; |
| | | -(void)postPayNotifyServer:(SKPaymentTransaction*) skPaymentTransaction withStatus:(NSInteger)pStatus isRetry:(BOOL)isRetry; |
| | | |
| | | @end |
| | |
| | | #import <StoreKit/StoreKit.h> |
| | | @interface WAAPPaymentTransaction : NSObject<NSCoding,NSCopying> |
| | | @property(strong,nonatomic)SKPaymentTransaction* skPaymentTransaction; |
| | | @property(nonatomic)int status; |
| | | @property(nonatomic)NSInteger status; |
| | | @end |
| | |
| | | * @param skPaymentTransaction |
| | | * @param status |
| | | */ |
| | | +(void)saveCacheWithPaymentTransaction:(SKPaymentTransaction*)skPaymentTransaction andStatus:(int)status; |
| | | +(void)saveCacheWithPaymentTransaction:(SKPaymentTransaction*)skPaymentTransaction andStatus:(NSInteger)status; |
| | | |
| | | |
| | | /** |
| | |
| | | #import <WAApImpl/WAAPUser.h> |
| | | #import <WAApImpl/WAAPLogin.h> |
| | | |
| | | //time:2018/11/06 09:12 ver:3.7.1 |
| | | //time:2019/01/21 19:18 ver:3.8.0 |