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

Side by Side Diff: remoting/android/cast/AndroidManifest.xml.jinja2

Issue 451973002: Capabilities + Extensions + Cast Host Extension Support for Android client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="{{ APK_PACKAGE_NAME }}"> 3 package="{{ APK_PACKAGE_NAME }}">
4 <uses-sdk android:minSdkVersion="14" 4 <uses-sdk android:minSdkVersion="14"
5 android:targetSdkVersion="20"/> 5 android:targetSdkVersion="20"/>
6 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> 6 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
7 <uses-permission android:name="android.permission.INTERNET"/> 7 <uses-permission android:name="android.permission.INTERNET"/>
8 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/> 8 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
9 <uses-permission android:name="android.permission.USE_CREDENTIALS"/> 9 <uses-permission android:name="android.permission.USE_CREDENTIALS"/>
10 <application android:label="@string/product_name_android" 10 <application android:label="@string/product_name_android"
11 android:icon="@drawable/chromoting128" 11 android:icon="@drawable/chromoting128"
12 android:theme="@android:style/Theme.Holo" 12 android:theme="@android:style/Theme.Holo"
13 android:allowBackup="false"> 13 android:allowBackup="false">
14 <meta-data
15 android:name="com.google.android.gms.version"
16 android:value="@integer/google_play_services_version" />
14 <activity android:name="org.chromium.chromoting.Chromoting" 17 <activity android:name="org.chromium.chromoting.Chromoting"
15 android:configChanges="orientation|screenSize" 18 android:configChanges="orientation|screenSize"
16 android:theme="@style/MainTheme" 19 android:theme="@style/MainTheme"
17 android:launchMode="singleTask"> 20 android:launchMode="singleTask">
18 <intent-filter> 21 <intent-filter>
19 <action android:name="android.intent.action.MAIN"/> 22 <action android:name="android.intent.action.MAIN"/>
20 <category android:name="android.intent.category.LAUNCHER"/> 23 <category android:name="android.intent.category.LAUNCHER"/>
21 </intent-filter> 24 </intent-filter>
22 </activity> 25 </activity>
23 <activity 26 <activity
24 android:name="org.chromium.chromoting.ThirdPartyTokenFetcher$OAuthRe directActivity" 27 android:name="org.chromium.chromoting.ThirdPartyTokenFetcher$OAuthRe directActivity"
25 android:enabled="false" 28 android:enabled="false"
26 android:noHistory="true"> 29 android:noHistory="true">
27 <intent-filter> 30 <intent-filter>
28 <action android:name="android.intent.action.VIEW"/> 31 <action android:name="android.intent.action.VIEW"/>
29 <category android:name="android.intent.category.DEFAULT"/> 32 <category android:name="android.intent.category.DEFAULT"/>
30 <category android:name="android.intent.category.BROWSABLE"/> 33 <category android:name="android.intent.category.BROWSABLE"/>
31 <data android:scheme="{{ APK_PACKAGE_NAME }}"/> 34 <data android:scheme="{{ APK_PACKAGE_NAME }}"/>
32 <data android:path="/oauthredirect/"/> 35 <data android:path="/oauthredirect/"/>
33 </intent-filter> 36 </intent-filter>
34 </activity> 37 </activity>
35 <activity android:name="org.chromium.chromoting.Desktop" 38 <activity android:name="org.chromium.chromoting.Desktop"
36 android:configChanges="orientation|screenSize" 39 android:configChanges="orientation|screenSize"
37 android:windowSoftInputMode="adjustResize"/> 40 android:windowSoftInputMode="adjustResize"
41 android:theme="@style/Theme.AppCompat"/>
aiguha 2014/08/08 05:13:50 Desktop.java is now an ActionBarActivity part of t
38 <activity android:name="org.chromium.chromoting.HelpActivity" 42 <activity android:name="org.chromium.chromoting.HelpActivity"
39 android:configChanges="orientation|screenSize" 43 android:configChanges="orientation|screenSize"
40 android:uiOptions="splitActionBarWhenNarrow"/> 44 android:uiOptions="splitActionBarWhenNarrow"/>
41 </application> 45 </application>
42 </manifest> 46 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698