Files
MoGoEagleEye/modules/mogo-module-adas/src/main/AndroidManifest.xml

15 lines
493 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.module.adas">
<application>
<receiver android:name=".receiver.AdasTestPanelBroadCastReceiver">
<intent-filter>
<action android:name="com.adas.test_panel_control" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
</application>
</manifest>