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

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

Issue 22657003: Fix crash when app is not yet authorized (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
« 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="org.chromium.chromoting" 3 package="org.chromium.chromoting"
4 android:versionCode="10" 4 android:versionCode="11"
5 android:versionName="0.10"> 5 android:versionName="0.11">
6 <uses-sdk android:minSdkVersion="14" 6 <uses-sdk android:minSdkVersion="14"
7 android:targetSdkVersion="14"/> 7 android:targetSdkVersion="14"/>
8 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> 8 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
9 <uses-permission android:name="android.permission.INTERNET"/> 9 <uses-permission android:name="android.permission.INTERNET"/>
10 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/> 10 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
11 <uses-permission android:name="android.permission.USE_CREDENTIALS"/> 11 <uses-permission android:name="android.permission.USE_CREDENTIALS"/>
12 <application android:label="@string/app_name" 12 <application android:label="@string/app_name"
13 android:icon="@drawable/chromoting128"> 13 android:icon="@drawable/chromoting128">
14 <activity android:name="Chromoting" 14 <activity android:name="Chromoting"
15 android:configChanges="orientation|screenSize"> 15 android:configChanges="orientation|screenSize">
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="Desktop" 21 <activity android:name="Desktop"
22 android:configChanges="orientation|screenSize" 22 android:configChanges="orientation|screenSize"
23 android:theme="@style/Theme_ElusiveActionBar" 23 android:theme="@style/Theme_ElusiveActionBar"
24 android:windowSoftInputMode="adjustResize"/> 24 android:windowSoftInputMode="adjustResize"/>
25 </application> 25 </application>
26 </manifest> 26 </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