| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 | 2 |
| 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 package="org.chromium.chromecast.shell"> | 9 package="org.chromium.chromecast.shell"> |
| 10 | 10 |
| 11 <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="22" /> | 11 <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="22" /> |
| 12 | 12 |
| 13 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | 13 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
| 14 <uses-permission android:name="android.permission.INTERNET"/> | 14 <uses-permission android:name="android.permission.INTERNET"/> |
| 15 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> | 15 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> |
| 16 <uses-permission android:name="android.permission.WAKE_LOCK"/> | 16 <uses-permission android:name="android.permission.WAKE_LOCK"/> |
| 17 | 17 |
| 18 <application android:name="org.chromium.chromecast.shell.CastApplication" | 18 <application android:name="org.chromium.chromecast.shell.CastApplication" |
| 19 android:icon="@mipmap/app_icon" | 19 android:icon="@mipmap/app_icon" |
| 20 android:label="@string/app_name"> | 20 android:label="@string/app_name"> |
| 21 <activity android:name="org.chromium.chromecast.shell.CastShellActivity" | 21 <activity android:name="org.chromium.chromecast.shell.CastWebContentsAct
ivity" |
| 22 android:theme="@style/CastShellTheme" | 22 android:theme="@style/CastShellTheme" |
| 23 android:exported="true" | 23 android:exported="true" |
| 24 android:hardwareAccelerated="true" | 24 android:hardwareAccelerated="true" |
| 25 android:taskAffinity=".CastShellActivity" | 25 android:launchMode="standard" |
| 26 android:taskAffinity=".CastWebContentsActivity" |
| 26 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" | 27 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" |
| 27 android:excludeFromRecents="true" | 28 android:excludeFromRecents="true" |
| 28 android:noHistory="true"> | 29 android:noHistory="true"> |
| 29 <intent-filter> | 30 <intent-filter> |
| 30 <action android:name="android.intent.action.MAIN"/> | 31 <action android:name="android.intent.action.MAIN"/> |
| 31 <category android:name="android.intent.category.LAUNCHER"/> | 32 <category android:name="android.intent.category.LAUNCHER"/> |
| 32 </intent-filter> | 33 </intent-filter> |
| 33 </activity> | 34 </activity> |
| 34 | 35 |
| 35 <!-- The following service entries exist in order to allow us to | 36 <!-- The following service entries exist in order to allow us to |
| (...skipping 13 matching lines...) Expand all Loading... |
| 49 android:value="{{ num_privileged_services }}"/> | 50 android:value="{{ num_privileged_services }}"/> |
| 50 {% for i in range(num_privileged_services) %} | 51 {% for i in range(num_privileged_services) %} |
| 51 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" | 52 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" |
| 52 android:process=":privileged_process{{ i }}" | 53 android:process=":privileged_process{{ i }}" |
| 53 android:isolatedProcess="false" | 54 android:isolatedProcess="false" |
| 54 android:exported="false" /> | 55 android:exported="false" /> |
| 55 {% endfor %} | 56 {% endfor %} |
| 56 </application> | 57 </application> |
| 57 | 58 |
| 58 </manifest> | 59 </manifest> |
| OLD | NEW |