OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
3 <!-- Copyright 2013 The Chromium Authors. All rights reserved. | |
4 | |
5 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 |
6 found in the LICENSE file. | 4 found in the LICENSE file. |
7 --> | 5 --> |
8 | |
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
10 package="org.chromium.mojo.shell"> | 7 package="org.domokit.sky.shell"> |
11 | 8 |
12 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> | 9 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> |
13 <uses-permission android:name="android.permission.INTERNET"/> | 10 <uses-permission android:name="android.permission.INTERNET"/> |
14 | 11 |
15 <application android:name="MojoShellApplication" | 12 <application android:name="SkyShellApplication" android:label="Sky"> |
16 android:label="Mojo Shell"> | 13 <activity android:name="SkyShellActivity" |
17 <activity android:name="MojoShellActivity" | |
18 android:launchMode="singleTask" | 14 android:launchMode="singleTask" |
19 android:theme="@android:style/Theme.Holo.Light.NoActionBar" | 15 android:theme="@android:style/Theme.Holo.Light.NoActionBar" |
20 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" | 16 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" |
21 android:hardwareAccelerated="true"> | 17 android:hardwareAccelerated="true"> |
22 <intent-filter> | 18 <intent-filter> |
23 <action android:name="android.intent.action.MAIN"/> | 19 <action android:name="android.intent.action.MAIN"/> |
24 <category android:name="android.intent.category.LAUNCHER"/> | 20 <category android:name="android.intent.category.LAUNCHER"/> |
25 </intent-filter> | 21 </intent-filter> |
26 </activity> | 22 </activity> |
27 </application> | 23 </application> |
28 | 24 </manifest> |
29 </manifest> | |
OLD | NEW |