apk(点击下载) / AndroidManifest.xml


<?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="1" android:versionName="1.0.0" android:installLocation="auto" android:compileSdkVersion="33" android:compileSdkVersionCodename="13" package="com.game.game" platformBuildVersionCode="33" platformBuildVersionName="13"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="33" />
    <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" />
    <uses-feature android:glEsVersion="0x00030000" android:required="true" />
    <application android:label="@string/godot_project_name_string" android:icon="@mipmap/icon" android:debuggable="true" android:allowBackup="false" android:isGame="true" android:appCategory="game" android:appComponentFactory="androidx.core.app.CoreComponentFactory" android:hasFragileUserData="false" android:requestLegacyExternalStorage="false">
        <meta-data android:name="org.godotengine.editor.version" android:value="4.2.1.stable" />
        <activity android:theme="@style/GodotAppSplashTheme" android:label="@string/godot_project_name_string" android:name="com.godot.game.GodotApp" android:exported="true" android:excludeFromRecents="false" android:launchMode="singleInstancePerTask" android:screenOrientation="portrait" android:configChanges="density|keyboard|keyboardHidden|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" android:resizeableActivity="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <meta-data android:name="org.godotengine.library.version" android:value="4.2.1.stable" />
        <service android:name="org.godotengine.godot.GodotDownloaderService" />
        <activity android:theme="@android:style/Theme.Translucent.NoTitleBar" android:name="org.godotengine.godot.utils.ProcessPhoenix" android:exported="false" android:process=":phoenix" />
        <provider android:name="androidx.core.content.FileProvider" android:exported="false" android:authorities="com.game.game.fileprovider" android:grantUriPermissions="true">
            <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/godot_provider_paths" />
        </provider>
    </application>
</manifest>