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

31 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.module.hmi">
<application>
<receiver android:name=".receiver.V2XWarningBroadcastReceiver">
<intent-filter>
<action android:name="com.hmi.v2x.notification" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<receiver android:name=".receiver.V2XTrafficLightBroadcastReceiver">
<intent-filter>
<action android:name="com.hmi.v2x.trafficlight" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<receiver android:name=".receiver.V2XLimitingVelocityBroadcastReceiver">
<intent-filter>
<action android:name="com.hmi.v2x.limitingvelocity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
</application>
</manifest>