forked from hhjjj1010/cordova-plugin-alipay-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
64 lines (59 loc) · 2.82 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?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.8.00.201112210139.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>