forked from jpush/jmessage-phonegap-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
175 lines (150 loc) · 8.41 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="jmessage-phonegap-plugin"
version="4.1.0">
<name>JMessage</name>
<description>集成极光 IM 和推送功能</description>
<author>JPush</author>
<keywords>JMessage, JPush</keywords>
<license>Apache 2.0 License</license>
<preference name="APP_KEY" />
<preference name="CHANNEL" default="developer-default" />
<!-- dependencies -->
<dependency id="cordova-plugin-device" />
<dependency id="cordova-plugin-jcore"/>
<js-module src="www/JMessagePlugin.js" name="JMessagePlugin">
<clobbers target="JMessage"/>
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="JMessagePlugin">
<param name="ios-package" value="JMessagePlugin"/>
</feature>
</config-file>
<header-file src="src/ios/Plugins/JMessageDefine.h"/>
<header-file src="src/ios/Plugins/JMessagePlugin.h"/>
<source-file src="src/ios/Plugins/JMessagePlugin.m"/>
<header-file src="src/ios/Plugins/JMessageHelper.h"/>
<source-file src="src/ios/Plugins/JMessageHelper.m"/>
<header-file src="src/ios/Plugins/AppDelegate+JMessage.h"/>
<source-file src="src/ios/Plugins/AppDelegate+JMessage.m"/>
<resource-file src="src/ios/JMessageConfig.plist" />
<framework src="src/ios/lib/JMessage.framework" custom="true" />
<framework src="CoreTelephony.framework" weak="true" />
<framework src="CoreAudio.framework" weak="true" />
<framework src="CoreGraphics.framework" weak="true" />
<framework src="SystemConfiguration.framework" weak="true" />
<framework src="CFNetwork.framework" weak="true" />
<framework src="Security.framework" weak="true" />
<framework src="AudioToolbox.framework" weak="true" />
<framework src="MobileCoreServices.framework" weak="true" />
<framework src="libz.tbd"/>
<framework src="libsqlite3.0.tbd"/>
<framework src="libresolv.tbd"/>
<config-file target="*JMessageConfig.plist" parent="Appkey">
<string>$APP_KEY</string>
</config-file>
</platform>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="JMessagePlugin">
<param name="android-package" value="cn.jiguang.cordova.im.JMessagePlugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest" mode="merge">
<!-- Required 一些系统要求的权限,如访问网络等-->
<uses-permission android:name="android.permission.RECEIVE_USER_PRESENT"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="$PACKAGE_NAME.permission.JPUSH_MESSAGE"/>
<permission
android:name="$PACKAGE_NAME.permission.JPUSH_MESSAGE"
android:protectionLevel="signature"/>
<!-- JMessage Demo required for record audio-->
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application" mode="merge">
<!-- Required Push SDK核心功能-->
<service
android:name="cn.jpush.android.service.PushService"
android:enabled="true"
android:exported="false"
android:process=":remote">
<intent-filter>
<action android:name="cn.jpush.android.intent.REGISTER" />
<action android:name="cn.jpush.android.intent.REPORT" />
<action android:name="cn.jpush.android.intent.PushService" />
<action android:name="cn.jpush.android.intent.PUSH_TIME" />
</intent-filter>
</service>
<!-- Required Push SDK核心功能-->
<receiver
android:name="cn.jpush.android.service.PushReceiver"
android:enabled="true">
<intent-filter android:priority="1000">
<!--Required 显示通知栏 -->
<action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" />
<category android:name="$PACKAGE_NAME" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.USER_PRESENT" />
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
<!-- Optional -->
<intent-filter>
<action android:name="android.intent.action.PACKAGE_ADDED" />
<action android:name="android.intent.action.PACKAGE_REMOVED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
<!-- Required Push SDK核心功能 -->
<receiver android:name="cn.jpush.android.service.AlarmReceiver"/>
<!-- IM Required IM SDK核心功能-->
<receiver
android:name="cn.jpush.im.android.helpers.IMReceiver"
android:enabled="true"
android:exported="false">
<intent-filter android:priority="1000">
<action android:name="cn.jpush.im.android.action.IM_RESPONSE" />
<action android:name="cn.jpush.im.android.action.NOTIFICATION_CLICK_PROXY" />
<category android:name="$PACKAGE_NAME" />
</intent-filter>
</receiver>
<!-- since 3.0.9 Required SDK 核心功能-->
<provider
android:authorities="$PACKAGE_NAME.DataProvider"
android:name="cn.jpush.android.service.DataProvider"
android:exported="true" />
<!-- Required since JMessage 2.7.0 SDK 核心功能-->
<provider
android:name="cn.jpush.im.android.helpers.ipc.IMProvider"
android:authorities="$PACKAGE_NAME.IMProvider"
android:exported="false" />
<meta-data android:name="JPUSH_APPKEY" android:value="$APP_KEY"/>
<meta-data android:name="JPUSH_CHANNEL" android:value="$CHANNEL"/>
</config-file>
<lib-file src="src/android/libs/jmessage-sdk-android-2.7.1.jar" />
<source-file src="src/android/JMessagePlugin.java" target-dir="src/cn/jiguang/cordova/im"/>
<source-file src="src/android/JMessageUtils.java" target-dir="src/cn/jiguang/cordova/im"/>
<source-file src="src/android/JsonUtils.java" target-dir="src/cn/jiguang/cordova/im"/>
<source-file src="src/android/ChatRoomHandler.java" target-dir="src/cn/jiguang/cordova/im"/>
<source-file src="src/android/EventUtils.java" target-dir="src/cn/jiguang/cordova/im"/>
<source-file src="src/android/Logger.java" target-dir="src/cn/jiguang/cordova/im"/>
<framework src="com.google.code.gson:gson:2.8.5" />
</platform>
</plugin>