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

Side by Side Diff: remoting/android/host/AndroidManifest.xml

Issue 1917063002: [remoting android] Implement HostService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@android-host-show-state
Patch Set: Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- 2 <!--
3 Copyright 2016 The Chromium Authors. All rights reserved. Use of this 3 Copyright 2016 The Chromium Authors. All rights reserved. Use of this
4 source code is governed by a BSD-style license that can be found in the 4 source code is governed by a BSD-style license that can be found in the
5 LICENSE file. 5 LICENSE file.
6 --> 6 -->
7 7
8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
9 package="org.chromium.chromoting.host"> 9 package="org.chromium.chromoting.host">
10 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23"/> 10 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23"/>
11 <uses-permission android:name="android.permission.INTERNET"/> 11 <uses-permission android:name="android.permission.INTERNET"/>
12 <application android:label="CRD Host" 12 <application android:label="CRD Host"
13 android:name="org.chromium.chromoting.host.RemotingApplication" 13 android:name="org.chromium.chromoting.host.RemotingApplication"
14 android:theme="@style/Theme.AppCompat.Light.NoActionBar" 14 android:theme="@style/Theme.AppCompat.Light.NoActionBar"
15 android:allowBackup="false"> 15 android:allowBackup="false">
16 <meta-data 16 <meta-data
17 android:name="com.google.android.gms.version" 17 android:name="com.google.android.gms.version"
18 android:value="@integer/google_play_services_version"/> 18 android:value="@integer/google_play_services_version"/>
19 <activity android:name="org.chromium.chromoting.host.MainActivity" 19 <activity android:name="org.chromium.chromoting.host.MainActivity"
20 android:launchMode="singleTask"> 20 android:launchMode="singleTask">
21 <intent-filter> 21 <intent-filter>
22 <action android:name="android.intent.action.MAIN"/> 22 <action android:name="android.intent.action.MAIN"/>
23 <category android:name="android.intent.category.LAUNCHER"/> 23 <category android:name="android.intent.category.LAUNCHER"/>
24 </intent-filter> 24 </intent-filter>
25 </activity> 25 </activity>
26 <service android:name="org.chromium.chromoting.host.HostService"/>
26 </application> 27 </application>
27 </manifest> 28 </manifest>
OLDNEW
« no previous file with comments | « remoting/android/BUILD.gn ('k') | remoting/android/host/src/org/chromium/chromoting/host/HostService.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698