Skip to content

Commit

Permalink
.podspec 更新
Browse files Browse the repository at this point in the history
  • Loading branch information
rey zhang committed Jan 30, 2021
1 parent 2e63bf2 commit 5becbf2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
13 changes: 8 additions & 5 deletions RZPayManager.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,21 @@ Pod::Spec.new do |s|

########## subspec
s.subspec 'Category' do |category|
category.source_files = 'RZPayManager/Classes/Category/*'
category.source_files = 'RZPayManager/Classes/Category/**/*'
category.frameworks = 'UIKit','Foundation'
end

s.subspec 'Core' do |core|
core.source_files = 'RZPayManager/Classes/Core/*'

core.source_files = 'RZPayManager/Classes/Core/**/*'
core.frameworks = 'UIKit','Foundation'

core.dependency 'RZPayManager/Category'
core.dependency 'RZPayManager/UPPay'
end

s.subspec 'UPPay' do |uppay|
uppay.source_files = 'RZPayManager/Classes/UPPay/*'
uppay.source_files = 'RZPayManager/Classes/UPPay/*.h'
uppay.public_header_files = "RZPayManager/Classes/UPPay/*.h"
end

end
1 change: 1 addition & 0 deletions RZPayManager/Classes/Core/RZPayManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#import "UIViewController+Extension.h"
#import <WXPayService.h>
#import <AlipaySDK/AlipaySDK.h>
#import <UPPaymentControl.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion RZPayManager/Classes/Core/RZPayManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#import "RZPayManager.h"
#import "WXPayService.h"
#import <UPPaymentControl.h>


NSString *ALIPAY_CALLBACK_NOTIFICATION = @"Notification_Alipay_CallBack";
NSString *UPPAY_CALLBACK_NOTIFICATION = @"Notification_UPPay_CallBack";
Expand Down

0 comments on commit 5becbf2

Please sign in to comment.