Files
MoGoEagleEye/modules/mogo-module-main/src/main/AndroidManifest.xml
donghongyu 57dbfbba3e [Fix]
增加初始化延时,增加稳定性

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
2022-01-05 18:28:43 +08:00

16 lines
536 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.module.main">
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
<application>
<service
android:name=".service.MogoMainService"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.mogo.launcher.action.MAIN_SERVICE" />
</intent-filter>
</service>
</application>
</manifest>