| Index: android_webview/java/AndroidManifest.xml
|
| diff --git a/android_webview/java/AndroidManifest.xml b/android_webview/java/AndroidManifest.xml
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6079c675e285ba6e4eca4473762e6670e2f011e1
|
| --- /dev/null
|
| +++ b/android_webview/java/AndroidManifest.xml
|
| @@ -0,0 +1,28 @@
|
| +<?xml version="1.0" encoding="utf-8"?>
|
| +
|
| +<!-- Copyright (c) 2012 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">
|
| +
|
| +<application android:name="org.chromium.android_webview.test.AndroidWebViewTestRunnerApplication"
|
| + android:label="AndroidWebViewTestRunnerApplication"
|
| + android:debuggable="true">
|
| + <activity android:name="org.chromium.android_webview.test.AndroidWebViewTestRunnerActivity"
|
| + android:label="AndroidWebViewTestRunnerActivity">
|
| + <intent-filter>
|
| + <action android:name="android.intent.action.MAIN" />
|
| + <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" />
|
| + </intent-filter>
|
| + </activity>
|
| +</application>
|
| +
|
| + <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="16" />
|
| + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
| + <uses-permission android:name="android.permission.INTERNET"/>
|
| + <uses-permission android:name="android.permission.WAKE_LOCK"/>
|
| +</manifest>
|
|
|