Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 488b946

Browse files
authored
[android_alarm_manager] fix AndroidManifest.xml for android lint issue "XML tag has empty body" (#3288)
1 parent ba035e9 commit 488b946

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/android_alarm_manager/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Next, within the `<application></application>` tags, add:
3636
android:name="io.flutter.plugins.androidalarmmanager.RebootBroadcastReceiver"
3737
android:enabled="false">
3838
<intent-filter>
39-
<action android:name="android.intent.action.BOOT_COMPLETED"></action>
39+
<action android:name="android.intent.action.BOOT_COMPLETED"/>
4040
</intent-filter>
4141
</receiver>
4242

packages/android_alarm_manager/example/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
android:name="io.flutter.plugins.androidalarmmanager.RebootBroadcastReceiver"
4242
android:enabled="false">
4343
<intent-filter>
44-
<action android:name="android.intent.action.BOOT_COMPLETED"></action>
44+
<action android:name="android.intent.action.BOOT_COMPLETED"/>
4545
</intent-filter>
4646
</receiver>
4747
<meta-data

0 commit comments

Comments
 (0)