void isPushStopped(JSONArray data, CallbackContext callbackContext) {
   boolean isStopped =
       JPushInterface.isPushStopped(this.cordova.getActivity().getApplicationContext());
   if (isStopped) {
     callbackContext.success(1);
   } else {
     callbackContext.success(0);
   }
 }