AndroidManifest.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. <permission
  25. android:name="${packageName}.permission.HOTSEAT_EDU"
  26. android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
  27. android:protectionLevel="signatureOrSystem" />
  28. <uses-permission android:name="android.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS" />
  29. <uses-permission android:name="android.permission.VIBRATE" />
  30. <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
  31. <uses-permission android:name="${packageName}.permission.HOTSEAT_EDU" />
  32. <application
  33. android:backupAgent="com.android.launcher3.LauncherBackupAgent"
  34. android:fullBackupOnly="true"
  35. android:fullBackupContent="@xml/backupscheme"
  36. android:hardwareAccelerated="true"
  37. android:icon="@drawable/ic_launcher_home"
  38. android:label="@string/derived_app_name"
  39. android:theme="@style/AppTheme"
  40. android:largeHeap="@bool/config_largeHeap"
  41. android:restoreAnyVersion="true"
  42. android:supportsRtl="true" >
  43. <service
  44. android:name="com.android.quickstep.TouchInteractionService"
  45. android:permission="android.permission.STATUS_BAR_SERVICE"
  46. android:directBootAware="true" >
  47. <intent-filter>
  48. <action android:name="android.intent.action.QUICKSTEP_SERVICE" />
  49. </intent-filter>
  50. </service>
  51. <activity android:name="com.android.quickstep.RecentsActivity"
  52. android:excludeFromRecents="true"
  53. android:launchMode="singleTask"
  54. android:clearTaskOnLaunch="true"
  55. android:stateNotNeeded="true"
  56. android:theme="@style/LauncherTheme"
  57. android:screenOrientation="unspecified"
  58. android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
  59. android:resizeableActivity="true"
  60. android:resumeWhilePausing="true"
  61. android:taskAffinity="" />
  62. <!-- Content provider to settings search. The autority should be same as the packageName -->
  63. <provider
  64. android:name="com.android.quickstep.LauncherSearchIndexablesProvider"
  65. android:authorities="${packageName}"
  66. android:grantUriPermissions="true"
  67. android:multiprocess="true"
  68. android:permission="android.permission.READ_SEARCH_INDEXABLES"
  69. android:exported="true">
  70. <intent-filter>
  71. <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" />
  72. </intent-filter>
  73. </provider>
  74. <!-- FileProvider used for sharing images. -->
  75. <provider
  76. android:name="androidx.core.content.FileProvider"
  77. android:authorities="${packageName}.overview.fileprovider"
  78. android:exported="false"
  79. android:grantUriPermissions="true">
  80. <meta-data
  81. android:name="android.support.FILE_PROVIDER_PATHS"
  82. android:resource="@xml/overview_file_provider_paths" />
  83. </provider>
  84. <service
  85. android:name="com.android.launcher3.uioverrides.dynamicui.WallpaperManagerCompatVL$ColorExtractionService"
  86. tools:node="remove" />
  87. <activity
  88. 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
  94. android:name="com.android.quickstep.interaction.GestureSandboxActivity"
  95. android:autoRemoveFromRecents="true"
  96. android:excludeFromRecents="true"
  97. android:screenOrientation="portrait">
  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. <activity
  104. android:name=".hybridhotseat.HotseatEduActivity"
  105. android:theme="@android:style/Theme.NoDisplay"
  106. android:noHistory="true"
  107. android:launchMode="singleTask"
  108. android:clearTaskOnLaunch="true"
  109. android:permission="${packageName}.permission.HOTSEAT_EDU">
  110. <intent-filter>
  111. <action android:name="com.android.launcher3.action.SHOW_HYBRID_HOTSEAT_EDU"/>
  112. <category android:name="android.intent.category.DEFAULT" />
  113. </intent-filter>
  114. </activity>
  115. </application>
  116. </manifest>