38 lines
1.8 KiB
XML
38 lines
1.8 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
package="com.mogo.module.main">
|
||
|
||
<application>
|
||
<activity
|
||
android:name=".MainActivity"
|
||
android:clearTaskOnLaunch="true"
|
||
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation|screenSize|smallestScreenSize"
|
||
android:enabled="true"
|
||
android:launchMode="singleInstance"
|
||
android:resizeableActivity="true"
|
||
android:resumeWhilePausing="true"
|
||
android:screenOrientation="landscape"
|
||
android:stateNotNeeded="true"
|
||
android:taskAffinity=""
|
||
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>
|