Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.77 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.subaru.store" android:theme="@android:style/Theme.NoTitleBar" android:versionName="1.0" android:versionCode="1" android:installLocation="preferExternal">
  3.   <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" />
  4.   <application android:icon="@drawable/app_icon" android:label="@string/app_name" android:debuggable="false">
  5.     <activity android:launchMode="singleTask" android:label="@string/app_name" android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen" android:screenOrientation="landscape" android:name="com.subaru.store.UnityPlayerNativeActivity">
  6.       <intent-filter>
  7.         <action android:name="android.intent.action.MAIN" />
  8.         <category android:name="android.intent.category.LAUNCHER" />
  9.       </intent-filter>
  10.       <meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="false" />
  11.     </activity>
  12.   </application>
  13.   <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="19" />
  14.   <uses-feature android:glEsVersion="0x00020000" />
  15.   <uses-permission android:name="android.permission.INTERNET" />
  16.   <uses-feature android:name="android.hardware.sensor.accelerometer" />
  17.   <uses-feature android:name="android.hardware.touchscreen" />
  18.   <uses-feature android:name="android.hardware.touchscreen.multitouch" android:required="false" />
  19.   <uses-feature android:name="android.hardware.touchscreen.multitouch.distinct" android:required="false" />
  20.   <uses-permission android:name="android.permission.WAKE_LOCK" />
  21. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement