| 1234567891011121314151617 |
- <?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"/>
- <application android:name="com.youyi.yysdk.YouYiApplication" android:theme="@style/UnityThemeSelector" android:label="@string/app_name" android:usesCleartextTraffic="true">
- <meta-data android:name="YouYi_GameId" android:value="1006" />
- <meta-data android:name="YouYi_AppKey" android:value="deee20efee76d78cfb6ba35de41f8d92" />
- <activity android:name="com.wenting.youyiplugin.MainActivity" android:screenOrientation="sensorPortrait" android:label="@string/app_name">
- <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" />
- </activity>
- <activity android:name="com.bxdbbl02.yy.wxapi.WXEntryActivity" android:screenOrientation="sensorPortrait" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar" android:exported="true" android:taskAffinity="com.bxdbbl02.yy" android:launchMode="singleTask">
- </activity>
- </application>
- </manifest>
|