UNPKG

react-native-background-task-manager

Version:

Advanced React Native background task manager with foreground services, scheduling, and geolocation support for Android

24 lines (19 loc) 1.03 kB
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.reactnativeforegroundservice"> <!-- Required for foreground services --> <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" /> <uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- Required for notifications on Android 13+ --> <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> <!-- Optional: for specific service types --> <uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PROCESSING" /> <uses-permission android:name="android.permission.FOREGROUND_SERVICE_LOCATION" /> <application> <service android:name=".ForegroundService" android:enabled="true" android:exported="false" android:foregroundServiceType="dataSync|mediaProcessing" /> </application> </manifest>