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

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

Issue 19967007: Various improvements to the Chromoting Android app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add comments to clarify ChromotingJniRuntime pointer lifetimes Created 7 years, 5 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/client/jni/chromoting_jni.h » ('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="1" 4 android:versionCode="2"
5 android:versionName="0.01"> 5 android:versionName="0.02">
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.USE_CREDENTIALS"/> 10 <uses-permission android:name="android.permission.USE_CREDENTIALS"/>
11 <application android:label="@string/app_name" 11 <application android:label="@string/app_name"
12 android:icon="@drawable/chromoting128"> 12 android:icon="@drawable/chromoting128">
13 <activity android:name="Chromoting" 13 <activity android:name="Chromoting"
14 android:configChanges="orientation|screenSize"> 14 android:configChanges="orientation|screenSize">
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="Desktop" 20 <activity android:name="Desktop"
21 android:configChanges="orientation|screenSize"/> 21 android:configChanges="orientation|screenSize"
22 android:theme="@android:style/Theme.DeviceDefault.NoActionBar.Fu llscreen"/>
22 </application> 23 </application>
23 </manifest> 24 </manifest>
OLDNEW
« no previous file with comments | « no previous file | remoting/client/jni/chromoting_jni.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698