mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Add daydream and cardboard intent filters
This commit is contained in:
parent
d171daa81c
commit
731b7c472c
1 changed files with 19 additions and 0 deletions
|
@ -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) -->
|
Loading…
Add table
Add a link
Reference in a new issue