AndroidManifest.xml
1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.agg.h5game">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name="com.agg.h5game.AggH5GameApplication"
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:requestLegacyExternalStorage="true"
android:supportsRtl="true"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:usesCleartextTraffic="true">
<activity
android:name="com.agg.h5game.AggH5SplashActivity"
android:configChanges="keyboardHidden|orientation|screenSize|screenLayout"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.agg.h5game.AggH5MainActivity"
android:configChanges="keyboardHidden|orientation|screenSize|screenLayout"
android:screenOrientation="sensorLandscape" />
<meta-data
android:name="GAME_ID"
android:value="1" />
<meta-data
android:name="CLIENT_ID"
android:value="1" />
<meta-data
android:name="h5game"
android:value="https://cdn.7277.cn/unite/h5sdk/710/1/sdk.html" />
</application>
</manifest>