├── .gitignore ├── README.md ├── package.json ├── plugin.xml ├── scripts └── android-install.js ├── src ├── android │ ├── .idea │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ └── workspace.xml │ ├── PayResult.java │ ├── WXPayEntryActivity.java │ ├── Xpay.java │ └── libs │ │ ├── alipaySDK.jar │ │ └── wechatSDK.jar └── ios │ ├── CDVXpay.h │ ├── CDVXpay.m │ └── libs │ ├── 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 │ └── OpenSDK1.7.7 │ ├── README.txt │ ├── WXApi.h │ ├── WXApiObject.h │ ├── WechatAuthSDK.h │ └── libWeChatSDK.a └── www └── cordova-plugin-xpay.js /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/plugin.xml -------------------------------------------------------------------------------- /scripts/android-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/scripts/android-install.js -------------------------------------------------------------------------------- /src/android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/android/.idea/compiler.xml -------------------------------------------------------------------------------- /src/android/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/android/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /src/android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/android/.idea/misc.xml -------------------------------------------------------------------------------- /src/android/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/android/.idea/workspace.xml -------------------------------------------------------------------------------- /src/android/PayResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/android/PayResult.java -------------------------------------------------------------------------------- /src/android/WXPayEntryActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/android/WXPayEntryActivity.java -------------------------------------------------------------------------------- /src/android/Xpay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/android/Xpay.java -------------------------------------------------------------------------------- /src/android/libs/alipaySDK.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/android/libs/alipaySDK.jar -------------------------------------------------------------------------------- /src/android/libs/wechatSDK.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/android/libs/wechatSDK.jar -------------------------------------------------------------------------------- /src/ios/CDVXpay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/CDVXpay.h -------------------------------------------------------------------------------- /src/ios/CDVXpay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/CDVXpay.m -------------------------------------------------------------------------------- /src/ios/libs/AlipaySDK.bundle/bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/AlipaySDK.bundle/bar@2x.png -------------------------------------------------------------------------------- /src/ios/libs/AlipaySDK.bundle/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/AlipaySDK.bundle/refresh@2x.png -------------------------------------------------------------------------------- /src/ios/libs/AlipaySDK.bundle/refresh_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/AlipaySDK.bundle/refresh_click@2x.png -------------------------------------------------------------------------------- /src/ios/libs/AlipaySDK.bundle/shutdown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/AlipaySDK.bundle/shutdown@2x.png -------------------------------------------------------------------------------- /src/ios/libs/AlipaySDK.bundle/shutdown_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/AlipaySDK.bundle/shutdown_click@2x.png -------------------------------------------------------------------------------- /src/ios/libs/AlipaySDK.framework/AlipaySDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/AlipaySDK.framework/AlipaySDK -------------------------------------------------------------------------------- /src/ios/libs/AlipaySDK.framework/Headers/APayAuthInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/AlipaySDK.framework/Headers/APayAuthInfo.h -------------------------------------------------------------------------------- /src/ios/libs/AlipaySDK.framework/Headers/AlipaySDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/AlipaySDK.framework/Headers/AlipaySDK.h -------------------------------------------------------------------------------- /src/ios/libs/AlipaySDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/AlipaySDK.framework/Info.plist -------------------------------------------------------------------------------- /src/ios/libs/AlipaySDK.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/AlipaySDK.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /src/ios/libs/OpenSDK1.7.7/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/OpenSDK1.7.7/README.txt -------------------------------------------------------------------------------- /src/ios/libs/OpenSDK1.7.7/WXApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/OpenSDK1.7.7/WXApi.h -------------------------------------------------------------------------------- /src/ios/libs/OpenSDK1.7.7/WXApiObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/OpenSDK1.7.7/WXApiObject.h -------------------------------------------------------------------------------- /src/ios/libs/OpenSDK1.7.7/WechatAuthSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/OpenSDK1.7.7/WechatAuthSDK.h -------------------------------------------------------------------------------- /src/ios/libs/OpenSDK1.7.7/libWeChatSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/src/ios/libs/OpenSDK1.7.7/libWeChatSDK.a -------------------------------------------------------------------------------- /www/cordova-plugin-xpay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daihere1993/cordova-plugin-xpay/HEAD/www/cordova-plugin-xpay.js --------------------------------------------------------------------------------