68eef1e0创建于 2025年2月10日历史提交
<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

          package="com.example.oxhorncampus">



    <uses-permission android:name="android.permission.INTERNET" />

    <application

            android:name=".MyApplication"

            android:allowBackup="true"

            android:extractNativeLibs="true"

            android:icon="@drawable/ic_logo"

            android:label="@string/app_name"

            android:supportsRtl="true"

            android:theme="@style/Theme.theme">

        <activity

                android:name=".ArkuixEntryAbilityActivity"

                android:configChanges="orientation|keyboard|layoutDirection|screenSize|uiMode|smallestScreenSize|density"

                android:exported="true"

                android:windowSoftInputMode="adjustNothing |stateAlwaysHidden">

            <intent-filter>

                <action android:name="android.intent.action.MAIN" />



                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

    </application>



</manifest>