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" package="or
g.domokit.sky.demo" android:versionCode="9" android:versionName="0.0.9"> |
7 package="org.domokit.sky.demo" | |
8 android:versionCode="8" | |
9 android:versionName="0.0.8"> | |
10 | 7 |
11 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> | 8 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> |
12 <uses-permission android:name="android.permission.INTERNET"/> | 9 <uses-permission android:name="android.permission.INTERNET" /> |
13 <uses-feature android:name="android.hardware.sensor.accelerometer" android:r
equired="true" /> | 10 <uses-feature android:name="android.hardware.sensor.accelerometer" android:r
equired="true" /> |
14 | 11 |
15 <application android:icon="@mipmap/ic_launcher" android:name="SkyDemoApplica
tion" android:label="Sky"> | 12 <application android:icon="@mipmap/ic_launcher" android:label="Sky" android:
name="SkyDemoApplication"> |
16 <activity android:name="SkyDemoActivity" | 13 <activity android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" android:hardwareAccelerated="true" android:launchMode="singleTask" andr
oid:name="SkyDemoActivity" android:theme="@android:style/Theme.Holo.Light.NoActi
onBar"> |
17 android:launchMode="singleTask" | |
18 android:theme="@android:style/Theme.Holo.Light.NoActionBar" | |
19 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" | |
20 android:hardwareAccelerated="true"> | |
21 <intent-filter> | 14 <intent-filter> |
22 <action android:name="android.intent.action.MAIN"/> | 15 <action android:name="android.intent.action.MAIN" /> |
23 <category android:name="android.intent.category.LAUNCHER"/> | 16 <category android:name="android.intent.category.LAUNCHER" /> |
24 </intent-filter> | 17 </intent-filter> |
25 <intent-filter> | 18 <intent-filter> |
26 <action android:name="android.intent.action.VIEW"/> | 19 <action android:name="android.intent.action.VIEW" /> |
27 <category android:name="android.intent.category.DEFAULT" /> | 20 <category android:name="android.intent.category.DEFAULT" /> |
28 <data android:scheme="sky" /> | 21 <data android:scheme="sky" /> |
29 </intent-filter> | 22 </intent-filter> |
30 </activity> | 23 </activity> |
31 </application> | 24 </application> |
32 </manifest> | 25 </manifest> |
OLD | NEW |