| 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="23"/> | 5 android:targetSdkVersion="24"/> |
| 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 | 8 |
| 9 <application android:label="@string/product_name_android" | 9 <application android:label="@string/product_name_android" |
| 10 android:name="org.chromium.chromoting.RemotingApplication" | 10 android:name="org.chromium.chromoting.RemotingApplication" |
| 11 android:icon="@mipmap/logo_remote_desktop_launcher" | 11 android:icon="@mipmap/logo_remote_desktop_launcher" |
| 12 android:theme="@style/BaseTheme" | 12 android:theme="@style/BaseTheme" |
| 13 android:allowBackup="false"> | 13 android:allowBackup="false" |
| 14 android:resizeableActivity="true" |
| 15 android:supportsPictureInPicture="false"> |
| 14 <meta-data | 16 <meta-data |
| 15 android:name="com.google.android.gms.version" | 17 android:name="com.google.android.gms.version" |
| 16 android:value="@integer/google_play_services_version"/> | 18 android:value="@integer/google_play_services_version"/> |
| 17 <activity | 19 <activity |
| 18 android:name="org.chromium.chromoting.Chromoting" | 20 android:name="org.chromium.chromoting.Chromoting" |
| 19 android:configChanges="orientation|screenSize" | 21 android:configChanges="orientation|screenSize" |
| 20 android:exported="true" | 22 android:exported="true" |
| 21 android:theme="@style/BaseTheme.NavigationDrawer" | 23 android:theme="@style/BaseTheme.NavigationDrawer" |
| 22 android:launchMode="singleTask"> | 24 android:launchMode="singleTask"> |
| 23 <intent-filter> | 25 <intent-filter> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 47 <activity | 49 <activity |
| 48 android:name="org.chromium.chromoting.help.HelpActivity" | 50 android:name="org.chromium.chromoting.help.HelpActivity" |
| 49 android:configChanges="orientation|screenSize" | 51 android:configChanges="orientation|screenSize" |
| 50 android:exported="false" | 52 android:exported="false" |
| 51 android:uiOptions="splitActionBarWhenNarrow"/> | 53 android:uiOptions="splitActionBarWhenNarrow"/> |
| 52 <activity | 54 <activity |
| 53 android:name="org.chromium.chromoting.help.CreditsActivity" | 55 android:name="org.chromium.chromoting.help.CreditsActivity" |
| 54 android:exported="true"/> | 56 android:exported="true"/> |
| 55 </application> | 57 </application> |
| 56 </manifest> | 58 </manifest> |
| OLD | NEW |