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

Side by Side Diff: android_webview/tools/WebViewTelemetryShell/AndroidManifest.xml

Issue 443953002: Move WebViewShell from Android to Chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update package name in another place. Created 6 years, 4 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
OLDNEW
(Empty)
1 <!--
2 * Copyright 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 -->
6
7 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
8 package="org.chromium.telemetry_shell"
9 android:versionCode="1"
10 android:versionName="1.0" >
11
12 <uses-sdk android:minSdkVersion="17"
13 android:targetSdkVersion="19" />
14
15 <uses-permission android:name="android.permission.INTERNET" />
16 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
17
18 <application
19 android:icon="@drawable/ic_launcher"
20 android:label="@string/app_name"
21 android:theme="@android:style/Theme.Light" >
22 <activity
23 android:name=".TelemetryActivity"
24 android:label="@string/title_activity_telemetry" >
25 <intent-filter>
26 <action android:name="android.intent.action.MAIN" />
27 <category android:name="android.intent.category.LAUNCHER" />
28 </intent-filter>
29 </activity>
30 <activity
31 android:name=".JankActivity"
32 android:label="@string/title_activity_jank"
33 android:noHistory="true">
34 <intent-filter>
35 <action android:name="android.intent.action.VIEW" />
36 <category android:name="android.intent.category.LAUNCHER" />
37 </intent-filter>
38 </activity>
39 </application>
40 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698