|
|
@@ -1,43 +1,16 @@
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
|
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- xmlns:tools="http://schemas.android.com/tools"
|
|
|
- android:installLocation="auto">
|
|
|
-
|
|
|
- <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:name="com.cocos.game.GameApp"
|
|
|
- android:allowBackup="false"
|
|
|
- android:extractNativeLibs="true"
|
|
|
- android:icon="@mipmap/ic_launcher"
|
|
|
- android:label="@string/app_name"
|
|
|
- android:resizeableActivity="true"
|
|
|
- android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
- android:theme="@style/Theme.Game"
|
|
|
- android:usesCleartextTraffic="true"
|
|
|
- tools:replace="android:allowBackup">
|
|
|
- <meta-data
|
|
|
- android:name="android.app.lib_name"
|
|
|
- android:value="cocos" />
|
|
|
-
|
|
|
- <activity
|
|
|
- android:name="com.cocos.game.AppActivity"
|
|
|
- android:configChanges="orientation|keyboardHidden|screenSize|screenLayout|smallestScreenSize"
|
|
|
- android:exported="true"
|
|
|
- android:label="@string/app_name"
|
|
|
- android:screenOrientation="portrait"
|
|
|
- android:theme="@style/Theme.Game.Page">
|
|
|
- <intent-filter>
|
|
|
- <action android:name="android.intent.action.MAIN" />
|
|
|
- <category android:name="android.intent.category.LAUNCHER" />
|
|
|
- </intent-filter>
|
|
|
- </activity>
|
|
|
- <activity
|
|
|
- android:name="com.cocos.lib.CocosEditBoxActivity"
|
|
|
- android:configChanges="orientation|keyboardHidden|screenSize|screenLayout|smallestScreenSize"
|
|
|
- android:screenOrientation="behind"
|
|
|
- android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
|
|
|
- </application>
|
|
|
+<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:installLocation="auto">
|
|
|
+ <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:name="com.cocos.game.GameApp" android:allowBackup="false" android:extractNativeLibs="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:resizeableActivity="true" android:roundIcon="@mipmap/ic_launcher_round" android:theme="@style/Theme.Game" android:usesCleartextTraffic="true" tools:replace="android:allowBackup">
|
|
|
+ <meta-data android:name="android.app.lib_name" android:value="cocos"/>
|
|
|
+ <activity android:name="com.cocos.game.AppActivity" android:configChanges="orientation|keyboardHidden|screenSize|screenLayout|smallestScreenSize" android:exported="true" android:label="@string/app_name" android:screenOrientation="portrait" android:theme="@style/Theme.Game.Page">
|
|
|
+ <intent-filter>
|
|
|
+ <action android:name="android.intent.action.MAIN"/>
|
|
|
+ <category android:name="android.intent.category.LAUNCHER"/>
|
|
|
+ </intent-filter>
|
|
|
+ </activity>
|
|
|
+ <activity android:name="com.cocos.lib.CocosEditBoxActivity" android:configChanges="orientation|keyboardHidden|screenSize|screenLayout|smallestScreenSize" android:screenOrientation="behind" android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"/>
|
|
|
+ </application>
|
|
|
</manifest>
|