Skip to content

Commit fa4f3ac

Browse files
authored
Merge pull request #397 from jpush/dev
Dev
2 parents b7d4ba5 + 3ad9a41 commit fa4f3ac

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jpush-phonegap-plugin",
3-
"version": "3.6.2",
3+
"version": "3.6.3",
44
"description": "JPush for cordova plugin",
55
"cordova": {
66
"id": "jpush-phonegap-plugin",

plugin.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="jpush-phonegap-plugin"
5-
version="3.6.2">
5+
version="3.6.3">
66

77
<name>JPush</name>
88
<description>JPush for cordova plugin</description>
@@ -190,7 +190,9 @@
190190
<!-- Required SDK核心功能-->
191191
<receiver android:name="cn.jpush.android.service.AlarmReceiver" />
192192

193-
<receiver android:name="cn.jiguang.cordova.push.JPushEventReceiver">
193+
<receiver android:name="cn.jiguang.cordova.push.JPushEventReceiver"
194+
android:enabled="true"
195+
android:exported="false">
194196
<intent-filter>
195197
<action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" />
196198
<category android:name="$PACKAGE_NAME" />
@@ -200,7 +202,8 @@
200202
<!-- 插件通知广播接收器 -->
201203
<receiver
202204
android:name="cn.jiguang.cordova.push.JPushReceiver"
203-
android:enabled="true">
205+
android:enabled="true"
206+
android:exported="false">
204207
<intent-filter>
205208
<action android:name="cn.jpush.android.intent.REGISTRATION" />
206209
<action android:name="cn.jpush.android.intent.MESSAGE_RECEIVED" />

0 commit comments

Comments
 (0)