AndroidManifest.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android">
  3. <supports-screens
  4. android:smallScreens="true"
  5. android:normalScreens="true"
  6. android:largeScreens="true"
  7. android:xlargeScreens="true"
  8. android:anyDensity="true"/>
  9. <uses-sdk tools:overrideLibrary="com.sdk.mysdklibrary"/>
  10. <application android:name="com.sdk.mysdklibrary.MyApplication"
  11. android:theme="@style/UnityThemeSelector"
  12. android:label="@string/app_name"
  13. android:usesCleartextTraffic="true"
  14. android:extractNativeLibs="true">
  15. <meta-data android:name="android.game_mode_config"
  16. android:resource="@xml/game_mode_config" />
  17. <activity android:name="com.wenting.youyiplugin.MainActivity"
  18. android:label="@string/app_name"
  19. android:screenOrientation="userPortrait"
  20. android:launchMode="singleTask"
  21. android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection|density"
  22. android:resizeableActivity="false"
  23. android:hardwareAccelerated="false"
  24. android:exported="true">
  25. <intent-filter>
  26. <action android:name="android.intent.action.MAIN" />
  27. <category android:name="android.intent.category.LAUNCHER" />
  28. </intent-filter>
  29. <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
  30. <meta-data android:name="android.notch_support" android:value="true" />
  31. </activity>
  32. <meta-data android:name="unity.build-id" android:value="b1daa653-b419-4dfd-9179-d48553ab64cc" />
  33. <meta-data android:name="unity.splash-mode" android:value="0" />
  34. <meta-data android:name="unity.splash-enable" android:value="True" />
  35. <meta-data android:name="unity.launch-fullscreen" android:value="True" />
  36. <meta-data android:name="notch.config" android:value="portrait|landscape" />
  37. <meta-data android:name="unity.auto-report-fully-drawn" android:value="true" />
  38. </application>
  39. </manifest>