summaryrefslogtreecommitdiffstats
path: root/android_webview/test/shell/AndroidManifest.xml
blob: 3482a279fe402bf34c804b96b60126a00dae3225 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="utf-8"?>

<!-- Copyright 2013 The Chromium Authors. All rights reserved.

  Use of this source code is governed by a BSD-style license that can be
  found in the LICENSE file.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="org.chromium.android_webview.shell">
  <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="23" />
  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  <uses-permission android:name="android.permission.INTERNET"/>
  <uses-permission android:name="android.permission.WAKE_LOCK"/>
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  <uses-permission android:name="android.permission.RECORD_AUDIO" />
  <uses-permission android:name="android.permission.RECORD_VIDEO" />
  <uses-permission android:name="android.permission.CAMERA" />

  <!-- Kerberos authentication -->
  <uses-permission android:name="android.permission.GET_ACCOUNTS" />
  <uses-permission android:name="android.permission.USE_CREDENTIALS" />

  <application android:name="org.chromium.android_webview.shell.AwShellApplication"
      android:label="AwShellApplication"
      android:hardwareAccelerated="true">
    <activity android:name="org.chromium.android_webview.shell.AwShellActivity"
        android:label="Android WebView Test Shell"
        android:configChanges="orientation|keyboardHidden|keyboard|screenSize">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
    <activity android:name="org.chromium.android_webview.test.AwTestRunnerActivity"
        android:label="AwTestRunnerActivity">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" />
      </intent-filter>
    </activity>
    <provider android:name="org.chromium.android_webview.test.TestContentProvider"
        android:authorities="org.chromium.android_webview.test.TestContentProvider" />
    <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERVICES"
               android:value="1"/>
    <service android:name="org.chromium.content.app.SandboxedProcessService0"
             android:process=":sandboxed_process0"
             android:isolatedProcess="true"
             android:exported="false" />
    <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SERVICES"
               android:value="0"/>
    <!-- See AwSecondBrowserProcessTest -->
    <service android:name="org.chromium.android_webview.test.SecondBrowserProcess"
             android:process=":second_browser_process"
             android:isolatedProcess="false"
             android:exported="false" />
  </application>
</manifest>