AndroidManifest.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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 xmlns:android="http://schemas.android.com/apk/res/android"
  21. xmlns:tools="http://schemas.android.com/tools"
  22. package="com.android.launcher3">
  23. <uses-permission android:name="android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS" />
  24. <uses-permission android:name="android.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS"/>
  25. <uses-permission android:name="android.permission.VIBRATE"/>
  26. <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>
  27. <uses-permission android:name="android.permission.START_TASKS_FROM_RECENTS"/>
  28. <uses-permission android:name="android.permission.REMOVE_TASKS"/>
  29. <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
  30. <uses-permission android:name="android.permission.MANAGE_ACTIVITY_TASKS"/>
  31. <uses-permission android:name="android.permission.STATUS_BAR"/>
  32. <uses-permission android:name="android.permission.STOP_APP_SWITCHES"/>
  33. <uses-permission android:name="android.permission.SET_ORIENTATION"/>
  34. <uses-permission android:name="android.permission.READ_FRAME_BUFFER"/>
  35. <uses-permission android:name="android.permission.MANAGE_ACCESSIBILITY"/>
  36. <uses-permission android:name="android.permission.MONITOR_INPUT"/>
  37. <uses-permission android:name="android.permission.ALLOW_SLIPPERY_TOUCHES"/>
  38. <uses-permission android:name="android.permission.ACCESS_SHORTCUTS"/>
  39. <uses-permission android:name="android.permission.SYSTEM_APPLICATION_OVERLAY" />
  40. <application android:backupAgent="com.android.launcher3.LauncherBackupAgent"
  41. android:fullBackupOnly="true"
  42. android:fullBackupContent="@xml/backupscheme"
  43. android:hardwareAccelerated="true"
  44. android:icon="@drawable/ic_launcher_home"
  45. android:label="@string/derived_app_name"
  46. android:theme="@style/AppTheme"
  47. android:largeHeap="@bool/config_largeHeap"
  48. android:restoreAnyVersion="true"
  49. android:supportsRtl="true">
  50. <service android:name="com.android.quickstep.TouchInteractionService"
  51. android:permission="android.permission.STATUS_BAR_SERVICE"
  52. android:directBootAware="true"
  53. android:exported="true">
  54. <intent-filter>
  55. <action android:name="android.intent.action.QUICKSTEP_SERVICE"/>
  56. </intent-filter>
  57. </service>
  58. <activity android:name="com.android.quickstep.RecentsActivity"
  59. android:excludeFromRecents="true"
  60. android:launchMode="singleTask"
  61. android:clearTaskOnLaunch="true"
  62. android:stateNotNeeded="true"
  63. android:theme="@style/LauncherTheme"
  64. android:screenOrientation="unspecified"
  65. android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
  66. android:resizeableActivity="true"
  67. android:resumeWhilePausing="true"
  68. android:taskAffinity=""/>
  69. <!-- Content provider to settings search. The autority should be same as the packageName -->
  70. <provider android:name="com.android.quickstep.LauncherSearchIndexablesProvider"
  71. android:authorities="${packageName}"
  72. android:grantUriPermissions="true"
  73. android:multiprocess="true"
  74. android:permission="android.permission.READ_SEARCH_INDEXABLES"
  75. android:exported="true">
  76. <intent-filter>
  77. <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER"/>
  78. </intent-filter>
  79. </provider>
  80. <!-- FileProvider used for sharing images. -->
  81. <provider android:name="androidx.core.content.FileProvider"
  82. android:authorities="${packageName}.overview.fileprovider"
  83. android:exported="false"
  84. android:grantUriPermissions="true">
  85. <meta-data android:name="android.support.FILE_PROVIDER_PATHS"
  86. android:resource="@xml/overview_file_provider_paths"/>
  87. </provider>
  88. <activity android:name="com.android.launcher3.proxy.ProxyActivityStarter"
  89. android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
  90. android:launchMode="singleTask"
  91. android:clearTaskOnLaunch="true"
  92. android:exported="false"/>
  93. <activity android:name="com.android.quickstep.interaction.GestureSandboxActivity"
  94. android:autoRemoveFromRecents="true"
  95. android:excludeFromRecents="true"
  96. android:theme="@style/GestureTutorialActivity"
  97. android:exported="true">
  98. <intent-filter>
  99. <action android:name="com.android.quickstep.action.GESTURE_SANDBOX"/>
  100. <category android:name="android.intent.category.DEFAULT"/>
  101. </intent-filter>
  102. </activity>
  103. <!--
  104. Activity following gesture nav onboarding.
  105. It's protected by android.permission.REBOOT to ensure that only system apps can start it
  106. (setup wizard already has this permission)
  107. -->
  108. <activity android:name="com.android.quickstep.interaction.AllSetActivity"
  109. android:autoRemoveFromRecents="true"
  110. android:excludeFromRecents="true"
  111. android:permission="android.permission.REBOOT"
  112. android:theme="@style/AllSetTheme"
  113. android:label="@string/allset_title"
  114. android:exported="true">
  115. <intent-filter>
  116. <action android:name="com.android.quickstep.action.GESTURE_ONBOARDING_ALL_SET"/>
  117. <category android:name="android.intent.category.DEFAULT"/>
  118. </intent-filter>
  119. </activity>
  120. </application>
  121. </manifest>