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

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

Issue 179003006: Add Help & feedback screens to Android Chromoting client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove whitespace change Created 6 years, 9 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/android/java/src/org/chromium/chromoting/Chromoting.java » ('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"
11 android:icon="@drawable/chromoting128"> 11 android:icon="@drawable/chromoting128">
12 <activity android:name="org.chromium.chromoting.Chromoting" 12 <activity android:name="org.chromium.chromoting.Chromoting"
13 android:configChanges="orientation|screenSize" 13 android:configChanges="orientation|screenSize"
14 android:theme="@style/MainTheme"> 14 android:theme="@style/MainTheme">
15 <intent-filter> 15 <intent-filter>
16 <action android:name="android.intent.action.MAIN"/> 16 <action android:name="android.intent.action.MAIN"/>
17 <category android:name="android.intent.category.LAUNCHER"/> 17 <category android:name="android.intent.category.LAUNCHER"/>
18 </intent-filter> 18 </intent-filter>
19 </activity> 19 </activity>
20 <activity android:name="org.chromium.chromoting.Desktop" 20 <activity android:name="org.chromium.chromoting.Desktop"
21 android:configChanges="orientation|screenSize" 21 android:configChanges="orientation|screenSize"
22 android:windowSoftInputMode="adjustResize"/> 22 android:windowSoftInputMode="adjustResize"/>
23 <activity android:name="org.chromium.chromoting.HelpActivity"
24 android:configChanges="orientation|screenSize"
25 android:uiOptions="splitActionBarWhenNarrow"/>
23 </application> 26 </application>
24 </manifest> 27 </manifest>
OLDNEW
« no previous file with comments | « no previous file | remoting/android/java/src/org/chromium/chromoting/Chromoting.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698