@Override public void onCreate() { super.onCreate(); JPushInterface.setDebugMode(true); JPushInterface.init(this); RongIM.init(this, "pvxdm17jx5lmr", R.drawable.mineral_logo); if (SettingUtil.getInstance(getApplicationContext()) .getValue(SettingUtil.KEY_ACCEPT_PUSH_NOTIFICATION, true)) { JPushInterface.resumePush(getApplicationContext()); } else { JPushInterface.stopPush(getApplicationContext()); } }
void resumePush(JSONArray data, CallbackContext callbackContext) { JPushInterface.resumePush(this.cordova.getActivity().getApplicationContext()); callbackContext.success(); }