mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Auto merge of #22317 - Manishearth:vr-packaging, r=MortimerGoro
Fix daydream support Added a googlevr-flavor AndroidManifest.xml for servoapp (this gets merged with the main one). Daydream works now. I haven't added an oculus one since as far as I can tell we don't support pure servo on oculus yet. r? @jdm @paulrouget <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22317) <!-- Reviewable:end -->
This commit is contained in:
commit
aa1b688ed8
2 changed files with 20 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) -->
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
<!-- Base application theme. -->
|
||||
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
|
||||
<item name="android:windowNoTitle">true</item>
|
||||
<!-- Customize your theme here. -->
|
||||
</style>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue