15 lines
452 B
XML
15 lines
452 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.mogo.module.main">
|
|
|
|
<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>
|