├── .gitignore ├── LICENSE ├── LeoPayManager.podspec ├── LeoPayManager ├── LeoPayManager.h └── LeoPayManager.m ├── LeoPayManagerDemo ├── LeoPayManagerDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── LeoPayManagerDemo.xcworkspace │ └── contents.xcworkspacedata ├── LeoPayManagerDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── Alipay_SDK_iOS │ ├── Alipay │ │ ├── AlipaySDK.bundle │ │ │ ├── bar@2x.png │ │ │ ├── refresh@2x.png │ │ │ ├── refresh_click@2x.png │ │ │ ├── shutdown@2x.png │ │ │ └── shutdown_click@2x.png │ │ └── AlipaySDK.framework │ │ │ ├── AlipaySDK │ │ │ ├── Headers │ │ │ ├── APayAuthInfo.h │ │ │ └── AlipaySDK.h │ │ │ ├── Info.plist │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── LICENSE │ └── README.md │ ├── ApplePay_SDK │ ├── ApplePay │ │ ├── LLPaySdk.h │ │ ├── libPaySdkColor.a │ │ └── libRsaCrypto.a │ ├── LICENSE │ └── README.md │ ├── Headers │ ├── Private │ │ ├── ApplePay_SDK │ │ │ └── LLPaySdk.h │ │ ├── UnionPay_SDK_iOS │ │ │ └── UPPaymentControl.h │ │ └── WeChat_SDK_iOS │ │ │ ├── WXApi.h │ │ │ ├── WXApiObject.h │ │ │ └── WechatAuthSDK.h │ └── Public │ │ ├── Alipay_SDK_iOS │ │ └── AlipaySDK │ │ │ ├── APayAuthInfo.h │ │ │ └── AlipaySDK.h │ │ ├── ApplePay_SDK │ │ └── LLPaySdk.h │ │ ├── UnionPay_SDK_iOS │ │ └── UPPaymentControl.h │ │ └── WeChat_SDK_iOS │ │ ├── WXApi.h │ │ ├── WXApiObject.h │ │ └── WechatAuthSDK.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── Target Support Files │ └── Pods-LeoPayManagerDemo │ │ ├── Pods-LeoPayManagerDemo-acknowledgements.markdown │ │ ├── Pods-LeoPayManagerDemo-acknowledgements.plist │ │ ├── Pods-LeoPayManagerDemo-dummy.m │ │ ├── Pods-LeoPayManagerDemo-frameworks.sh │ │ ├── Pods-LeoPayManagerDemo-resources.sh │ │ ├── Pods-LeoPayManagerDemo.debug.xcconfig │ │ └── Pods-LeoPayManagerDemo.release.xcconfig │ ├── UnionPay_SDK_iOS │ ├── LICENSE │ ├── README.md │ └── UnionPay │ │ ├── UPPaymentControl.h │ │ └── libPaymentControl.a │ └── WeChat_SDK_iOS │ ├── LICENSE │ ├── OpenSDK │ ├── WXApi.h │ ├── WXApiObject.h │ ├── WechatAuthSDK.h │ └── libWeChatSDK.a │ └── README.md ├── README.md └── 技术架构.pages /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LICENSE -------------------------------------------------------------------------------- /LeoPayManager.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManager.podspec -------------------------------------------------------------------------------- /LeoPayManager/LeoPayManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManager/LeoPayManager.h -------------------------------------------------------------------------------- /LeoPayManager/LeoPayManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManager/LeoPayManager.m -------------------------------------------------------------------------------- /LeoPayManagerDemo/LeoPayManagerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/LeoPayManagerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LeoPayManagerDemo/LeoPayManagerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/LeoPayManagerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LeoPayManagerDemo/LeoPayManagerDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/LeoPayManagerDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LeoPayManagerDemo/LeoPayManagerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/LeoPayManagerDemo/AppDelegate.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/LeoPayManagerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/LeoPayManagerDemo/AppDelegate.m -------------------------------------------------------------------------------- /LeoPayManagerDemo/LeoPayManagerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/LeoPayManagerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LeoPayManagerDemo/LeoPayManagerDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/LeoPayManagerDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LeoPayManagerDemo/LeoPayManagerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/LeoPayManagerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LeoPayManagerDemo/LeoPayManagerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/LeoPayManagerDemo/Info.plist -------------------------------------------------------------------------------- /LeoPayManagerDemo/LeoPayManagerDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/LeoPayManagerDemo/ViewController.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/LeoPayManagerDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/LeoPayManagerDemo/ViewController.m -------------------------------------------------------------------------------- /LeoPayManagerDemo/LeoPayManagerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/LeoPayManagerDemo/main.m -------------------------------------------------------------------------------- /LeoPayManagerDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Podfile -------------------------------------------------------------------------------- /LeoPayManagerDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Podfile.lock -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.bundle/bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.bundle/bar@2x.png -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.bundle/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.bundle/refresh@2x.png -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.bundle/refresh_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.bundle/refresh_click@2x.png -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.bundle/shutdown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.bundle/shutdown@2x.png -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.bundle/shutdown_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.bundle/shutdown_click@2x.png -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.framework/AlipaySDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.framework/AlipaySDK -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.framework/Headers/APayAuthInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.framework/Headers/APayAuthInfo.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.framework/Headers/AlipaySDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.framework/Headers/AlipaySDK.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.framework/Info.plist -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Alipay_SDK_iOS/Alipay/AlipaySDK.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Alipay_SDK_iOS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Alipay_SDK_iOS/LICENSE -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Alipay_SDK_iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Alipay_SDK_iOS/README.md -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/ApplePay_SDK/ApplePay/LLPaySdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/ApplePay_SDK/ApplePay/LLPaySdk.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/ApplePay_SDK/ApplePay/libPaySdkColor.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/ApplePay_SDK/ApplePay/libPaySdkColor.a -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/ApplePay_SDK/ApplePay/libRsaCrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/ApplePay_SDK/ApplePay/libRsaCrypto.a -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/ApplePay_SDK/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/ApplePay_SDK/LICENSE -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/ApplePay_SDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/ApplePay_SDK/README.md -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Headers/Private/ApplePay_SDK/LLPaySdk.h: -------------------------------------------------------------------------------- 1 | ../../../ApplePay_SDK/ApplePay/LLPaySdk.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Headers/Private/UnionPay_SDK_iOS/UPPaymentControl.h: -------------------------------------------------------------------------------- 1 | ../../../UnionPay_SDK_iOS/UnionPay/UPPaymentControl.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Headers/Private/WeChat_SDK_iOS/WXApi.h: -------------------------------------------------------------------------------- 1 | ../../../WeChat_SDK_iOS/OpenSDK/WXApi.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Headers/Private/WeChat_SDK_iOS/WXApiObject.h: -------------------------------------------------------------------------------- 1 | ../../../WeChat_SDK_iOS/OpenSDK/WXApiObject.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Headers/Private/WeChat_SDK_iOS/WechatAuthSDK.h: -------------------------------------------------------------------------------- 1 | ../../../WeChat_SDK_iOS/OpenSDK/WechatAuthSDK.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Headers/Public/Alipay_SDK_iOS/AlipaySDK/APayAuthInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../Alipay_SDK_iOS/Alipay/AlipaySDK.framework/Headers/APayAuthInfo.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Headers/Public/Alipay_SDK_iOS/AlipaySDK/AlipaySDK.h: -------------------------------------------------------------------------------- 1 | ../../../../Alipay_SDK_iOS/Alipay/AlipaySDK.framework/Headers/AlipaySDK.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Headers/Public/ApplePay_SDK/LLPaySdk.h: -------------------------------------------------------------------------------- 1 | ../../../ApplePay_SDK/ApplePay/LLPaySdk.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Headers/Public/UnionPay_SDK_iOS/UPPaymentControl.h: -------------------------------------------------------------------------------- 1 | ../../../UnionPay_SDK_iOS/UnionPay/UPPaymentControl.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Headers/Public/WeChat_SDK_iOS/WXApi.h: -------------------------------------------------------------------------------- 1 | ../../../WeChat_SDK_iOS/OpenSDK/WXApi.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Headers/Public/WeChat_SDK_iOS/WXApiObject.h: -------------------------------------------------------------------------------- 1 | ../../../WeChat_SDK_iOS/OpenSDK/WXApiObject.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Headers/Public/WeChat_SDK_iOS/WechatAuthSDK.h: -------------------------------------------------------------------------------- 1 | ../../../WeChat_SDK_iOS/OpenSDK/WechatAuthSDK.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo-acknowledgements.plist -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo-dummy.m -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo-frameworks.sh -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo-resources.sh -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo.debug.xcconfig -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/Target Support Files/Pods-LeoPayManagerDemo/Pods-LeoPayManagerDemo.release.xcconfig -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/UnionPay_SDK_iOS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/UnionPay_SDK_iOS/LICENSE -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/UnionPay_SDK_iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/UnionPay_SDK_iOS/README.md -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/UnionPay_SDK_iOS/UnionPay/UPPaymentControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/UnionPay_SDK_iOS/UnionPay/UPPaymentControl.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/UnionPay_SDK_iOS/UnionPay/libPaymentControl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/UnionPay_SDK_iOS/UnionPay/libPaymentControl.a -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/WeChat_SDK_iOS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/WeChat_SDK_iOS/LICENSE -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/WeChat_SDK_iOS/OpenSDK/WXApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/WeChat_SDK_iOS/OpenSDK/WXApi.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/WeChat_SDK_iOS/OpenSDK/WXApiObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/WeChat_SDK_iOS/OpenSDK/WXApiObject.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/WeChat_SDK_iOS/OpenSDK/WechatAuthSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/WeChat_SDK_iOS/OpenSDK/WechatAuthSDK.h -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/WeChat_SDK_iOS/OpenSDK/libWeChatSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/WeChat_SDK_iOS/OpenSDK/libWeChatSDK.a -------------------------------------------------------------------------------- /LeoPayManagerDemo/Pods/WeChat_SDK_iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/LeoPayManagerDemo/Pods/WeChat_SDK_iOS/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/README.md -------------------------------------------------------------------------------- /技术架构.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoChensj/LeoPayManager/HEAD/技术架构.pages --------------------------------------------------------------------------------