AndroidManifest.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. /*
  4. **
  5. ** Copyright 2017, The Android Open Source Project
  6. **
  7. ** Licensed under the Apache License, Version 2.0 (the "License");
  8. ** you may not use this file except in compliance with the License.
  9. ** You may obtain a copy of the License at
  10. **
  11. ** http://www.apache.org/licenses/LICENSE-2.0
  12. **
  13. ** Unless required by applicable law or agreed to in writing, software
  14. ** distributed under the License is distributed on an "AS IS" BASIS,
  15. ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. ** See the License for the specific language governing permissions and
  17. ** limitations under the License.
  18. */
  19. -->
  20. <manifest
  21. xmlns:android="http://schemas.android.com/apk/res/android"
  22. xmlns:tools="http://schemas.android.com/tools"
  23. package="com.android.launcher3" >
  24. <uses-sdk android:targetSdkVersion="28" android:minSdkVersion="28"/>
  25. <uses-permission android:name="android.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS" />
  26. <application
  27. android:backupAgent="com.android.launcher3.LauncherBackupAgent"
  28. android:fullBackupOnly="true"
  29. android:fullBackupContent="@xml/backupscheme"
  30. android:hardwareAccelerated="true"
  31. android:icon="@drawable/ic_launcher_home"
  32. android:label="@string/derived_app_name"
  33. android:theme="@style/LauncherTheme"
  34. android:largeHeap="@bool/config_largeHeap"
  35. android:restoreAnyVersion="true"
  36. android:supportsRtl="true" >
  37. <service
  38. android:name="com.android.quickstep.TouchInteractionService"
  39. android:permission="android.permission.STATUS_BAR_SERVICE" >
  40. <intent-filter>
  41. <action android:name="android.intent.action.QUICKSTEP_SERVICE" />
  42. </intent-filter>
  43. </service>
  44. <!-- STOPSHIP: Change exported to false once all the integration is complete.
  45. It is set to true so that the activity can be started from command line -->
  46. <activity android:name="com.android.quickstep.RecentsActivity"
  47. android:exported="true"
  48. android:excludeFromRecents="true"
  49. android:launchMode="singleTask"
  50. android:clearTaskOnLaunch="true"
  51. android:stateNotNeeded="true"
  52. android:theme="@style/LauncherTheme"
  53. android:screenOrientation="unspecified"
  54. android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
  55. android:resizeableActivity="true"
  56. android:resumeWhilePausing="true"
  57. android:taskAffinity="" />
  58. <!-- Content provider to settings search -->
  59. <provider
  60. android:name="com.android.quickstep.LauncherSearchIndexablesProvider"
  61. android:authorities="com.android.launcher3"
  62. android:grantUriPermissions="true"
  63. android:multiprocess="true"
  64. android:permission="android.permission.READ_SEARCH_INDEXABLES"
  65. android:exported="true">
  66. <intent-filter>
  67. <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" />
  68. </intent-filter>
  69. </provider>
  70. <service
  71. android:name="com.android.launcher3.uioverrides.dynamicui.WallpaperManagerCompatVL$ColorExtractionService"
  72. tools:node="remove" />
  73. </application>
  74. </manifest>