AndroidManifest.xml 891 B

12345678910111213
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android">
  3. <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true"/>
  4. <application android:theme="@style/UnityThemeSelector" android:label="@string/app_name" android:usesCleartextTraffic="true">
  5. <activity android:name="com.wenting.youyiplugin.MainActivity" android:screenOrientation="sensorPortrait" android:label="@string/app_name">
  6. <intent-filter>
  7. <action android:name="android.intent.action.MAIN" />
  8. <category android:name="android.intent.category.LAUNCHER" />
  9. </intent-filter>
  10. <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
  11. </activity>
  12. </application>
  13. </manifest>