Rapsssito / react-native-background-actions

React Native background service library for running background tasks forever in Android & iOS.
MIT License
818 stars 117 forks source link

SyntaxError: Unexpected identifier '_reactNativeBackgroundActions' #140

Closed prasannahe closed 1 year ago

prasannahe commented 2 years ago

import BackgroundService from 'react-native-background-actions';

const sleep = time => new Promise(resolve => setTimeout(() => resolve(), time));

// You can do anything in your task such as network requests, timers and so on, // as long as it doesn't touch UI. Once your task completes (i.e. the promise is resolved), // React Native will go into "paused" mode (unless there are other tasks running, // or there is a foreground app). const veryIntensiveTask = async taskDataArguments => { // Example of an infinite loop task const {delay} = taskDataArguments; await new Promise(async resolve => { for (let i = 0; BackgroundService.isRunning(); i++) { console.log(i); await sleep(delay); } }); };

const options = { taskName: 'Example', taskTitle: 'ExampleTask title', taskDesc: 'ExampleTask description', taskIcon: { name: 'ic_launcher', type: 'mipmap', }, color: '#ff00ff', // linkingURI: 'yourSchemeHere://chat/jane', // See Deep Linking for more info parameters: { delay: 1000, }, };

await BackgroundService.start(veryIntensiveTask, options); // await BackgroundService.updateNotification({ // taskDesc: 'New ExampleTask description', // }); // Only Android, iOS will ignore this call // // iOS will also run everything here in the background until .stop() is called // await BackgroundService.stop();

using the same example given above, made the changes as per installation guidelines.

Rapsssito commented 1 year ago

Closing as duplicate of #137