Skip to content

Instantly share code, notes, and snippets.

@jesusrp98
Last active April 19, 2019 12:05
Show Gist options
  • Save jesusrp98/2698ea2de70febc6583a5eef4870f8df to your computer and use it in GitHub Desktop.
Save jesusrp98/2698ea2de70febc6583a5eef4870f8df to your computer and use it in GitHub Desktop.
Android manifest including notification's changes
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.example">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<application>
<activity>
...
</activity>
<receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver" />
<receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"></action>
</intent-filter>
</receiver>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment