2025-03-28 04:59:59 +00:00
|
|
|
/**
|
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {AppRegistry} from 'react-native';
|
|
|
|
import App from './App';
|
|
|
|
import {name as appName} from './app.json';
|
|
|
|
|
2025-03-31 05:11:57 +00:00
|
|
|
AppRegistry.registerHeadlessTask('GeolocationBackgroundTask', () =>
|
|
|
|
require('./src/task/watchPosition'),
|
|
|
|
);
|
|
|
|
|
2025-03-28 04:59:59 +00:00
|
|
|
AppRegistry.registerComponent(appName, () => App);
|