| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 package="org.domokit.sky.demo"> | 7 package="org.domokit.sky.demo"> |
| 8 | 8 |
| 9 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> | 9 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> |
| 10 <uses-permission android:name="android.permission.INTERNET"/> | 10 <uses-permission android:name="android.permission.INTERNET"/> |
| 11 <uses-feature android:name="android.hardware.sensor.accelerometer" android:r
equired="true" /> | 11 <uses-feature android:name="android.hardware.sensor.accelerometer" android:r
equired="true" /> |
| 12 | 12 |
| 13 <application android:name="org.domokit.sky.shell.SkyApplication" android:lab
el="Sky"> | 13 <application android:name="SkyDemoApplication" android:label="Sky"> |
| 14 <activity android:name="SkyDemoActivity" | 14 <activity android:name="SkyDemoActivity" |
| 15 android:launchMode="singleTask" | 15 android:launchMode="singleTask" |
| 16 android:theme="@android:style/Theme.Holo.Light.NoActionBar" | 16 android:theme="@android:style/Theme.Holo.Light.NoActionBar" |
| 17 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" | 17 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" |
| 18 android:hardwareAccelerated="true"> | 18 android:hardwareAccelerated="true"> |
| 19 <intent-filter> | 19 <intent-filter> |
| 20 <action android:name="android.intent.action.MAIN"/> | 20 <action android:name="android.intent.action.MAIN"/> |
| 21 <category android:name="android.intent.category.LAUNCHER"/> | 21 <category android:name="android.intent.category.LAUNCHER"/> |
| 22 </intent-filter> | 22 </intent-filter> |
| 23 <intent-filter> | 23 <intent-filter> |
| 24 <action android:name="android.intent.action.VIEW"/> | 24 <action android:name="android.intent.action.VIEW"/> |
| 25 <category android:name="android.intent.category.DEFAULT" /> | 25 <category android:name="android.intent.category.DEFAULT" /> |
| 26 <data android:scheme="sky" /> | 26 <data android:scheme="sky" /> |
| 27 </intent-filter> | 27 </intent-filter> |
| 28 </activity> | 28 </activity> |
| 29 </application> | 29 </application> |
| 30 </manifest> | 30 </manifest> |
| OLD | NEW |