pathfinder/demo/android/app/src/main/AndroidManifest.xml

67 lines
2.6 KiB
XML
Raw Normal View History

2019-03-08 19:52:47 -05:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="graphics.pathfinder.pathfinderdemo">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-feature
android:name="android.software.vr.mode"
android:required="false" />
<uses-feature
android:name="android.hardware.vr.high_performance"
android:required="false" />
2019-03-08 19:52:47 -05:00
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".PathfinderDemoActivity"
2019-03-15 18:23:37 -04:00
android:configChanges="density|navigation|orientation|keyboardHidden|screenSize|uiMode"
2019-03-08 19:52:47 -05:00
android:label="@string/app_name"
android:resizeableActivity="false"
android:theme="@style/AppTheme">
2019-03-08 19:52:47 -05:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
2019-03-15 18:23:37 -04:00
<!--
This marks the Activity as a Daydream Activity and allows it
to be launched from the Daydream Home.
-->
2019-03-15 18:23:37 -04:00
<category android:name="com.google.intent.category.DAYDREAM" />
<!--
This marks the Activity as a Cardboard Activity and allows it
to be launched from the Cardboard app.
-->
2019-03-15 18:23:37 -04:00
<category android:name="com.google.intent.category.CARDBOARD" />
<!--
This allows this Activity to be launched from the traditional
2019-03-15 18:23:37 -04:00
Android 2D launcher as well. Remove it if you do not want
this Activity to be launched directly from the 2D launcher.
-->
2019-03-15 18:23:37 -04:00
<category android:name="android.intent.category.LAUNCHER" />
2019-03-08 19:52:47 -05:00
</intent-filter>
</activity>
<service
android:name=".PathfinderDemoVRListenerService"
2019-03-15 18:23:37 -04:00
android:label="@string/service_name"
android:permission="android.permission.BIND_VR_LISTENER_SERVICE">
<intent-filter>
<action android:name="android.service.vr.VrListenerService" />
</intent-filter>
</service>
<activity
android:name=".PathfinderDemoFileBrowserActivity"
android:label="@string/title_activity_pathfinder_demo_file_browser"></activity>
2019-03-08 19:52:47 -05:00
</application>
</manifest>