Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(793)

Unified Diff: chrome/android/webapk/shell_apk/AndroidManifest.xml

Issue 1960853002: Initial CL for Web APKs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/webapk/shell_apk/AndroidManifest.xml
diff --git a/chrome/android/webapk/shell_apk/AndroidManifest.xml b/chrome/android/webapk/shell_apk/AndroidManifest.xml
new file mode 100644
index 0000000000000000000000000000000000000000..62aa4048d2cd68de2a4040b069c0d24f157009cc
--- /dev/null
+++ b/chrome/android/webapk/shell_apk/AndroidManifest.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2015 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="{{ manifest_package }}"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <uses-sdk
+ android:minSdkVersion="16"
+ android:targetSdkVersion="23" />
+
+ <application
+ android:icon="@drawable/app_icon"
+ android:label="WebAPK Sample App"
+ android:allowBackup="false">
+ <activity android:name="org.chromium.webapk.shell_apk.MainActivity"
+ android:theme="@android:style/Theme.Translucent.NoTitleBar">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ <meta-data android:name="runtimeHost" android:value="{{ runtime_host }}" />
+ <meta-data android:name="hostUrl" android:value="{{ host_url }}" />
+ <meta-data android:name="mac" android:value="{{ mac }}" />
+ <meta-data android:name="scope" android:value="{{ scope }}" />
+ </application>
+</manifest>

Powered by Google App Engine
This is Rietveld 408576698