42 lines
2.1 KiB
XML
42 lines
2.1 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
package="com.zhidao.mogo.module.main.launcher">
|
||
|
||
<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=".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> |