react-native-background-job
react-native-background-job copied to clipboard
not work in "react-native": "0.61.5", and crashing
"react": "16.9.0", "react-native": "0.61.5", "react-native-background-job": "^2.3.1",
BackgroundJob.register({ jobKey: JobKeyStr, job: () => { this.uploadvideoBackTask(formdata, JobKeyStr, data.source); } });
BackgroundJob.schedule({
jobKey: JobKeyStr,
notificationTitle: "Notification title",
notificationText: "Notification text",
allowWhileIdle: true,
allowExecutionInForeground: true,
period: 1000
});
Same problem...
+1
It seems to me helped android.permission.FOREGROUND_SERVICE in AndroidManifest.xml
It seems to me helped android.permission.FOREGROUND_SERVICE in AndroidManifest.xml
this worked for me:
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />