Index: android_webview/shell_apk/AndroidManifest.xml |
diff --git a/android_webview/shell_apk/AndroidManifest.xml b/android_webview/shell_apk/AndroidManifest.xml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..61a3308de15c52c7300e88d5cfdd059a9a8950a5 |
--- /dev/null |
+++ b/android_webview/shell_apk/AndroidManifest.xml |
@@ -0,0 +1,27 @@ |
+<?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"> |
+ |
+ <application android:name="org.chromium.android_webview.shell.AndroidWebViewTestShellApplication" |
+ android:label="AndroidWebViewTestShellApplication" android:hardwareAccelerated="false"> |
+ <activity android:name="org.chromium.android_webview.shell.AndroidWebViewTestShellActivity" |
+ android:label="Android WebView Test Shell"> |
+ <intent-filter> |
+ <action android:name="android.intent.action.MAIN" /> |
+ <category android:name="android.intent.category.LAUNCHER" /> |
+ </intent-filter> |
+ </activity> |
+ </application> |
+ |
+ <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="17" /> |
+ <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> |