Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.company.app" android:theme="@android:style/Theme.NoTitleBar" android:versionName="5.5.0" android:versionCode="5500" android:installLocation="preferExternal">
- <supports-screens android:smallScreens="false" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" />
- <application android:icon="@drawable/app_icon" android:label="@string/app_name" android:debuggable="false">
- <activity android:name="com.androidnative.AndroidNativeBridge" android:label="@string/app_name" android:screenOrientation="sensorLandscape" android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen" android:launchMode="singleTask">
- <meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="true" />
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity
- android:name="com.unity3d.ads.android.view.UnityAdsFullscreenActivity"
- android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
- android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
- android:hardwareAccelerated="true" />
- </application>
- <uses-feature android:glEsVersion="0x00020000" />
- <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
- <uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
- <uses-permission android:name="android.permission.VIBRATE" />
- <supports-gl-texture android:name="GL_OES_compressed_ETC1_RGB8_texture" />
- <uses-feature android:name="android.hardware.touchscreen" />
- <uses-feature android:name="android.hardware.touchscreen.multitouch" android:required="false" />
- <uses-feature android:name="android.hardware.touchscreen.multitouch.distinct" android:required="false" />
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
- </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement