We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aefb90 commit 76f112cCopy full SHA for 76f112c
example/android/app/src/main/AndroidManifest.xml
@@ -37,5 +37,17 @@
37
<meta-data
38
android:name="flutterEmbedding"
39
android:value="2" />
40
+
41
+ <!-- Notification Service -->
42
+ <service
43
+ android:label="reflex"
44
+ android:name="com.devsonflutter.reflex.notification.NotificationListener"
45
+ android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
46
+ <intent-filter>
47
+ <action android:name="android.service.notification.NotificationListenerService" />
48
+ </intent-filter>
49
+ </service>
50
51
52
</application>
53
</manifest>
0 commit comments