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

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

Issue 213653003: Use shorter official product name for Android Chromoting client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | remoting/resources/remoting_strings.grd » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="14"/> 5 android:targetSdkVersion="14"/>
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" 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 <activity android:name="org.chromium.chromoting.Chromoting" 13 <activity android:name="org.chromium.chromoting.Chromoting"
14 android:configChanges="orientation|screenSize" 14 android:configChanges="orientation|screenSize"
15 android:theme="@style/MainTheme"> 15 android:theme="@style/MainTheme">
16 <intent-filter> 16 <intent-filter>
17 <action android:name="android.intent.action.MAIN"/> 17 <action android:name="android.intent.action.MAIN"/>
18 <category android:name="android.intent.category.LAUNCHER"/> 18 <category android:name="android.intent.category.LAUNCHER"/>
19 </intent-filter> 19 </intent-filter>
20 </activity> 20 </activity>
21 <activity android:name="org.chromium.chromoting.Desktop" 21 <activity android:name="org.chromium.chromoting.Desktop"
22 android:configChanges="orientation|screenSize" 22 android:configChanges="orientation|screenSize"
23 android:windowSoftInputMode="adjustResize"/> 23 android:windowSoftInputMode="adjustResize"/>
24 <activity android:name="org.chromium.chromoting.HelpActivity" 24 <activity android:name="org.chromium.chromoting.HelpActivity"
25 android:configChanges="orientation|screenSize" 25 android:configChanges="orientation|screenSize"
26 android:uiOptions="splitActionBarWhenNarrow"/> 26 android:uiOptions="splitActionBarWhenNarrow"/>
27 </application> 27 </application>
28 </manifest> 28 </manifest>
OLDNEW
« no previous file with comments | « no previous file | remoting/resources/remoting_strings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698