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

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

Issue 1873383002: [remoting android] Move JNI loading to Application.onCreate() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@android-host-add-native
Patch Set: rebase, (c) 2016 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 <application android:label="CRD Host" 11 <application android:label="CRD Host"
12 android:name="org.chromium.chromoting.host.RemotingApplication"
12 android:theme="@style/Theme.AppCompat.Light.NoActionBar" 13 android:theme="@style/Theme.AppCompat.Light.NoActionBar"
13 android:allowBackup="false"> 14 android:allowBackup="false">
14 <activity android:name="org.chromium.chromoting.host.MainActivity" 15 <activity android:name="org.chromium.chromoting.host.MainActivity"
15 android:launchMode="singleTask"> 16 android:launchMode="singleTask">
16 <intent-filter> 17 <intent-filter>
17 <action android:name="android.intent.action.MAIN"/> 18 <action android:name="android.intent.action.MAIN"/>
18 <category android:name="android.intent.category.LAUNCHER"/> 19 <category android:name="android.intent.category.LAUNCHER"/>
19 </intent-filter> 20 </intent-filter>
20 </activity> 21 </activity>
21 </application> 22 </application>
22 </manifest> 23 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698