OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- |
| 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. |
| 6 --> |
| 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 package="org.chromium.content_shell" |
| 9 android:versionCode="1" |
| 10 android:versionName="1.0"> |
| 11 |
| 12 <uses-sdk android:minSdkVersion="14" /> |
| 13 |
| 14 <application android:label="ContentShell"> |
| 15 <activity android:name=".ContentShellActivity" |
| 16 android:label="ContentShell" |
| 17 android:configChanges="orientation|keyboardHidden|keyboard|scree
nSize"> |
| 18 <intent-filter> |
| 19 <action android:name="android.intent.action.MAIN" /> |
| 20 <category android:name="android.intent.category.LAUNCHER" /> |
| 21 </intent-filter> |
| 22 </activity> |
| 23 </application> |
| 24 |
| 25 </manifest> |
OLD | NEW |