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

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

Issue 19500017: Implement basic point-and-touch mouse input for Android client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Bump version number to 0.01 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | remoting/android/java/src/org/chromium/chromoting/DesktopView.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="1" 4 android:versionCode="1"
5 android:versionName="1.0"> 5 android:versionName="0.01">
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"/>
11 <uses-permission android:name="android.permission.USE_CREDENTIALS"/> 10 <uses-permission android:name="android.permission.USE_CREDENTIALS"/>
12 <application android:label="@string/app_name" 11 <application android:label="@string/app_name"
13 android:icon="@drawable/chromoting128"> 12 android:icon="@drawable/chromoting128">
14 <activity android:name="Chromoting" 13 <activity android:name="Chromoting"
15 android:configChanges="orientation|screenSize"> 14 android:configChanges="orientation|screenSize">
16 <intent-filter> 15 <intent-filter>
17 <action android:name="android.intent.action.MAIN"/> 16 <action android:name="android.intent.action.MAIN"/>
18 <category android:name="android.intent.category.LAUNCHER"/> 17 <category android:name="android.intent.category.LAUNCHER"/>
19 </intent-filter> 18 </intent-filter>
20 </activity> 19 </activity>
21 <activity android:name="Desktop" 20 <activity android:name="Desktop"
22 android:configChanges="orientation|screenSize"/> 21 android:configChanges="orientation|screenSize"/>
23 </application> 22 </application>
24 </manifest> 23 </manifest>
OLDNEW
« no previous file with comments | « no previous file | remoting/android/java/src/org/chromium/chromoting/DesktopView.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698