blob: 7592063c46344536c38207a8d9b7785c229bec01 [file] [log] [blame]
<?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"
xmlns:tools="http://schemas.android.com/tools"
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>
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="https" android:host="{{ scope_url_host }}" android:pathPrefix="/"></data>
</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="scope" android:value="{{ scope_url }}" />
<service
android:name="org.chromium.webapk.shell_apk.WebApkServiceFactory"
android:exported="true"
tools:ignore="ExportedService">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.WEBAPK_API" />
</intent-filter>
</service>
<meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERVICES"
android:value="3"/>
<meta-data android:name="org.chromium.content.browser.SANDBOXED_SERVICES_NAME"
android:value="org.chromium.webapk.lib.common.WebApkSandboxedProcessService"/>
<service android:name="org.chromium.webapk.lib.common.WebApkSandboxedProcessService0"
android:isolatedProcess="true"
android:process=":webapk_sandboxed_process0"
android:exported="true"
tools:ignore="ExportedService"/>
<service android:name="org.chromium.webapk.lib.common.WebApkSandboxedProcessService1"
android:isolatedProcess="true"
android:process=":webapk_sandboxed_process1"
android:exported="true"
tools:ignore="ExportedService"/>
<service android:name="org.chromium.webapk.lib.common.WebApkSandboxedProcessService2"
android:isolatedProcess="true"
android:process=":webapk_sandboxed_process2"
android:exported="true"
tools:ignore="ExportedService"/>
</application>
</manifest>