53 lines
2.4 KiB
XML
53 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
package="com.zhidao.mogo.module.main.launcher"
|
||
android:versionCode="1"
|
||
android:versionName="2.0.67" >
|
||
|
||
<uses-sdk
|
||
android:minSdkVersion="19"
|
||
android:targetSdkVersion="19" />
|
||
|
||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
|
||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
||
|
||
<application>
|
||
<activity
|
||
android:name="com.zhidao.mogo.module.main.launcher.MainLauncherActivity"
|
||
android:clearTaskOnLaunch="true"
|
||
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation|screenSize|smallestScreenSize"
|
||
android:enabled="true"
|
||
android:launchMode="singleTop"
|
||
android:resizeableActivity="false"
|
||
android:resumeWhilePausing="true"
|
||
android:screenOrientation="landscape"
|
||
android:stateNotNeeded="true"
|
||
android:theme="@style/Main"
|
||
android:windowSoftInputMode="adjustPan|stateHidden" >
|
||
<intent-filter>
|
||
<action android:name="android.intent.action.MAIN" />
|
||
<!-- 调试用,暂时开启LAUNCHER这个属性 -->
|
||
<category android:name="android.intent.category.LAUNCHER" />
|
||
<category android:name="android.intent.category.LAUNCHER_APP" />
|
||
<category android:name="android.intent.category.HOME" />
|
||
<category android:name="android.intent.category.DEFAULT" />
|
||
</intent-filter>
|
||
<intent-filter>
|
||
<data
|
||
android:host="launcher"
|
||
android:path="/main/switch2"
|
||
android:scheme="mogo" />
|
||
|
||
<category android:name="android.intent.category.DEFAULT" />
|
||
|
||
<action android:name="android.intent.action.VIEW" />
|
||
|
||
<category android:name="android.intent.category.BROWSABLE" />
|
||
</intent-filter>
|
||
</activity>
|
||
</application>
|
||
|
||
</manifest> |