mirror of
https://github.com/github/codeql.git
synced 2026-02-14 14:11:20 +01:00
15 lines
548 B
XML
15 lines
548 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="test">
|
|
<application>
|
|
<receiver android:name=".BootReceiverXml">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<receiver android:name=".EmptyReceiverXml">
|
|
<intent-filter>
|
|
<action android:name"android.intent.action.BOOT_COMPLETED" />
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
</manifest>
|