Files
MoGoEagleEye/modules/mogo-module-v2x/src/main/AndroidManifest.xml
董宏宇 42fdea16dc 删除无用资源
修复Handler 导致的 anr

Signed-off-by: 董宏宇 <martindhy@gmail.com>
2021-10-20 18:36:13 +08:00

25 lines
747 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.module.v2x">
<application>
<receiver android:name=".receiver.SceneBroadcastReceiver">
<intent-filter>
<action android:name="com.v2x.scene_handler_broadcast" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<receiver android:name=".receiver.TestPanelBroadcastReceiver">
<intent-filter>
<action android:name="com.v2x.test_panel_control" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
</application>
</manifest>