diff options
author | TheScarastic <warabhishek@e.email> | 2022-04-11 14:51:12 +0530 |
---|---|---|
committer | TheScarastic <warabhishek@e.email> | 2022-04-11 18:39:36 +0530 |
commit | 4bd37041c3ace75e4ac5bfbd87fe6d1cfad8038a (patch) | |
tree | 60e942f86caa6137ccf1b59a05a4f5c8e59a2242 /app/src/main/AndroidManifest.xml | |
parent | 58b435916b5fffea33600009d648ed7a5cc594ea (diff) |
privacycentralapp: Add notification on 1st boot to tell us more about our app
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index cbb4ccc..d285b6f 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -32,6 +32,15 @@ tools:replace="android:icon,android:label,android:theme" > <receiver + android:name=".common.BootCompletedReceiver" + > + <intent-filter> + <action android:name="android.intent.action.BOOT_COMPLETED" /> + <category android:name="android.intent.category.DEFAULT" /> + </intent-filter> + </receiver> + + <receiver android:exported="true" android:name=".Widget" > |