Ionic下的JPush缺少统计代码问题解决方法

用Ionic打包apk后安装到手机,收到缺少统计代码的提示,解决方法如下:

1. 找到了 platforms/android/src/com/ionichina/ioniclub/MainActiovity.java文件

2.引入包  import cn.jpush.android.api.JPushInterface;

3.添加以下两个方法:

@Override
protected void onResume()
{
super.onResume();
JPushInterface.onResume(this);
} @Override
protected void onPause()
{
super.onPause();
JPushInterface.onPause(this);
}

Ionic下的JPush缺少统计代码问题解决方法

4. 注意事项: 如果要删除平台platform文件,记得在重新加入
上一篇:DOM操作在jQuery中的实用------文字提示和图片提示


下一篇:Laravel firstOrNew 与 firstOrCreate 的区别