37 行
1.3 KiB
XML
37 行
1.3 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
package="com.honghuang.game"
|
||
|
|
android:versionCode="1"
|
||
|
|
android:versionName="1.0.0" >
|
||
|
|
|
||
|
|
<uses-sdk
|
||
|
|
android:minSdkVersion="24"
|
||
|
|
android:targetSdkVersion="30" />
|
||
|
|
|
||
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
||
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||
|
|
|
||
|
|
<application
|
||
|
|
android:allowBackup="true"
|
||
|
|
android:debuggable="true"
|
||
|
|
android:extractNativeLibs="false"
|
||
|
|
android:label="洪荒大陆"
|
||
|
|
android:supportsRtl="true"
|
||
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
||
|
|
android:usesCleartextTraffic="true" >
|
||
|
|
<activity
|
||
|
|
android:name="com.honghuang.game.MainActivity"
|
||
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
||
|
|
android:exported="true"
|
||
|
|
android:launchMode="singleTask"
|
||
|
|
android:screenOrientation="portrait" >
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
|
||
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
|
</intent-filter>
|
||
|
|
</activity>
|
||
|
|
</application>
|
||
|
|
|
||
|
|
</manifest>
|