Chromium Code Reviews| OLD | NEW |
|---|---|
| 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="21"/> | 5 android:targetSdkVersion="21"/> |
| 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 <uses-permission android:name="android.permission.NFC" /> | |
| 11 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | |
| 12 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | |
|
Sergey Ulanov
2015/07/13 19:26:19
nit: sort permissions alphabetically?
shichengfeng
2015/07/13 19:51:13
Done.
| |
| 10 <application android:label="@string/product_name_android" | 13 <application android:label="@string/product_name_android" |
| 11 android:icon="@mipmap/logo_remote_desktop_launcher" | 14 android:icon="@mipmap/logo_remote_desktop_launcher" |
| 12 android:theme="@style/BaseTheme" | 15 android:theme="@style/BaseTheme" |
| 13 android:allowBackup="false"> | 16 android:allowBackup="false"> |
| 14 <meta-data | 17 <meta-data |
| 15 android:name="com.google.android.gms.version" | 18 android:name="com.google.android.gms.version" |
| 16 android:value="@integer/google_play_services_version"/> | 19 android:value="@integer/google_play_services_version"/> |
| 17 <activity android:name="org.chromium.chromoting.Chromoting" | 20 <activity android:name="org.chromium.chromoting.Chromoting" |
| 18 android:configChanges="orientation|screenSize" | 21 android:configChanges="orientation|screenSize" |
| 19 android:theme="@style/BaseTheme.NavigationDrawer" | 22 android:theme="@style/BaseTheme.NavigationDrawer" |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 34 <category android:name="android.intent.category.DEFAULT"/> | 37 <category android:name="android.intent.category.DEFAULT"/> |
| 35 <category android:name="android.intent.category.BROWSABLE"/> | 38 <category android:name="android.intent.category.BROWSABLE"/> |
| 36 <data android:scheme="{{ APK_PACKAGE_NAME }}"/> | 39 <data android:scheme="{{ APK_PACKAGE_NAME }}"/> |
| 37 <data android:path="/oauthredirect/"/> | 40 <data android:path="/oauthredirect/"/> |
| 38 </intent-filter> | 41 </intent-filter> |
| 39 </activity> | 42 </activity> |
| 40 <activity android:name="org.chromium.chromoting.Desktop" | 43 <activity android:name="org.chromium.chromoting.Desktop" |
| 41 android:configChanges="orientation|screenSize|keyboard|keyboardH idden" | 44 android:configChanges="orientation|screenSize|keyboard|keyboardH idden" |
| 42 android:theme="@style/BaseTheme.Desktop" | 45 android:theme="@style/BaseTheme.Desktop" |
| 43 android:windowSoftInputMode="adjustResize"/> | 46 android:windowSoftInputMode="adjustResize"/> |
| 47 <activity android:name="org.chromium.chromoting.VRDesktop" | |
| 48 android:configChanges="orientation|screenSize|keyboard|keyboardH idden" | |
| 49 android:theme="@style/BaseTheme.Desktop" | |
| 50 android:windowSoftInputMode="adjustResize" | |
| 51 android:screenOrientation="landscape"> | |
| 52 <intent-filter> | |
| 53 <category android:name="com.google.intent.category.CARDBOARD" /> | |
| 54 </intent-filter> | |
| 55 </activity> | |
| 44 <activity android:name="org.chromium.chromoting.HelpActivity" | 56 <activity android:name="org.chromium.chromoting.HelpActivity" |
| 45 android:configChanges="orientation|screenSize" | 57 android:configChanges="orientation|screenSize" |
| 46 android:uiOptions="splitActionBarWhenNarrow"/> | 58 android:uiOptions="splitActionBarWhenNarrow"/> |
| 47 </application> | 59 </application> |
| 48 </manifest> | 60 </manifest> |
| OLD | NEW |