57 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			XML
		
	
	
	
		
		
			
		
	
	
			57 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			XML
		
	
	
	
|  | <?xml version="1.0" encoding="utf-8"?> | ||
|  | <manifest | ||
|  |     xmlns:android="http://schemas.android.com/apk/res/android" | ||
|  |     package="com.unity3d.player" | ||
|  |     android:installLocation="preferExternal" | ||
|  |     android:versionCode="1" | ||
|  |     android:versionName="1.0"> | ||
|  |     <supports-screens | ||
|  |         android:smallScreens="true" | ||
|  |         android:normalScreens="true" | ||
|  |         android:largeScreens="true" | ||
|  |         android:xlargeScreens="true" | ||
|  |         android:anyDensity="true"/> | ||
|  | 
 | ||
|  |     <!-- Permissions needed by the Adjust SDK. --> | ||
|  |     <!-- For more information, check: https://github.com/adjust/unity_sdk#post-build-android --> | ||
|  |     <uses-permission android:name="android.permission.INTERNET" /> | ||
|  |     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
|  |     <uses-permission android:name="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" /> | ||
|  |     <uses-permission android:name="com.google.android.gms.permission.AD_ID" /> | ||
|  | 
 | ||
|  |     <queries> | ||
|  |         <package android:name="com.facebook.katana" /> | ||
|  |     </queries> | ||
|  |     <queries> | ||
|  |         <package android:name="com.instagram.android" /> | ||
|  |     </queries> | ||
|  | 
 | ||
|  |     <application | ||
|  |         android:theme="@style/UnityThemeSelector" | ||
|  |         android:icon="@drawable/app_icon" | ||
|  |         android:label="@string/app_name" | ||
|  |         android:debuggable="true"> | ||
|  | 
 | ||
|  |         <!-- Adjust broadcast receiver used to capture referrer content from INSTALL_REFERRER intent. --> | ||
|  |         <receiver | ||
|  |             android:name="com.adjust.sdk.AdjustReferrerReceiver" | ||
|  |             android:permission="android.permission.INSTALL_PACKAGES" | ||
|  |             android:exported="true" > | ||
|  |             <intent-filter> | ||
|  |                 <action android:name="com.android.vending.INSTALL_REFERRER" /> | ||
|  |             </intent-filter> | ||
|  |         </receiver> | ||
|  | 
 | ||
|  |         <activity  | ||
|  |             android:name="com.unity3d.player.UnityPlayerActivity" | ||
|  |             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> | ||
|  |     </application> | ||
|  | </manifest> |