24 lines
753 B
XML
24 lines
753 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.mogo.module.main"
|
|
android:versionCode="1"
|
|
android:versionName="2.1.16.10" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="19"
|
|
android:targetSdkVersion="19" />
|
|
|
|
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
|
|
|
|
<application>
|
|
<service
|
|
android:name="com.mogo.module.main.service.MogoMainService"
|
|
android:enabled="true"
|
|
android:exported="true" >
|
|
<intent-filter>
|
|
<action android:name="com.mogo.launcher.action.MAIN_SERVICE" />
|
|
</intent-filter>
|
|
</service>
|
|
</application>
|
|
|
|
</manifest> |