Fix package name

This commit is contained in:
hevin 2017-05-31 17:34:53 +08:00
parent 2287ef10dd
commit b234861e44
3 changed files with 5 additions and 3 deletions

View File

@ -154,7 +154,9 @@
</service>
<!-- User defined. For test only 用户自定义的广播接收器 -->
<receiver android:name="cn.jpush.phonegap.MyReceiver" android:enabled="true">
<receiver
android:name="cn.jiguang.cordova.push.MyReceiver"
android:enabled="true">
<intent-filter android:priority="1000">
<action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" />
<!-- Required 显示通知栏 -->

View File

@ -1,4 +1,4 @@
package cn.jpush.phonegap;
package cn.jiguang.cordova.push;
import android.annotation.TargetApi;
import android.app.Activity;

View File

@ -1,4 +1,4 @@
package cn.jpush.phonegap;
package cn.jiguang.cordova.push;
import android.content.BroadcastReceiver;
import android.content.Context;