expo-task-manager
Version:
Expo module that provides support for tasks that can run in the background.
21 lines (19 loc) • 910 B
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<receiver
android:name="expo.modules.taskManager.TaskBroadcastReceiver"
android:exported="false">
<intent-filter>
<action android:name="expo.modules.taskManager.TaskBroadcastReceiver.INTENT_ACTION" />
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
</intent-filter>
</receiver>
<service
android:name="expo.modules.taskManager.TaskJobService"
android:enabled="true"
android:exported="false"
android:permission="android.permission.BIND_JOB_SERVICE" />
<meta-data android:name="expo.modules.taskManager.oneAppId" android:value="true"/>
</application>
</manifest>