Skip to content

Commit

Permalink
Add daydream and cardboard intent filters
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Nov 29, 2018
1 parent d171daa commit 731b7c4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions support/android/apk/servoapp/src/googlevr/AndroidManifest.xml
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- BEGIN_INCLUDE(manifest) -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto"
package="org.mozilla.servo">
<application android:label="Servo">
<activity android:name=".MainActivity"
android:label="Servo">
<meta-data android:name="android.app.lib_name" android:value="servo" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.google.intent.category.LAUNCHER"/>
<category android:name="com.google.intent.category.DAYDREAM"/>
<category android:name="com.google.intent.category.CARDBOARD"/>
</intent-filter>
</activity>
</application>

</manifest>
<!-- END_INCLUDE(manifest) -->

0 comments on commit 731b7c4

Please sign in to comment.