41 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
		
		
			
		
	
	
			41 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
|  | <?xml version="1.0" encoding="utf-8"?> | ||
|  | <!-- GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN--> | ||
|  | <manifest | ||
|  |     xmlns:android="http://schemas.android.com/apk/res/android" | ||
|  |     package="com.unity3d.player" | ||
|  |     xmlns:tools="http://schemas.android.com/tools"> | ||
|  |    <application | ||
|  |         android:name="com.u8.sdk.U8Application" | ||
|  |         android:allowBackup="true" | ||
|  |         android:extractNativeLibs="true" | ||
|  |         android:networkSecurityConfig="@xml/network_security_config" | ||
|  |         android:theme="@android:style/Theme.NoTitleBar.Fullscreen" | ||
|  |         android:usesCleartextTraffic="true" | ||
|  |         tools:replace="android:allowBackup"> | ||
|  | 
 | ||
|  |         <uses-library | ||
|  |             android:name="org.apache.http.legacy" | ||
|  |             android:required="false" /> | ||
|  |         <activity | ||
|  |             android:name="com.u8.sdk.U8UnityContext" | ||
|  |             android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection|density" | ||
|  |             android:hardwareAccelerated="false" | ||
|  |             android:launchMode="singleTask" | ||
|  |             android:resizeableActivity="false" | ||
|  |             android:screenOrientation="fullSensor" | ||
|  |             android:theme="@style/UnityThemeSelector"> | ||
|  |             <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> | ||
|  |     </application> | ||
|  | </manifest> |