| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android">
- <supports-screens
- android:smallScreens="true"
- android:normalScreens="true"
- android:largeScreens="true"
- android:xlargeScreens="true"
- android:anyDensity="true"/>
- <uses-sdk tools:overrideLibrary="com.sdk.mysdklibrary"/>
- <application android:name="com.sdk.mysdklibrary.MyApplication"
- android:theme="@style/UnityThemeSelector"
- android:label="@string/app_name"
- android:usesCleartextTraffic="true"
- android:extractNativeLibs="true">
- <meta-data android:name="android.game_mode_config"
- android:resource="@xml/game_mode_config" />
- <activity android:name="com.wenting.youyiplugin.MainActivity"
- android:label="@string/app_name"
- android:screenOrientation="userPortrait"
- android:launchMode="singleTask"
- android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection|density"
- android:resizeableActivity="false"
- android:hardwareAccelerated="false"
- android:exported="true">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
- <meta-data android:name="android.notch_support" android:value="true" />
- </activity>
- <meta-data android:name="unity.build-id" android:value="b1daa653-b419-4dfd-9179-d48553ab64cc" />
- <meta-data android:name="unity.splash-mode" android:value="0" />
- <meta-data android:name="unity.splash-enable" android:value="True" />
- <meta-data android:name="unity.launch-fullscreen" android:value="True" />
- <meta-data android:name="notch.config" android:value="portrait|landscape" />
- <meta-data android:name="unity.auto-report-fully-drawn" android:value="true" />
- </application>
- </manifest>
|