 Chromium Code Reviews
 Chromium Code Reviews Issue 1960853002:
  Initial CL for Web APKs  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 1960853002:
  Initial CL for Web APKs  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| Index: webapk/shell_apk/AndroidManifest.xml | 
| diff --git a/webapk/shell_apk/AndroidManifest.xml b/webapk/shell_apk/AndroidManifest.xml | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..e0adf6f1942a0ae612eaf29bac6f907794230b81 | 
| --- /dev/null | 
| +++ b/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="mintingapp" | 
| 
Yaron
2016/05/09 13:25:52
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> |