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

Unified Diff: webapk/shell_apk/AndroidManifest.xml

Issue 1965583002: Move //webapk to //chrome/android/webapk (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
« no previous file with comments | « webapk/libs/runtime_library_version.gni ('k') | webapk/shell_apk/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webapk/shell_apk/AndroidManifest.xml
diff --git a/webapk/shell_apk/AndroidManifest.xml b/webapk/shell_apk/AndroidManifest.xml
deleted file mode 100644
index 21b8b1d9c010338493c4c5279c1548cb87264374..0000000000000000000000000000000000000000
--- a/webapk/shell_apk/AndroidManifest.xml
+++ /dev/null
@@ -1,77 +0,0 @@
-<?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" />
-
- <uses-permission-sdk-23 android:name="android.permission.ACCESS_FINE_LOCATION"/>
- <uses-permission-sdk-23 android:name="android.permission.CAMERA"/>
- <uses-permission-sdk-23 android:name="android.permission.RECORD_AUDIO"/>
-
- <application
- android:name="org.chromium.webapk.shell_apk.WebApkApplication"
- android:icon="@drawable/app_icon"
- android:label="mintingapp"
- 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="mac" android:value="{{ mac }}" />
- <meta-data android:name="scope" android:value="{{ scope }}" />
- <service
- android:name="org.chromium.webapk.shell_apk.WebApkServiceFactory"
- android:exported="true">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.MINTED_API" />
- </intent-filter>
- </service>
- <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERVICES"
- android:value="3"/>
- <service android:name="org.chromium.content.app.SandboxedProcessService0"
- android:isolatedProcess="true"
- android:process=":sandboxed_process0"
- android:exported="true"/>
- <service android:name="org.chromium.content.app.SandboxedProcessService1"
- android:isolatedProcess="true"
- android:process=":sandboxed_process1"
- android:exported="true"/>
- <service android:name="org.chromium.content.app.SandboxedProcessService2"
- android:isolatedProcess="true"
- android:process=":sandboxed_process2"
- android:exported="true"/>
-
- <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SERVICES"
- android:value="3"/>
- <service android:name="org.chromium.content.app.PrivilegedProcessService0"
- android:process=":privileged_process0"
- android:exported="true"/>
- <service android:name="org.chromium.content.app.PrivilegedProcessService1"
- android:process=":privileged_process1"
- android:exported="true"/>
- <service android:name="org.chromium.content.app.PrivilegedProcessService2"
- android:process=":privileged_process2"
- android:exported="true"/>
- </application>
-
-</manifest>
« no previous file with comments | « webapk/libs/runtime_library_version.gni ('k') | webapk/shell_apk/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698