-
Notifications
You must be signed in to change notification settings - Fork 678
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
34 lines (32 loc) · 1.82 KB
/
AndroidManifest.xml
File metadata and controls
34 lines (32 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<receiver android:name="com.capacitorjs.plugins.localnotifications.TimedNotificationPublisher" />
<receiver android:name="com.capacitorjs.plugins.localnotifications.NotificationDismissReceiver" />
<receiver
android:name="com.capacitorjs.plugins.localnotifications.LocalNotificationRestoreReceiver"
android:directBootAware="true"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
</intent-filter>
</receiver>
<!-- Receiver pour callback quand le timer se termine -->
<receiver
android:name="com.capacitorjs.plugins.localnotifications.TimerEndReceiver"
android:exported="false" />
<!-- Service foreground pour mise à jour de la progression du timer en arrière-plan -->
<service
android:name="com.capacitorjs.plugins.localnotifications.TimerProgressService"
android:enabled="true"
android:exported="false"
android:foregroundServiceType="specialUse" />
</application>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE"/>
<uses-permission android:name="android.permission.VIBRATE"/>
</manifest>