blob: 966576626d9ab3e3414eab2f801206b76cbf814a [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.vr.sdk.samples.simplevideowidget"
android:versionCode="180905036"
android:versionName="1.180.0">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="22" />
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
<!-- The app has largeHeap enabled which is required for loading large files. -->
<application android:label="SimpleVrVideoActivity"
android:largeHeap="true"
android:theme="@android:style/Theme.Holo.Light">
<!-- This demo is singleTask since it makes launching via custom adb intents easier. -->
<activity android:name=".SimpleVrVideoActivity"
android:launchMode="singleTask">
<intent-filter>
<!-- Primary intent when launching from the home screen -->
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="com.google.intent.category.CARDBOARD" />
</intent-filter>
</activity>
</application>
<!-- These permissions are used by Google VR SDK to get the best Google VR headset profiles. !-->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
</manifest>