| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?xml version='1.0' encoding='utf-8'?>
- <plugin id="cordova-plugin-alipay-v2" version="2.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0"
- xmlns:android="http://schemas.android.com/apk/res/android">
- <name>alipay</name>
- <preference name="APP_ID"/>
- <js-module name="alipay" src="www/alipay.js">
- <clobbers target="cordova.plugins.alipay"/>
- </js-module>
- <platform name="android">
- <config-file parent="/*" target="res/xml/config.xml">
- <feature name="alipay">
- <param name="android-package" value="cn.hhjjj.alipay.alipay"/>
- </feature>
- </config-file>
- <config-file parent="/*" target="AndroidManifest.xml">
- <uses-permission android:name="android.permission.INTERNET"/>
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
- <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
- </config-file>
- <source-file src="src/android/alipay.java" target-dir="src/cn/hhjjj/alipay"/>
- <source-file src="src/android/PayResult.java" target-dir="src/cn/hhjjj/alipay"/>
- <lib-file src="src/android/lib/alipaySdk-15.6.5-20190718211148.aar" />
- <framework src="src/android/alipay.gradle" custom="true" type="gradleReference"/>
- </platform>
- <platform name="ios">
- <config-file parent="/*" target="config.xml">
- <feature name="alipay">
- <param name="ios-package" value="alipay"/>
- </feature>
- <preference name="alipayid" value="$APP_ID"/>
- </config-file>
- <config-file target="*-Info.plist" parent="CFBundleURLTypes">
- <array>
- <dict>
- <key>CFBundleURLName</key>
- <string>alipay</string>
- <key>CFBundleURLSchemes</key>
- <array>
- <string>ali$APP_ID</string>
- </array>
- </dict>
- </array>
- </config-file>
- <framework src="CoreTelephony.framework" weak="true"/>
- <framework src="SystemConfiguration.framework" weak="true"/>
- <framework src="CoreMotion.framework" weak="true"/>
- <framework src="CFNetwork.framework" weak="true"/>
- <framework src="libc++.tbd" weak="true"/>
- <framework src="libz.tbd" weak="true"/>
- <framework src="CoreText.framework" weak="true"/>
- <framework src="CoreGraphics.framework" weak="true"/>
- <framework src="UIKit.framework" weak="true"/>
- <framework src="QuartzCore.framework" weak="true"/>
- <framework src="Foundation.framework" weak="true"/>
- <framework src="src/ios/lib/AlipaySDK.framework" custom="true"/>
- <resource-file src="src/ios/lib/AlipaySDK.bundle"/>
- <source-file src="src/ios/alipay.m"/>
- </platform>
- </plugin>
|