Files
MoGoEagleEye/modules/mogo-module-adas/build/intermediates/library_manifest/debug/AndroidManifest.xml
lixiaopeng 6252fde0c0 opt
2021-07-18 10:46:38 +08:00

20 lines
634 B
XML

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