AndroidManifest.xml 1.5 KB
<?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:extractNativeLibs="true"
        android:label="@string/app_name"
        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"/>
        <activity
            android:name="com.agg.h5game.AggH5MainActivity"
            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>

        <meta-data
            android:name="android.max_aspect"
            android:value="2.4" />
        <meta-data
            android:name="stss_agg_h5game"
            android:value="https://cdn.kky.cn/unite/h5sdk/%s/%s/sdk.html" />
    </application>
</manifest>