Delay GetToken/DeleteToken operation until GCMClient is ready.
[chromium-blink-merge.git] / android_webview / test / shell / AndroidManifest.xml
blob98c9af2a78790460209b3b68c2bbf59de59d0f13
1 <?xml version="1.0" encoding="utf-8"?>
3 <!-- Copyright 2013 The Chromium Authors. All rights reserved.
5   Use of this source code is governed by a BSD-style license that can be
6   found in the LICENSE file.
7 -->
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10     package="org.chromium.android_webview.shell">
11   <!-- TODO(boliu): Change minSdkVersion to 19 when bots no longer try
12        to install webview apks on < K devices. crbug.com/474374 -->
13   <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
14   <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
15   <uses-permission android:name="android.permission.INTERNET"/>
16   <uses-permission android:name="android.permission.WAKE_LOCK"/>
17   <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
18   <uses-permission android:name="android.permission.RECORD_AUDIO" />
19   <uses-permission android:name="android.permission.RECORD_VIDEO" />
20   <uses-permission android:name="android.permission.CAMERA" />
22   <application android:name="org.chromium.android_webview.shell.AwShellApplication"
23       android:label="AwShellApplication"
24       android:hardwareAccelerated="true">
25     <activity android:name="org.chromium.android_webview.shell.AwShellActivity"
26         android:label="Android WebView Test Shell"
27         android:configChanges="orientation|keyboardHidden|keyboard|screenSize">
28       <intent-filter>
29         <action android:name="android.intent.action.MAIN" />
30         <category android:name="android.intent.category.LAUNCHER" />
31       </intent-filter>
32     </activity>
33     <activity android:name="org.chromium.android_webview.test.AwTestRunnerActivity"
34         android:label="AwTestRunnerActivity">
35       <intent-filter>
36         <action android:name="android.intent.action.MAIN" />
37         <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" />
38       </intent-filter>
39     </activity>
40     <provider android:name="org.chromium.android_webview.test.TestContentProvider"
41         android:authorities="org.chromium.android_webview.test.TestContentProvider" />
42   </application>
43 </manifest>