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>
41