27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.mogo.module.service" >
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
<application>
|
|
<receiver android:name=".receiver.AccStatusReceiver"
|
|
android:exported="true"
|
|
android:enabled="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.ACTION_POWER_CONNECTED"/>
|
|
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED"/>
|
|
<action android:name="com.nwd.action.ACTION_MCU_STATE_CHANGE"/>
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<receiver android:name=".dispatch.DispatchTestPanelBroadCastReceiver">
|
|
<intent-filter>
|
|
<action android:name="com.dispatch.test_panel_control" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
</application>
|
|
</manifest>
|