Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Side by Side Diff: content/shell/android/AndroidManifest.xml

Issue 9860032: Add skeleton of content shell for android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/content_shell.gypi ('k') | content/shell/android/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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>
OLDNEW
« no previous file with comments | « content/content_shell.gypi ('k') | content/shell/android/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698