AndroidManifest.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <application
  10. android:name="com.youyi.yysdk.YouYiApplication"
  11. android:theme="@style/UnityThemeSelector"
  12. android:label="@string/app_name"
  13. android:usesCleartextTraffic="true">
  14. <meta-data android:name="YouYi_GameId" android:value="1006" />
  15. <meta-data android:name="YouYi_AppKey" android:value="deee20efee76d78cfb6ba35de41f8d92" />
  16. <activity android:name="com.wenting.youyiplugin.MainActivity"
  17. android:screenOrientation="sensorPortrait"
  18. android:label="@string/app_name">
  19. <intent-filter>
  20. <action android:name="android.intent.action.MAIN" />
  21. <category android:name="android.intent.category.LAUNCHER" />
  22. </intent-filter>
  23. <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
  24. </activity>
  25. <activity android:name="com.xjro.yy.wxapi.WXEntryActivity"
  26. android:screenOrientation="sensorPortrait"
  27. android:label="@string/app_name"
  28. android:theme="@android:style/Theme.Translucent.NoTitleBar"
  29. android:exported="true"
  30. android:taskAffinity="com.xjro.yy"
  31. android:launchMode="singleTask">
  32. </activity>
  33. </application>
  34. </manifest>