Files
MoGoEagleEye/modules/tanlulib/src/main/AndroidManifest.xml
董宏宇 62bfbedaa3 调整探路目录关系
Signed-off-by: 董宏宇 <martindhy@gmail.com>
2021-09-16 20:52:59 +08:00

26 lines
791 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.zhidao.roadcondition">
<application>
<!--分享相关广播-->
<receiver
android:name=".receiver.ShareRoadReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.zhidao.share.roadcondition.action" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
<!--获取图片和视频的服务-->
<service
android:name=".service.MainService"
android:enabled="true" />
<service
android:name=".service.DelayService"
android:exported="false" />
</application>
</manifest>