class_editorexportplatformandroid.rst 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/4.2/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.2/platform/android/doc_classes/EditorExportPlatformAndroid.xml.
  6. .. _class_EditorExportPlatformAndroid:
  7. EditorExportPlatformAndroid
  8. ===========================
  9. **Inherits:** :ref:`EditorExportPlatform<class_EditorExportPlatform>` **<** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
  10. Exporter for Android.
  11. .. rst-class:: classref-introduction-group
  12. Tutorials
  13. ---------
  14. - :doc:`Exporting for Android <../tutorials/export/exporting_for_android>`
  15. - :doc:`Gradle builds for Android <../tutorials/export/android_gradle_build>`
  16. - :doc:`Android plugins documentation index <../tutorials/platform/index>`
  17. .. rst-class:: classref-reftable-group
  18. Properties
  19. ----------
  20. .. table::
  21. :widths: auto
  22. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  23. | :ref:`String<class_String>` | :ref:`apk_expansion/SALT<class_EditorExportPlatformAndroid_property_apk_expansion/SALT>` |
  24. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  25. | :ref:`bool<class_bool>` | :ref:`apk_expansion/enable<class_EditorExportPlatformAndroid_property_apk_expansion/enable>` |
  26. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  27. | :ref:`String<class_String>` | :ref:`apk_expansion/public_key<class_EditorExportPlatformAndroid_property_apk_expansion/public_key>` |
  28. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  29. | :ref:`bool<class_bool>` | :ref:`architectures/arm64-v8a<class_EditorExportPlatformAndroid_property_architectures/arm64-v8a>` |
  30. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  31. | :ref:`bool<class_bool>` | :ref:`architectures/armeabi-v7a<class_EditorExportPlatformAndroid_property_architectures/armeabi-v7a>` |
  32. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  33. | :ref:`bool<class_bool>` | :ref:`architectures/x86<class_EditorExportPlatformAndroid_property_architectures/x86>` |
  34. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  35. | :ref:`bool<class_bool>` | :ref:`architectures/x86_64<class_EditorExportPlatformAndroid_property_architectures/x86_64>` |
  36. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  37. | :ref:`String<class_String>` | :ref:`command_line/extra_args<class_EditorExportPlatformAndroid_property_command_line/extra_args>` |
  38. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  39. | :ref:`String<class_String>` | :ref:`custom_template/debug<class_EditorExportPlatformAndroid_property_custom_template/debug>` |
  40. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  41. | :ref:`String<class_String>` | :ref:`custom_template/release<class_EditorExportPlatformAndroid_property_custom_template/release>` |
  42. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  43. | :ref:`int<class_int>` | :ref:`gradle_build/export_format<class_EditorExportPlatformAndroid_property_gradle_build/export_format>` |
  44. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`String<class_String>` | :ref:`gradle_build/min_sdk<class_EditorExportPlatformAndroid_property_gradle_build/min_sdk>` |
  46. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  47. | :ref:`String<class_String>` | :ref:`gradle_build/target_sdk<class_EditorExportPlatformAndroid_property_gradle_build/target_sdk>` |
  48. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  49. | :ref:`bool<class_bool>` | :ref:`gradle_build/use_gradle_build<class_EditorExportPlatformAndroid_property_gradle_build/use_gradle_build>` |
  50. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  51. | :ref:`bool<class_bool>` | :ref:`graphics/opengl_debug<class_EditorExportPlatformAndroid_property_graphics/opengl_debug>` |
  52. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  53. | :ref:`String<class_String>` | :ref:`keystore/debug<class_EditorExportPlatformAndroid_property_keystore/debug>` |
  54. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`String<class_String>` | :ref:`keystore/debug_password<class_EditorExportPlatformAndroid_property_keystore/debug_password>` |
  56. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`String<class_String>` | :ref:`keystore/debug_user<class_EditorExportPlatformAndroid_property_keystore/debug_user>` |
  58. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`String<class_String>` | :ref:`keystore/release<class_EditorExportPlatformAndroid_property_keystore/release>` |
  60. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`String<class_String>` | :ref:`keystore/release_password<class_EditorExportPlatformAndroid_property_keystore/release_password>` |
  62. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`String<class_String>` | :ref:`keystore/release_user<class_EditorExportPlatformAndroid_property_keystore/release_user>` |
  64. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`String<class_String>` | :ref:`launcher_icons/adaptive_background_432x432<class_EditorExportPlatformAndroid_property_launcher_icons/adaptive_background_432x432>` |
  66. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`String<class_String>` | :ref:`launcher_icons/adaptive_foreground_432x432<class_EditorExportPlatformAndroid_property_launcher_icons/adaptive_foreground_432x432>` |
  68. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | :ref:`String<class_String>` | :ref:`launcher_icons/main_192x192<class_EditorExportPlatformAndroid_property_launcher_icons/main_192x192>` |
  70. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`int<class_int>` | :ref:`package/app_category<class_EditorExportPlatformAndroid_property_package/app_category>` |
  72. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | :ref:`bool<class_bool>` | :ref:`package/exclude_from_recents<class_EditorExportPlatformAndroid_property_package/exclude_from_recents>` |
  74. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | :ref:`String<class_String>` | :ref:`package/name<class_EditorExportPlatformAndroid_property_package/name>` |
  76. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  77. | :ref:`bool<class_bool>` | :ref:`package/retain_data_on_uninstall<class_EditorExportPlatformAndroid_property_package/retain_data_on_uninstall>` |
  78. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  79. | :ref:`bool<class_bool>` | :ref:`package/show_as_launcher_app<class_EditorExportPlatformAndroid_property_package/show_as_launcher_app>` |
  80. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  81. | :ref:`bool<class_bool>` | :ref:`package/show_in_android_tv<class_EditorExportPlatformAndroid_property_package/show_in_android_tv>` |
  82. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  83. | :ref:`bool<class_bool>` | :ref:`package/show_in_app_library<class_EditorExportPlatformAndroid_property_package/show_in_app_library>` |
  84. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  85. | :ref:`bool<class_bool>` | :ref:`package/signed<class_EditorExportPlatformAndroid_property_package/signed>` |
  86. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  87. | :ref:`String<class_String>` | :ref:`package/unique_name<class_EditorExportPlatformAndroid_property_package/unique_name>` |
  88. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  89. | :ref:`bool<class_bool>` | :ref:`permissions/access_checkin_properties<class_EditorExportPlatformAndroid_property_permissions/access_checkin_properties>` |
  90. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  91. | :ref:`bool<class_bool>` | :ref:`permissions/access_coarse_location<class_EditorExportPlatformAndroid_property_permissions/access_coarse_location>` |
  92. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  93. | :ref:`bool<class_bool>` | :ref:`permissions/access_fine_location<class_EditorExportPlatformAndroid_property_permissions/access_fine_location>` |
  94. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  95. | :ref:`bool<class_bool>` | :ref:`permissions/access_location_extra_commands<class_EditorExportPlatformAndroid_property_permissions/access_location_extra_commands>` |
  96. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  97. | :ref:`bool<class_bool>` | :ref:`permissions/access_mock_location<class_EditorExportPlatformAndroid_property_permissions/access_mock_location>` |
  98. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  99. | :ref:`bool<class_bool>` | :ref:`permissions/access_network_state<class_EditorExportPlatformAndroid_property_permissions/access_network_state>` |
  100. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  101. | :ref:`bool<class_bool>` | :ref:`permissions/access_surface_flinger<class_EditorExportPlatformAndroid_property_permissions/access_surface_flinger>` |
  102. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  103. | :ref:`bool<class_bool>` | :ref:`permissions/access_wifi_state<class_EditorExportPlatformAndroid_property_permissions/access_wifi_state>` |
  104. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  105. | :ref:`bool<class_bool>` | :ref:`permissions/account_manager<class_EditorExportPlatformAndroid_property_permissions/account_manager>` |
  106. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  107. | :ref:`bool<class_bool>` | :ref:`permissions/add_voicemail<class_EditorExportPlatformAndroid_property_permissions/add_voicemail>` |
  108. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  109. | :ref:`bool<class_bool>` | :ref:`permissions/authenticate_accounts<class_EditorExportPlatformAndroid_property_permissions/authenticate_accounts>` |
  110. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  111. | :ref:`bool<class_bool>` | :ref:`permissions/battery_stats<class_EditorExportPlatformAndroid_property_permissions/battery_stats>` |
  112. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  113. | :ref:`bool<class_bool>` | :ref:`permissions/bind_accessibility_service<class_EditorExportPlatformAndroid_property_permissions/bind_accessibility_service>` |
  114. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  115. | :ref:`bool<class_bool>` | :ref:`permissions/bind_appwidget<class_EditorExportPlatformAndroid_property_permissions/bind_appwidget>` |
  116. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  117. | :ref:`bool<class_bool>` | :ref:`permissions/bind_device_admin<class_EditorExportPlatformAndroid_property_permissions/bind_device_admin>` |
  118. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  119. | :ref:`bool<class_bool>` | :ref:`permissions/bind_input_method<class_EditorExportPlatformAndroid_property_permissions/bind_input_method>` |
  120. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  121. | :ref:`bool<class_bool>` | :ref:`permissions/bind_nfc_service<class_EditorExportPlatformAndroid_property_permissions/bind_nfc_service>` |
  122. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  123. | :ref:`bool<class_bool>` | :ref:`permissions/bind_notification_listener_service<class_EditorExportPlatformAndroid_property_permissions/bind_notification_listener_service>` |
  124. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  125. | :ref:`bool<class_bool>` | :ref:`permissions/bind_print_service<class_EditorExportPlatformAndroid_property_permissions/bind_print_service>` |
  126. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  127. | :ref:`bool<class_bool>` | :ref:`permissions/bind_remoteviews<class_EditorExportPlatformAndroid_property_permissions/bind_remoteviews>` |
  128. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  129. | :ref:`bool<class_bool>` | :ref:`permissions/bind_text_service<class_EditorExportPlatformAndroid_property_permissions/bind_text_service>` |
  130. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  131. | :ref:`bool<class_bool>` | :ref:`permissions/bind_vpn_service<class_EditorExportPlatformAndroid_property_permissions/bind_vpn_service>` |
  132. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  133. | :ref:`bool<class_bool>` | :ref:`permissions/bind_wallpaper<class_EditorExportPlatformAndroid_property_permissions/bind_wallpaper>` |
  134. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  135. | :ref:`bool<class_bool>` | :ref:`permissions/bluetooth<class_EditorExportPlatformAndroid_property_permissions/bluetooth>` |
  136. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  137. | :ref:`bool<class_bool>` | :ref:`permissions/bluetooth_admin<class_EditorExportPlatformAndroid_property_permissions/bluetooth_admin>` |
  138. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  139. | :ref:`bool<class_bool>` | :ref:`permissions/bluetooth_privileged<class_EditorExportPlatformAndroid_property_permissions/bluetooth_privileged>` |
  140. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  141. | :ref:`bool<class_bool>` | :ref:`permissions/brick<class_EditorExportPlatformAndroid_property_permissions/brick>` |
  142. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  143. | :ref:`bool<class_bool>` | :ref:`permissions/broadcast_package_removed<class_EditorExportPlatformAndroid_property_permissions/broadcast_package_removed>` |
  144. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  145. | :ref:`bool<class_bool>` | :ref:`permissions/broadcast_sms<class_EditorExportPlatformAndroid_property_permissions/broadcast_sms>` |
  146. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  147. | :ref:`bool<class_bool>` | :ref:`permissions/broadcast_sticky<class_EditorExportPlatformAndroid_property_permissions/broadcast_sticky>` |
  148. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  149. | :ref:`bool<class_bool>` | :ref:`permissions/broadcast_wap_push<class_EditorExportPlatformAndroid_property_permissions/broadcast_wap_push>` |
  150. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  151. | :ref:`bool<class_bool>` | :ref:`permissions/call_phone<class_EditorExportPlatformAndroid_property_permissions/call_phone>` |
  152. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  153. | :ref:`bool<class_bool>` | :ref:`permissions/call_privileged<class_EditorExportPlatformAndroid_property_permissions/call_privileged>` |
  154. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  155. | :ref:`bool<class_bool>` | :ref:`permissions/camera<class_EditorExportPlatformAndroid_property_permissions/camera>` |
  156. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  157. | :ref:`bool<class_bool>` | :ref:`permissions/capture_audio_output<class_EditorExportPlatformAndroid_property_permissions/capture_audio_output>` |
  158. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  159. | :ref:`bool<class_bool>` | :ref:`permissions/capture_secure_video_output<class_EditorExportPlatformAndroid_property_permissions/capture_secure_video_output>` |
  160. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  161. | :ref:`bool<class_bool>` | :ref:`permissions/capture_video_output<class_EditorExportPlatformAndroid_property_permissions/capture_video_output>` |
  162. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  163. | :ref:`bool<class_bool>` | :ref:`permissions/change_component_enabled_state<class_EditorExportPlatformAndroid_property_permissions/change_component_enabled_state>` |
  164. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  165. | :ref:`bool<class_bool>` | :ref:`permissions/change_configuration<class_EditorExportPlatformAndroid_property_permissions/change_configuration>` |
  166. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  167. | :ref:`bool<class_bool>` | :ref:`permissions/change_network_state<class_EditorExportPlatformAndroid_property_permissions/change_network_state>` |
  168. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  169. | :ref:`bool<class_bool>` | :ref:`permissions/change_wifi_multicast_state<class_EditorExportPlatformAndroid_property_permissions/change_wifi_multicast_state>` |
  170. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  171. | :ref:`bool<class_bool>` | :ref:`permissions/change_wifi_state<class_EditorExportPlatformAndroid_property_permissions/change_wifi_state>` |
  172. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  173. | :ref:`bool<class_bool>` | :ref:`permissions/clear_app_cache<class_EditorExportPlatformAndroid_property_permissions/clear_app_cache>` |
  174. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  175. | :ref:`bool<class_bool>` | :ref:`permissions/clear_app_user_data<class_EditorExportPlatformAndroid_property_permissions/clear_app_user_data>` |
  176. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  177. | :ref:`bool<class_bool>` | :ref:`permissions/control_location_updates<class_EditorExportPlatformAndroid_property_permissions/control_location_updates>` |
  178. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  179. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`permissions/custom_permissions<class_EditorExportPlatformAndroid_property_permissions/custom_permissions>` |
  180. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  181. | :ref:`bool<class_bool>` | :ref:`permissions/delete_cache_files<class_EditorExportPlatformAndroid_property_permissions/delete_cache_files>` |
  182. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  183. | :ref:`bool<class_bool>` | :ref:`permissions/delete_packages<class_EditorExportPlatformAndroid_property_permissions/delete_packages>` |
  184. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  185. | :ref:`bool<class_bool>` | :ref:`permissions/device_power<class_EditorExportPlatformAndroid_property_permissions/device_power>` |
  186. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  187. | :ref:`bool<class_bool>` | :ref:`permissions/diagnostic<class_EditorExportPlatformAndroid_property_permissions/diagnostic>` |
  188. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  189. | :ref:`bool<class_bool>` | :ref:`permissions/disable_keyguard<class_EditorExportPlatformAndroid_property_permissions/disable_keyguard>` |
  190. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  191. | :ref:`bool<class_bool>` | :ref:`permissions/dump<class_EditorExportPlatformAndroid_property_permissions/dump>` |
  192. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  193. | :ref:`bool<class_bool>` | :ref:`permissions/expand_status_bar<class_EditorExportPlatformAndroid_property_permissions/expand_status_bar>` |
  194. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  195. | :ref:`bool<class_bool>` | :ref:`permissions/factory_test<class_EditorExportPlatformAndroid_property_permissions/factory_test>` |
  196. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  197. | :ref:`bool<class_bool>` | :ref:`permissions/flashlight<class_EditorExportPlatformAndroid_property_permissions/flashlight>` |
  198. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  199. | :ref:`bool<class_bool>` | :ref:`permissions/force_back<class_EditorExportPlatformAndroid_property_permissions/force_back>` |
  200. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  201. | :ref:`bool<class_bool>` | :ref:`permissions/get_accounts<class_EditorExportPlatformAndroid_property_permissions/get_accounts>` |
  202. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  203. | :ref:`bool<class_bool>` | :ref:`permissions/get_package_size<class_EditorExportPlatformAndroid_property_permissions/get_package_size>` |
  204. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  205. | :ref:`bool<class_bool>` | :ref:`permissions/get_tasks<class_EditorExportPlatformAndroid_property_permissions/get_tasks>` |
  206. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  207. | :ref:`bool<class_bool>` | :ref:`permissions/get_top_activity_info<class_EditorExportPlatformAndroid_property_permissions/get_top_activity_info>` |
  208. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  209. | :ref:`bool<class_bool>` | :ref:`permissions/global_search<class_EditorExportPlatformAndroid_property_permissions/global_search>` |
  210. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  211. | :ref:`bool<class_bool>` | :ref:`permissions/hardware_test<class_EditorExportPlatformAndroid_property_permissions/hardware_test>` |
  212. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  213. | :ref:`bool<class_bool>` | :ref:`permissions/inject_events<class_EditorExportPlatformAndroid_property_permissions/inject_events>` |
  214. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  215. | :ref:`bool<class_bool>` | :ref:`permissions/install_location_provider<class_EditorExportPlatformAndroid_property_permissions/install_location_provider>` |
  216. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  217. | :ref:`bool<class_bool>` | :ref:`permissions/install_packages<class_EditorExportPlatformAndroid_property_permissions/install_packages>` |
  218. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  219. | :ref:`bool<class_bool>` | :ref:`permissions/install_shortcut<class_EditorExportPlatformAndroid_property_permissions/install_shortcut>` |
  220. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  221. | :ref:`bool<class_bool>` | :ref:`permissions/internal_system_window<class_EditorExportPlatformAndroid_property_permissions/internal_system_window>` |
  222. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  223. | :ref:`bool<class_bool>` | :ref:`permissions/internet<class_EditorExportPlatformAndroid_property_permissions/internet>` |
  224. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  225. | :ref:`bool<class_bool>` | :ref:`permissions/kill_background_processes<class_EditorExportPlatformAndroid_property_permissions/kill_background_processes>` |
  226. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  227. | :ref:`bool<class_bool>` | :ref:`permissions/location_hardware<class_EditorExportPlatformAndroid_property_permissions/location_hardware>` |
  228. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  229. | :ref:`bool<class_bool>` | :ref:`permissions/manage_accounts<class_EditorExportPlatformAndroid_property_permissions/manage_accounts>` |
  230. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  231. | :ref:`bool<class_bool>` | :ref:`permissions/manage_app_tokens<class_EditorExportPlatformAndroid_property_permissions/manage_app_tokens>` |
  232. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  233. | :ref:`bool<class_bool>` | :ref:`permissions/manage_documents<class_EditorExportPlatformAndroid_property_permissions/manage_documents>` |
  234. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  235. | :ref:`bool<class_bool>` | :ref:`permissions/manage_external_storage<class_EditorExportPlatformAndroid_property_permissions/manage_external_storage>` |
  236. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  237. | :ref:`bool<class_bool>` | :ref:`permissions/master_clear<class_EditorExportPlatformAndroid_property_permissions/master_clear>` |
  238. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  239. | :ref:`bool<class_bool>` | :ref:`permissions/media_content_control<class_EditorExportPlatformAndroid_property_permissions/media_content_control>` |
  240. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  241. | :ref:`bool<class_bool>` | :ref:`permissions/modify_audio_settings<class_EditorExportPlatformAndroid_property_permissions/modify_audio_settings>` |
  242. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  243. | :ref:`bool<class_bool>` | :ref:`permissions/modify_phone_state<class_EditorExportPlatformAndroid_property_permissions/modify_phone_state>` |
  244. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  245. | :ref:`bool<class_bool>` | :ref:`permissions/mount_format_filesystems<class_EditorExportPlatformAndroid_property_permissions/mount_format_filesystems>` |
  246. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  247. | :ref:`bool<class_bool>` | :ref:`permissions/mount_unmount_filesystems<class_EditorExportPlatformAndroid_property_permissions/mount_unmount_filesystems>` |
  248. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  249. | :ref:`bool<class_bool>` | :ref:`permissions/nfc<class_EditorExportPlatformAndroid_property_permissions/nfc>` |
  250. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  251. | :ref:`bool<class_bool>` | :ref:`permissions/persistent_activity<class_EditorExportPlatformAndroid_property_permissions/persistent_activity>` |
  252. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  253. | :ref:`bool<class_bool>` | :ref:`permissions/post_notifications<class_EditorExportPlatformAndroid_property_permissions/post_notifications>` |
  254. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  255. | :ref:`bool<class_bool>` | :ref:`permissions/process_outgoing_calls<class_EditorExportPlatformAndroid_property_permissions/process_outgoing_calls>` |
  256. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  257. | :ref:`bool<class_bool>` | :ref:`permissions/read_calendar<class_EditorExportPlatformAndroid_property_permissions/read_calendar>` |
  258. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  259. | :ref:`bool<class_bool>` | :ref:`permissions/read_call_log<class_EditorExportPlatformAndroid_property_permissions/read_call_log>` |
  260. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  261. | :ref:`bool<class_bool>` | :ref:`permissions/read_contacts<class_EditorExportPlatformAndroid_property_permissions/read_contacts>` |
  262. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  263. | :ref:`bool<class_bool>` | :ref:`permissions/read_external_storage<class_EditorExportPlatformAndroid_property_permissions/read_external_storage>` |
  264. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  265. | :ref:`bool<class_bool>` | :ref:`permissions/read_frame_buffer<class_EditorExportPlatformAndroid_property_permissions/read_frame_buffer>` |
  266. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  267. | :ref:`bool<class_bool>` | :ref:`permissions/read_history_bookmarks<class_EditorExportPlatformAndroid_property_permissions/read_history_bookmarks>` |
  268. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  269. | :ref:`bool<class_bool>` | :ref:`permissions/read_input_state<class_EditorExportPlatformAndroid_property_permissions/read_input_state>` |
  270. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  271. | :ref:`bool<class_bool>` | :ref:`permissions/read_logs<class_EditorExportPlatformAndroid_property_permissions/read_logs>` |
  272. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  273. | :ref:`bool<class_bool>` | :ref:`permissions/read_phone_state<class_EditorExportPlatformAndroid_property_permissions/read_phone_state>` |
  274. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  275. | :ref:`bool<class_bool>` | :ref:`permissions/read_profile<class_EditorExportPlatformAndroid_property_permissions/read_profile>` |
  276. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  277. | :ref:`bool<class_bool>` | :ref:`permissions/read_sms<class_EditorExportPlatformAndroid_property_permissions/read_sms>` |
  278. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  279. | :ref:`bool<class_bool>` | :ref:`permissions/read_social_stream<class_EditorExportPlatformAndroid_property_permissions/read_social_stream>` |
  280. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  281. | :ref:`bool<class_bool>` | :ref:`permissions/read_sync_settings<class_EditorExportPlatformAndroid_property_permissions/read_sync_settings>` |
  282. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  283. | :ref:`bool<class_bool>` | :ref:`permissions/read_sync_stats<class_EditorExportPlatformAndroid_property_permissions/read_sync_stats>` |
  284. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  285. | :ref:`bool<class_bool>` | :ref:`permissions/read_user_dictionary<class_EditorExportPlatformAndroid_property_permissions/read_user_dictionary>` |
  286. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  287. | :ref:`bool<class_bool>` | :ref:`permissions/reboot<class_EditorExportPlatformAndroid_property_permissions/reboot>` |
  288. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  289. | :ref:`bool<class_bool>` | :ref:`permissions/receive_boot_completed<class_EditorExportPlatformAndroid_property_permissions/receive_boot_completed>` |
  290. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  291. | :ref:`bool<class_bool>` | :ref:`permissions/receive_mms<class_EditorExportPlatformAndroid_property_permissions/receive_mms>` |
  292. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  293. | :ref:`bool<class_bool>` | :ref:`permissions/receive_sms<class_EditorExportPlatformAndroid_property_permissions/receive_sms>` |
  294. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  295. | :ref:`bool<class_bool>` | :ref:`permissions/receive_wap_push<class_EditorExportPlatformAndroid_property_permissions/receive_wap_push>` |
  296. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  297. | :ref:`bool<class_bool>` | :ref:`permissions/record_audio<class_EditorExportPlatformAndroid_property_permissions/record_audio>` |
  298. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  299. | :ref:`bool<class_bool>` | :ref:`permissions/reorder_tasks<class_EditorExportPlatformAndroid_property_permissions/reorder_tasks>` |
  300. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  301. | :ref:`bool<class_bool>` | :ref:`permissions/restart_packages<class_EditorExportPlatformAndroid_property_permissions/restart_packages>` |
  302. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  303. | :ref:`bool<class_bool>` | :ref:`permissions/send_respond_via_message<class_EditorExportPlatformAndroid_property_permissions/send_respond_via_message>` |
  304. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  305. | :ref:`bool<class_bool>` | :ref:`permissions/send_sms<class_EditorExportPlatformAndroid_property_permissions/send_sms>` |
  306. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  307. | :ref:`bool<class_bool>` | :ref:`permissions/set_activity_watcher<class_EditorExportPlatformAndroid_property_permissions/set_activity_watcher>` |
  308. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  309. | :ref:`bool<class_bool>` | :ref:`permissions/set_alarm<class_EditorExportPlatformAndroid_property_permissions/set_alarm>` |
  310. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  311. | :ref:`bool<class_bool>` | :ref:`permissions/set_always_finish<class_EditorExportPlatformAndroid_property_permissions/set_always_finish>` |
  312. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  313. | :ref:`bool<class_bool>` | :ref:`permissions/set_animation_scale<class_EditorExportPlatformAndroid_property_permissions/set_animation_scale>` |
  314. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  315. | :ref:`bool<class_bool>` | :ref:`permissions/set_debug_app<class_EditorExportPlatformAndroid_property_permissions/set_debug_app>` |
  316. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  317. | :ref:`bool<class_bool>` | :ref:`permissions/set_orientation<class_EditorExportPlatformAndroid_property_permissions/set_orientation>` |
  318. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  319. | :ref:`bool<class_bool>` | :ref:`permissions/set_pointer_speed<class_EditorExportPlatformAndroid_property_permissions/set_pointer_speed>` |
  320. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  321. | :ref:`bool<class_bool>` | :ref:`permissions/set_preferred_applications<class_EditorExportPlatformAndroid_property_permissions/set_preferred_applications>` |
  322. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  323. | :ref:`bool<class_bool>` | :ref:`permissions/set_process_limit<class_EditorExportPlatformAndroid_property_permissions/set_process_limit>` |
  324. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  325. | :ref:`bool<class_bool>` | :ref:`permissions/set_time<class_EditorExportPlatformAndroid_property_permissions/set_time>` |
  326. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  327. | :ref:`bool<class_bool>` | :ref:`permissions/set_time_zone<class_EditorExportPlatformAndroid_property_permissions/set_time_zone>` |
  328. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  329. | :ref:`bool<class_bool>` | :ref:`permissions/set_wallpaper<class_EditorExportPlatformAndroid_property_permissions/set_wallpaper>` |
  330. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  331. | :ref:`bool<class_bool>` | :ref:`permissions/set_wallpaper_hints<class_EditorExportPlatformAndroid_property_permissions/set_wallpaper_hints>` |
  332. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  333. | :ref:`bool<class_bool>` | :ref:`permissions/signal_persistent_processes<class_EditorExportPlatformAndroid_property_permissions/signal_persistent_processes>` |
  334. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  335. | :ref:`bool<class_bool>` | :ref:`permissions/status_bar<class_EditorExportPlatformAndroid_property_permissions/status_bar>` |
  336. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  337. | :ref:`bool<class_bool>` | :ref:`permissions/subscribed_feeds_read<class_EditorExportPlatformAndroid_property_permissions/subscribed_feeds_read>` |
  338. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  339. | :ref:`bool<class_bool>` | :ref:`permissions/subscribed_feeds_write<class_EditorExportPlatformAndroid_property_permissions/subscribed_feeds_write>` |
  340. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  341. | :ref:`bool<class_bool>` | :ref:`permissions/system_alert_window<class_EditorExportPlatformAndroid_property_permissions/system_alert_window>` |
  342. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  343. | :ref:`bool<class_bool>` | :ref:`permissions/transmit_ir<class_EditorExportPlatformAndroid_property_permissions/transmit_ir>` |
  344. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  345. | :ref:`bool<class_bool>` | :ref:`permissions/uninstall_shortcut<class_EditorExportPlatformAndroid_property_permissions/uninstall_shortcut>` |
  346. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  347. | :ref:`bool<class_bool>` | :ref:`permissions/update_device_stats<class_EditorExportPlatformAndroid_property_permissions/update_device_stats>` |
  348. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  349. | :ref:`bool<class_bool>` | :ref:`permissions/use_credentials<class_EditorExportPlatformAndroid_property_permissions/use_credentials>` |
  350. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  351. | :ref:`bool<class_bool>` | :ref:`permissions/use_sip<class_EditorExportPlatformAndroid_property_permissions/use_sip>` |
  352. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  353. | :ref:`bool<class_bool>` | :ref:`permissions/vibrate<class_EditorExportPlatformAndroid_property_permissions/vibrate>` |
  354. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  355. | :ref:`bool<class_bool>` | :ref:`permissions/wake_lock<class_EditorExportPlatformAndroid_property_permissions/wake_lock>` |
  356. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  357. | :ref:`bool<class_bool>` | :ref:`permissions/write_apn_settings<class_EditorExportPlatformAndroid_property_permissions/write_apn_settings>` |
  358. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  359. | :ref:`bool<class_bool>` | :ref:`permissions/write_calendar<class_EditorExportPlatformAndroid_property_permissions/write_calendar>` |
  360. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  361. | :ref:`bool<class_bool>` | :ref:`permissions/write_call_log<class_EditorExportPlatformAndroid_property_permissions/write_call_log>` |
  362. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  363. | :ref:`bool<class_bool>` | :ref:`permissions/write_contacts<class_EditorExportPlatformAndroid_property_permissions/write_contacts>` |
  364. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  365. | :ref:`bool<class_bool>` | :ref:`permissions/write_external_storage<class_EditorExportPlatformAndroid_property_permissions/write_external_storage>` |
  366. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  367. | :ref:`bool<class_bool>` | :ref:`permissions/write_gservices<class_EditorExportPlatformAndroid_property_permissions/write_gservices>` |
  368. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  369. | :ref:`bool<class_bool>` | :ref:`permissions/write_history_bookmarks<class_EditorExportPlatformAndroid_property_permissions/write_history_bookmarks>` |
  370. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  371. | :ref:`bool<class_bool>` | :ref:`permissions/write_profile<class_EditorExportPlatformAndroid_property_permissions/write_profile>` |
  372. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  373. | :ref:`bool<class_bool>` | :ref:`permissions/write_secure_settings<class_EditorExportPlatformAndroid_property_permissions/write_secure_settings>` |
  374. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  375. | :ref:`bool<class_bool>` | :ref:`permissions/write_settings<class_EditorExportPlatformAndroid_property_permissions/write_settings>` |
  376. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  377. | :ref:`bool<class_bool>` | :ref:`permissions/write_sms<class_EditorExportPlatformAndroid_property_permissions/write_sms>` |
  378. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  379. | :ref:`bool<class_bool>` | :ref:`permissions/write_social_stream<class_EditorExportPlatformAndroid_property_permissions/write_social_stream>` |
  380. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  381. | :ref:`bool<class_bool>` | :ref:`permissions/write_sync_settings<class_EditorExportPlatformAndroid_property_permissions/write_sync_settings>` |
  382. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  383. | :ref:`bool<class_bool>` | :ref:`permissions/write_user_dictionary<class_EditorExportPlatformAndroid_property_permissions/write_user_dictionary>` |
  384. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  385. | :ref:`bool<class_bool>` | :ref:`screen/immersive_mode<class_EditorExportPlatformAndroid_property_screen/immersive_mode>` |
  386. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  387. | :ref:`bool<class_bool>` | :ref:`screen/support_large<class_EditorExportPlatformAndroid_property_screen/support_large>` |
  388. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  389. | :ref:`bool<class_bool>` | :ref:`screen/support_normal<class_EditorExportPlatformAndroid_property_screen/support_normal>` |
  390. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  391. | :ref:`bool<class_bool>` | :ref:`screen/support_small<class_EditorExportPlatformAndroid_property_screen/support_small>` |
  392. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  393. | :ref:`bool<class_bool>` | :ref:`screen/support_xlarge<class_EditorExportPlatformAndroid_property_screen/support_xlarge>` |
  394. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  395. | :ref:`bool<class_bool>` | :ref:`user_data_backup/allow<class_EditorExportPlatformAndroid_property_user_data_backup/allow>` |
  396. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  397. | :ref:`int<class_int>` | :ref:`version/code<class_EditorExportPlatformAndroid_property_version/code>` |
  398. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  399. | :ref:`String<class_String>` | :ref:`version/name<class_EditorExportPlatformAndroid_property_version/name>` |
  400. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  401. | :ref:`int<class_int>` | :ref:`xr_features/xr_mode<class_EditorExportPlatformAndroid_property_xr_features/xr_mode>` |
  402. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  403. .. rst-class:: classref-section-separator
  404. ----
  405. .. rst-class:: classref-descriptions-group
  406. Property Descriptions
  407. ---------------------
  408. .. _class_EditorExportPlatformAndroid_property_apk_expansion/SALT:
  409. .. rst-class:: classref-property
  410. :ref:`String<class_String>` **apk_expansion/SALT**
  411. Array of random bytes that the licensing Policy uses to create an `Obfuscator <https://developer.android.com/google/play/licensing/adding-licensing#impl-Obfuscator>`__.
  412. .. rst-class:: classref-item-separator
  413. ----
  414. .. _class_EditorExportPlatformAndroid_property_apk_expansion/enable:
  415. .. rst-class:: classref-property
  416. :ref:`bool<class_bool>` **apk_expansion/enable**
  417. If ``true``, project resources are stored in the separate APK expansion file, instead APK.
  418. \ **Note:** APK expansion should be enabled to use PCK encryption.
  419. .. rst-class:: classref-item-separator
  420. ----
  421. .. _class_EditorExportPlatformAndroid_property_apk_expansion/public_key:
  422. .. rst-class:: classref-property
  423. :ref:`String<class_String>` **apk_expansion/public_key**
  424. Base64 encoded RSA public key for your publisher account, available from the profile page on the "Play Console".
  425. .. rst-class:: classref-item-separator
  426. ----
  427. .. _class_EditorExportPlatformAndroid_property_architectures/arm64-v8a:
  428. .. rst-class:: classref-property
  429. :ref:`bool<class_bool>` **architectures/arm64-v8a**
  430. If ``true``, ``arm64`` binaries are included into exported project.
  431. .. rst-class:: classref-item-separator
  432. ----
  433. .. _class_EditorExportPlatformAndroid_property_architectures/armeabi-v7a:
  434. .. rst-class:: classref-property
  435. :ref:`bool<class_bool>` **architectures/armeabi-v7a**
  436. If ``true``, ``arm32`` binaries are included into exported project.
  437. .. rst-class:: classref-item-separator
  438. ----
  439. .. _class_EditorExportPlatformAndroid_property_architectures/x86:
  440. .. rst-class:: classref-property
  441. :ref:`bool<class_bool>` **architectures/x86**
  442. If ``true``, ``x86_32`` binaries are included into exported project.
  443. .. rst-class:: classref-item-separator
  444. ----
  445. .. _class_EditorExportPlatformAndroid_property_architectures/x86_64:
  446. .. rst-class:: classref-property
  447. :ref:`bool<class_bool>` **architectures/x86_64**
  448. If ``true``, ``x86_64`` binaries are included into exported project.
  449. .. rst-class:: classref-item-separator
  450. ----
  451. .. _class_EditorExportPlatformAndroid_property_command_line/extra_args:
  452. .. rst-class:: classref-property
  453. :ref:`String<class_String>` **command_line/extra_args**
  454. A list of additional command line arguments, exported project will receive when started.
  455. .. rst-class:: classref-item-separator
  456. ----
  457. .. _class_EditorExportPlatformAndroid_property_custom_template/debug:
  458. .. rst-class:: classref-property
  459. :ref:`String<class_String>` **custom_template/debug**
  460. Path to the custom export template. If left empty, default template is used.
  461. .. rst-class:: classref-item-separator
  462. ----
  463. .. _class_EditorExportPlatformAndroid_property_custom_template/release:
  464. .. rst-class:: classref-property
  465. :ref:`String<class_String>` **custom_template/release**
  466. Path to the custom export template. If left empty, default template is used.
  467. .. rst-class:: classref-item-separator
  468. ----
  469. .. _class_EditorExportPlatformAndroid_property_gradle_build/export_format:
  470. .. rst-class:: classref-property
  471. :ref:`int<class_int>` **gradle_build/export_format**
  472. Export format for Gradle build.
  473. .. rst-class:: classref-item-separator
  474. ----
  475. .. _class_EditorExportPlatformAndroid_property_gradle_build/min_sdk:
  476. .. rst-class:: classref-property
  477. :ref:`String<class_String>` **gradle_build/min_sdk**
  478. Minimal Android SDK version for Gradle build.
  479. .. rst-class:: classref-item-separator
  480. ----
  481. .. _class_EditorExportPlatformAndroid_property_gradle_build/target_sdk:
  482. .. rst-class:: classref-property
  483. :ref:`String<class_String>` **gradle_build/target_sdk**
  484. Target Android SDK version for Gradle build.
  485. .. rst-class:: classref-item-separator
  486. ----
  487. .. _class_EditorExportPlatformAndroid_property_gradle_build/use_gradle_build:
  488. .. rst-class:: classref-property
  489. :ref:`bool<class_bool>` **gradle_build/use_gradle_build**
  490. If ``true``, Gradle build is used instead of pre-built APK.
  491. .. rst-class:: classref-item-separator
  492. ----
  493. .. _class_EditorExportPlatformAndroid_property_graphics/opengl_debug:
  494. .. rst-class:: classref-property
  495. :ref:`bool<class_bool>` **graphics/opengl_debug**
  496. If ``true``, OpenGL ES debug context will be created (additional runtime checking, validation, and logging).
  497. .. rst-class:: classref-item-separator
  498. ----
  499. .. _class_EditorExportPlatformAndroid_property_keystore/debug:
  500. .. rst-class:: classref-property
  501. :ref:`String<class_String>` **keystore/debug**
  502. Path of the debug keystore file.
  503. Can be overridden with the environment variable ``GODOT_ANDROID_KEYSTORE_DEBUG_PATH``.
  504. Fallbacks to ``EditorSettings.export/android/debug_keystore`` if empty.
  505. .. rst-class:: classref-item-separator
  506. ----
  507. .. _class_EditorExportPlatformAndroid_property_keystore/debug_password:
  508. .. rst-class:: classref-property
  509. :ref:`String<class_String>` **keystore/debug_password**
  510. Password for the debug keystore file.
  511. Can be overridden with the environment variable ``GODOT_ANDROID_KEYSTORE_DEBUG_PASSWORD``.
  512. Fallbacks to ``EditorSettings.export/android/debug_keystore_pass`` if both it and :ref:`keystore/debug<class_EditorExportPlatformAndroid_property_keystore/debug>` are empty.
  513. .. rst-class:: classref-item-separator
  514. ----
  515. .. _class_EditorExportPlatformAndroid_property_keystore/debug_user:
  516. .. rst-class:: classref-property
  517. :ref:`String<class_String>` **keystore/debug_user**
  518. User name for the debug keystore file.
  519. Can be overridden with the environment variable ``GODOT_ANDROID_KEYSTORE_DEBUG_USER``.
  520. Fallbacks to ``EditorSettings.export/android/debug_keystore_user`` if both it and :ref:`keystore/debug<class_EditorExportPlatformAndroid_property_keystore/debug>` are empty.
  521. .. rst-class:: classref-item-separator
  522. ----
  523. .. _class_EditorExportPlatformAndroid_property_keystore/release:
  524. .. rst-class:: classref-property
  525. :ref:`String<class_String>` **keystore/release**
  526. Path of the release keystore file.
  527. Can be overridden with the environment variable ``GODOT_ANDROID_KEYSTORE_RELEASE_PATH``.
  528. .. rst-class:: classref-item-separator
  529. ----
  530. .. _class_EditorExportPlatformAndroid_property_keystore/release_password:
  531. .. rst-class:: classref-property
  532. :ref:`String<class_String>` **keystore/release_password**
  533. Password for the release keystore file.
  534. Can be overridden with the environment variable ``GODOT_ANDROID_KEYSTORE_RELEASE_PASSWORD``.
  535. .. rst-class:: classref-item-separator
  536. ----
  537. .. _class_EditorExportPlatformAndroid_property_keystore/release_user:
  538. .. rst-class:: classref-property
  539. :ref:`String<class_String>` **keystore/release_user**
  540. User name for the release keystore file.
  541. Can be overridden with the environment variable ``GODOT_ANDROID_KEYSTORE_RELEASE_USER``.
  542. .. rst-class:: classref-item-separator
  543. ----
  544. .. _class_EditorExportPlatformAndroid_property_launcher_icons/adaptive_background_432x432:
  545. .. rst-class:: classref-property
  546. :ref:`String<class_String>` **launcher_icons/adaptive_background_432x432**
  547. Background layer of the application adaptive icon file.
  548. .. rst-class:: classref-item-separator
  549. ----
  550. .. _class_EditorExportPlatformAndroid_property_launcher_icons/adaptive_foreground_432x432:
  551. .. rst-class:: classref-property
  552. :ref:`String<class_String>` **launcher_icons/adaptive_foreground_432x432**
  553. Foreground layer of the application adaptive icon file.
  554. .. rst-class:: classref-item-separator
  555. ----
  556. .. _class_EditorExportPlatformAndroid_property_launcher_icons/main_192x192:
  557. .. rst-class:: classref-property
  558. :ref:`String<class_String>` **launcher_icons/main_192x192**
  559. Application icon file. If left empty, it will fallback to :ref:`ProjectSettings.application/config/icon<class_ProjectSettings_property_application/config/icon>`.
  560. .. rst-class:: classref-item-separator
  561. ----
  562. .. _class_EditorExportPlatformAndroid_property_package/app_category:
  563. .. rst-class:: classref-property
  564. :ref:`int<class_int>` **package/app_category**
  565. Application category for the Play Store.
  566. .. rst-class:: classref-item-separator
  567. ----
  568. .. _class_EditorExportPlatformAndroid_property_package/exclude_from_recents:
  569. .. rst-class:: classref-property
  570. :ref:`bool<class_bool>` **package/exclude_from_recents**
  571. If ``true``, task initiated by main activity will be excluded from the list of recently used applications.
  572. .. rst-class:: classref-item-separator
  573. ----
  574. .. _class_EditorExportPlatformAndroid_property_package/name:
  575. .. rst-class:: classref-property
  576. :ref:`String<class_String>` **package/name**
  577. Name of the application.
  578. .. rst-class:: classref-item-separator
  579. ----
  580. .. _class_EditorExportPlatformAndroid_property_package/retain_data_on_uninstall:
  581. .. rst-class:: classref-property
  582. :ref:`bool<class_bool>` **package/retain_data_on_uninstall**
  583. If ``true``, when the user uninstalls an app, a prompt to keep the app's data will be shown.
  584. .. rst-class:: classref-item-separator
  585. ----
  586. .. _class_EditorExportPlatformAndroid_property_package/show_as_launcher_app:
  587. .. rst-class:: classref-property
  588. :ref:`bool<class_bool>` **package/show_as_launcher_app**
  589. If ``true``, the user will be able to set this app as the system launcher in Android preferences.
  590. .. rst-class:: classref-item-separator
  591. ----
  592. .. _class_EditorExportPlatformAndroid_property_package/show_in_android_tv:
  593. .. rst-class:: classref-property
  594. :ref:`bool<class_bool>` **package/show_in_android_tv**
  595. If ``true``, this app will show in Android TV launcher UI.
  596. .. rst-class:: classref-item-separator
  597. ----
  598. .. _class_EditorExportPlatformAndroid_property_package/show_in_app_library:
  599. .. rst-class:: classref-property
  600. :ref:`bool<class_bool>` **package/show_in_app_library**
  601. If ``true``, this app will show in the device's app library.
  602. \ **Note:** This is ``true`` by default.
  603. .. rst-class:: classref-item-separator
  604. ----
  605. .. _class_EditorExportPlatformAndroid_property_package/signed:
  606. .. rst-class:: classref-property
  607. :ref:`bool<class_bool>` **package/signed**
  608. If ``true``, package signing is enabled.
  609. .. rst-class:: classref-item-separator
  610. ----
  611. .. _class_EditorExportPlatformAndroid_property_package/unique_name:
  612. .. rst-class:: classref-property
  613. :ref:`String<class_String>` **package/unique_name**
  614. Unique application identifier in a reverse-DNS format. The reverse DNS format should preferably match a domain name you control, but this is not strictly required. For instance, if you own ``example.com``, your package unique name should preferably be of the form ``com.example.mygame``. This identifier can only contain lowercase alphanumeric characters (``a-z``, and ``0-9``), underscores (``_``), and periods (``.``). Each component of the reverse DNS format must start with a letter: for instance, ``com.example.8game`` is not valid.
  615. If ``$genname`` is present in the value, it will be replaced by the project name converted to lowercase. If there are invalid characters in the project name, they will be stripped. If all characters in the project name are stripped, ``$genname`` is replaced by ``noname``.
  616. \ **Note:** Changing the package name will cause the package to be considered as a new package, with its own installation and data paths. The new package won't be usable to update existing installations.
  617. \ **Note:** When publishing to Google Play, the package name must be *globally* unique. This means no other apps published on Google Play must be using the same package name as yours. Otherwise, you'll be prevented from publishing your app on Google Play.
  618. .. rst-class:: classref-item-separator
  619. ----
  620. .. _class_EditorExportPlatformAndroid_property_permissions/access_checkin_properties:
  621. .. rst-class:: classref-property
  622. :ref:`bool<class_bool>` **permissions/access_checkin_properties**
  623. Allows read/write access to the "properties" table in the checkin database. See `ACCESS_CHECKIN_PROPERTIES <https://developer.android.com/reference/android/Manifest.permission#ACCESS_CHECKIN_PROPERTIES>`__.
  624. .. rst-class:: classref-item-separator
  625. ----
  626. .. _class_EditorExportPlatformAndroid_property_permissions/access_coarse_location:
  627. .. rst-class:: classref-property
  628. :ref:`bool<class_bool>` **permissions/access_coarse_location**
  629. Allows access to the approximate location information. See `ACCESS_COARSE_LOCATION <https://developer.android.com/reference/android/Manifest.permission#ACCESS_COARSE_LOCATION>`__.
  630. .. rst-class:: classref-item-separator
  631. ----
  632. .. _class_EditorExportPlatformAndroid_property_permissions/access_fine_location:
  633. .. rst-class:: classref-property
  634. :ref:`bool<class_bool>` **permissions/access_fine_location**
  635. Allows access to the precise location information. See `ACCESS_FINE_LOCATION <https://developer.android.com/reference/android/Manifest.permission#ACCESS_FINE_LOCATION>`__.
  636. .. rst-class:: classref-item-separator
  637. ----
  638. .. _class_EditorExportPlatformAndroid_property_permissions/access_location_extra_commands:
  639. .. rst-class:: classref-property
  640. :ref:`bool<class_bool>` **permissions/access_location_extra_commands**
  641. Allows access to the extra location provider commands. See `ACCESS_LOCATION_EXTRA_COMMANDS <https://developer.android.com/reference/android/Manifest.permission#ACCESS_LOCATION_EXTRA_COMMANDS>`__.
  642. .. rst-class:: classref-item-separator
  643. ----
  644. .. _class_EditorExportPlatformAndroid_property_permissions/access_mock_location:
  645. .. rst-class:: classref-property
  646. :ref:`bool<class_bool>` **permissions/access_mock_location**
  647. Allows an application to create mock location providers for testing.
  648. .. rst-class:: classref-item-separator
  649. ----
  650. .. _class_EditorExportPlatformAndroid_property_permissions/access_network_state:
  651. .. rst-class:: classref-property
  652. :ref:`bool<class_bool>` **permissions/access_network_state**
  653. Allows access to the information about networks. See `ACCESS_NETWORK_STATE <https://developer.android.com/reference/android/Manifest.permission#ACCESS_NETWORK_STATE>`__.
  654. .. rst-class:: classref-item-separator
  655. ----
  656. .. _class_EditorExportPlatformAndroid_property_permissions/access_surface_flinger:
  657. .. rst-class:: classref-property
  658. :ref:`bool<class_bool>` **permissions/access_surface_flinger**
  659. Allows an application to use SurfaceFlinger's low level features.
  660. .. rst-class:: classref-item-separator
  661. ----
  662. .. _class_EditorExportPlatformAndroid_property_permissions/access_wifi_state:
  663. .. rst-class:: classref-property
  664. :ref:`bool<class_bool>` **permissions/access_wifi_state**
  665. Allows access to the information about Wi-Fi networks. See `ACCESS_WIFI_STATE <https://developer.android.com/reference/android/Manifest.permission#ACCESS_WIFI_STATE>`__.
  666. .. rst-class:: classref-item-separator
  667. ----
  668. .. _class_EditorExportPlatformAndroid_property_permissions/account_manager:
  669. .. rst-class:: classref-property
  670. :ref:`bool<class_bool>` **permissions/account_manager**
  671. Allows applications to call into AccountAuthenticators. See `ACCOUNT_MANAGER <https://developer.android.com/reference/android/Manifest.permission#ACCOUNT_MANAGER>`__.
  672. .. rst-class:: classref-item-separator
  673. ----
  674. .. _class_EditorExportPlatformAndroid_property_permissions/add_voicemail:
  675. .. rst-class:: classref-property
  676. :ref:`bool<class_bool>` **permissions/add_voicemail**
  677. Allows an application to add voicemails into the system. See `ADD_VOICEMAIL <https://developer.android.com/reference/android/Manifest.permission#ADD_VOICEMAIL>`__.
  678. .. rst-class:: classref-item-separator
  679. ----
  680. .. _class_EditorExportPlatformAndroid_property_permissions/authenticate_accounts:
  681. .. rst-class:: classref-property
  682. :ref:`bool<class_bool>` **permissions/authenticate_accounts**
  683. Allows an application to act as an AccountAuthenticator for the AccountManager.
  684. .. rst-class:: classref-item-separator
  685. ----
  686. .. _class_EditorExportPlatformAndroid_property_permissions/battery_stats:
  687. .. rst-class:: classref-property
  688. :ref:`bool<class_bool>` **permissions/battery_stats**
  689. Allows an application to collect battery statistics. See `BATTERY_STATS <https://developer.android.com/reference/android/Manifest.permission#BATTERY_STATS>`__.
  690. .. rst-class:: classref-item-separator
  691. ----
  692. .. _class_EditorExportPlatformAndroid_property_permissions/bind_accessibility_service:
  693. .. rst-class:: classref-property
  694. :ref:`bool<class_bool>` **permissions/bind_accessibility_service**
  695. Must be required by an AccessibilityService, to ensure that only the system can bind to it. See `BIND_ACCESSIBILITY_SERVICE <https://developer.android.com/reference/android/Manifest.permission#BIND_ACCESSIBILITY_SERVICE>`__.
  696. .. rst-class:: classref-item-separator
  697. ----
  698. .. _class_EditorExportPlatformAndroid_property_permissions/bind_appwidget:
  699. .. rst-class:: classref-property
  700. :ref:`bool<class_bool>` **permissions/bind_appwidget**
  701. Allows an application to tell the AppWidget service which application can access AppWidget's data. See `BIND_APPWIDGET <https://developer.android.com/reference/android/Manifest.permission#BIND_APPWIDGET>`__.
  702. .. rst-class:: classref-item-separator
  703. ----
  704. .. _class_EditorExportPlatformAndroid_property_permissions/bind_device_admin:
  705. .. rst-class:: classref-property
  706. :ref:`bool<class_bool>` **permissions/bind_device_admin**
  707. Must be required by device administration receiver, to ensure that only the system can interact with it. See `BIND_DEVICE_ADMIN <https://developer.android.com/reference/android/Manifest.permission#BIND_DEVICE_ADMIN>`__.
  708. .. rst-class:: classref-item-separator
  709. ----
  710. .. _class_EditorExportPlatformAndroid_property_permissions/bind_input_method:
  711. .. rst-class:: classref-property
  712. :ref:`bool<class_bool>` **permissions/bind_input_method**
  713. Must be required by an InputMethodService, to ensure that only the system can bind to it. See `BIND_INPUT_METHOD <https://developer.android.com/reference/android/Manifest.permission#BIND_INPUT_METHOD>`__.
  714. .. rst-class:: classref-item-separator
  715. ----
  716. .. _class_EditorExportPlatformAndroid_property_permissions/bind_nfc_service:
  717. .. rst-class:: classref-property
  718. :ref:`bool<class_bool>` **permissions/bind_nfc_service**
  719. Must be required by a HostApduService or OffHostApduService to ensure that only the system can bind to it. See `BIND_NFC_SERVICE <https://developer.android.com/reference/android/Manifest.permission#BIND_NFC_SERVICE>`__.
  720. .. rst-class:: classref-item-separator
  721. ----
  722. .. _class_EditorExportPlatformAndroid_property_permissions/bind_notification_listener_service:
  723. .. rst-class:: classref-property
  724. :ref:`bool<class_bool>` **permissions/bind_notification_listener_service**
  725. Must be required by a NotificationListenerService, to ensure that only the system can bind to it. See `BIND_NOTIFICATION_LISTENER_SERVICE <https://developer.android.com/reference/android/Manifest.permission#BIND_NOTIFICATION_LISTENER_SERVICE>`__.
  726. .. rst-class:: classref-item-separator
  727. ----
  728. .. _class_EditorExportPlatformAndroid_property_permissions/bind_print_service:
  729. .. rst-class:: classref-property
  730. :ref:`bool<class_bool>` **permissions/bind_print_service**
  731. Must be required by a PrintService, to ensure that only the system can bind to it. See `BIND_PRINT_SERVICE <https://developer.android.com/reference/android/Manifest.permission#BIND_PRINT_SERVICE>`__.
  732. .. rst-class:: classref-item-separator
  733. ----
  734. .. _class_EditorExportPlatformAndroid_property_permissions/bind_remoteviews:
  735. .. rst-class:: classref-property
  736. :ref:`bool<class_bool>` **permissions/bind_remoteviews**
  737. Must be required by a RemoteViewsService, to ensure that only the system can bind to it. See `BIND_REMOTEVIEWS <https://developer.android.com/reference/android/Manifest.permission#BIND_REMOTEVIEWS>`__.
  738. .. rst-class:: classref-item-separator
  739. ----
  740. .. _class_EditorExportPlatformAndroid_property_permissions/bind_text_service:
  741. .. rst-class:: classref-property
  742. :ref:`bool<class_bool>` **permissions/bind_text_service**
  743. Must be required by a TextService (e.g. SpellCheckerService) to ensure that only the system can bind to it. See `BIND_TEXT_SERVICE <https://developer.android.com/reference/android/Manifest.permission#BIND_TEXT_SERVICE>`__.
  744. .. rst-class:: classref-item-separator
  745. ----
  746. .. _class_EditorExportPlatformAndroid_property_permissions/bind_vpn_service:
  747. .. rst-class:: classref-property
  748. :ref:`bool<class_bool>` **permissions/bind_vpn_service**
  749. Must be required by a VpnService, to ensure that only the system can bind to it. See `BIND_VPN_SERVICE <https://developer.android.com/reference/android/Manifest.permission#BIND_VPN_SERVICE>`__.
  750. .. rst-class:: classref-item-separator
  751. ----
  752. .. _class_EditorExportPlatformAndroid_property_permissions/bind_wallpaper:
  753. .. rst-class:: classref-property
  754. :ref:`bool<class_bool>` **permissions/bind_wallpaper**
  755. Must be required by a WallpaperService, to ensure that only the system can bind to it. See `BIND_WALLPAPER <https://developer.android.com/reference/android/Manifest.permission#BIND_WALLPAPER>`__.
  756. .. rst-class:: classref-item-separator
  757. ----
  758. .. _class_EditorExportPlatformAndroid_property_permissions/bluetooth:
  759. .. rst-class:: classref-property
  760. :ref:`bool<class_bool>` **permissions/bluetooth**
  761. Allows applications to connect to paired bluetooth devices. See `BLUETOOTH <https://developer.android.com/reference/android/Manifest.permission#BLUETOOTH>`__.
  762. .. rst-class:: classref-item-separator
  763. ----
  764. .. _class_EditorExportPlatformAndroid_property_permissions/bluetooth_admin:
  765. .. rst-class:: classref-property
  766. :ref:`bool<class_bool>` **permissions/bluetooth_admin**
  767. Allows applications to discover and pair bluetooth devices. See `BLUETOOTH_ADMIN <https://developer.android.com/reference/android/Manifest.permission#BLUETOOTH_ADMIN>`__.
  768. .. rst-class:: classref-item-separator
  769. ----
  770. .. _class_EditorExportPlatformAndroid_property_permissions/bluetooth_privileged:
  771. .. rst-class:: classref-property
  772. :ref:`bool<class_bool>` **permissions/bluetooth_privileged**
  773. Allows applications to pair bluetooth devices without user interaction, and to allow or disallow phonebook access or message access. See `BLUETOOTH_PRIVILEGED <https://developer.android.com/reference/android/Manifest.permission#BLUETOOTH_PRIVILEGED>`__.
  774. .. rst-class:: classref-item-separator
  775. ----
  776. .. _class_EditorExportPlatformAndroid_property_permissions/brick:
  777. .. rst-class:: classref-property
  778. :ref:`bool<class_bool>` **permissions/brick**
  779. Required to be able to disable the device (very dangerous!).
  780. .. rst-class:: classref-item-separator
  781. ----
  782. .. _class_EditorExportPlatformAndroid_property_permissions/broadcast_package_removed:
  783. .. rst-class:: classref-property
  784. :ref:`bool<class_bool>` **permissions/broadcast_package_removed**
  785. Allows an application to broadcast a notification that an application package has been removed. See `BROADCAST_PACKAGE_REMOVED <https://developer.android.com/reference/android/Manifest.permission#BROADCAST_PACKAGE_REMOVED>`__.
  786. .. rst-class:: classref-item-separator
  787. ----
  788. .. _class_EditorExportPlatformAndroid_property_permissions/broadcast_sms:
  789. .. rst-class:: classref-property
  790. :ref:`bool<class_bool>` **permissions/broadcast_sms**
  791. Allows an application to broadcast an SMS receipt notification. See `BROADCAST_SMS <https://developer.android.com/reference/android/Manifest.permission#BROADCAST_SMS>`__.
  792. .. rst-class:: classref-item-separator
  793. ----
  794. .. _class_EditorExportPlatformAndroid_property_permissions/broadcast_sticky:
  795. .. rst-class:: classref-property
  796. :ref:`bool<class_bool>` **permissions/broadcast_sticky**
  797. Allows an application to broadcast sticky intents. See `BROADCAST_STICKY <https://developer.android.com/reference/android/Manifest.permission#BROADCAST_STICKY>`__.
  798. .. rst-class:: classref-item-separator
  799. ----
  800. .. _class_EditorExportPlatformAndroid_property_permissions/broadcast_wap_push:
  801. .. rst-class:: classref-property
  802. :ref:`bool<class_bool>` **permissions/broadcast_wap_push**
  803. Allows an application to broadcast a WAP PUSH receipt notification. See `BROADCAST_WAP_PUSH <https://developer.android.com/reference/android/Manifest.permission#BROADCAST_WAP_PUSH>`__.
  804. .. rst-class:: classref-item-separator
  805. ----
  806. .. _class_EditorExportPlatformAndroid_property_permissions/call_phone:
  807. .. rst-class:: classref-property
  808. :ref:`bool<class_bool>` **permissions/call_phone**
  809. Allows an application to initiate a phone call without going through the Dialer user interface. See `CALL_PHONE <https://developer.android.com/reference/android/Manifest.permission#CALL_PHONE>`__.
  810. .. rst-class:: classref-item-separator
  811. ----
  812. .. _class_EditorExportPlatformAndroid_property_permissions/call_privileged:
  813. .. rst-class:: classref-property
  814. :ref:`bool<class_bool>` **permissions/call_privileged**
  815. Allows an application to call any phone number, including emergency numbers, without going through the Dialer user interface. See `CALL_PRIVILEGED <https://developer.android.com/reference/android/Manifest.permission#CALL_PRIVILEGED>`__.
  816. .. rst-class:: classref-item-separator
  817. ----
  818. .. _class_EditorExportPlatformAndroid_property_permissions/camera:
  819. .. rst-class:: classref-property
  820. :ref:`bool<class_bool>` **permissions/camera**
  821. Required to be able to access the camera device. See `CAMERA <https://developer.android.com/reference/android/Manifest.permission#CAMERA>`__.
  822. .. rst-class:: classref-item-separator
  823. ----
  824. .. _class_EditorExportPlatformAndroid_property_permissions/capture_audio_output:
  825. .. rst-class:: classref-property
  826. :ref:`bool<class_bool>` **permissions/capture_audio_output**
  827. Allows an application to capture audio output. See `CAPTURE_AUDIO_OUTPUT <https://developer.android.com/reference/android/Manifest.permission#CAPTURE_AUDIO_OUTPUT>`__.
  828. .. rst-class:: classref-item-separator
  829. ----
  830. .. _class_EditorExportPlatformAndroid_property_permissions/capture_secure_video_output:
  831. .. rst-class:: classref-property
  832. :ref:`bool<class_bool>` **permissions/capture_secure_video_output**
  833. Allows an application to capture secure video output.
  834. .. rst-class:: classref-item-separator
  835. ----
  836. .. _class_EditorExportPlatformAndroid_property_permissions/capture_video_output:
  837. .. rst-class:: classref-property
  838. :ref:`bool<class_bool>` **permissions/capture_video_output**
  839. Allows an application to capture video output.
  840. .. rst-class:: classref-item-separator
  841. ----
  842. .. _class_EditorExportPlatformAndroid_property_permissions/change_component_enabled_state:
  843. .. rst-class:: classref-property
  844. :ref:`bool<class_bool>` **permissions/change_component_enabled_state**
  845. Allows an application to change whether an application component (other than its own) is enabled or not. See `CHANGE_COMPONENT_ENABLED_STATE <https://developer.android.com/reference/android/Manifest.permission#CHANGE_COMPONENT_ENABLED_STATE>`__.
  846. .. rst-class:: classref-item-separator
  847. ----
  848. .. _class_EditorExportPlatformAndroid_property_permissions/change_configuration:
  849. .. rst-class:: classref-property
  850. :ref:`bool<class_bool>` **permissions/change_configuration**
  851. Allows an application to modify the current configuration, such as locale. See `CHANGE_CONFIGURATION <https://developer.android.com/reference/android/Manifest.permission#CHANGE_CONFIGURATION>`__.
  852. .. rst-class:: classref-item-separator
  853. ----
  854. .. _class_EditorExportPlatformAndroid_property_permissions/change_network_state:
  855. .. rst-class:: classref-property
  856. :ref:`bool<class_bool>` **permissions/change_network_state**
  857. Allows applications to change network connectivity state. See `CHANGE_NETWORK_STATE <https://developer.android.com/reference/android/Manifest.permission#CHANGE_NETWORK_STATE>`__.
  858. .. rst-class:: classref-item-separator
  859. ----
  860. .. _class_EditorExportPlatformAndroid_property_permissions/change_wifi_multicast_state:
  861. .. rst-class:: classref-property
  862. :ref:`bool<class_bool>` **permissions/change_wifi_multicast_state**
  863. Allows applications to enter Wi-Fi Multicast mode. See `CHANGE_WIFI_MULTICAST_STATE <https://developer.android.com/reference/android/Manifest.permission#CHANGE_WIFI_MULTICAST_STATE>`__.
  864. .. rst-class:: classref-item-separator
  865. ----
  866. .. _class_EditorExportPlatformAndroid_property_permissions/change_wifi_state:
  867. .. rst-class:: classref-property
  868. :ref:`bool<class_bool>` **permissions/change_wifi_state**
  869. Allows applications to change Wi-Fi connectivity state. See `CHANGE_WIFI_STATE <https://developer.android.com/reference/android/Manifest.permission#CHANGE_WIFI_STATE>`__.
  870. .. rst-class:: classref-item-separator
  871. ----
  872. .. _class_EditorExportPlatformAndroid_property_permissions/clear_app_cache:
  873. .. rst-class:: classref-property
  874. :ref:`bool<class_bool>` **permissions/clear_app_cache**
  875. Allows an application to clear the caches of all installed applications on the device. See `CLEAR_APP_CACHE <https://developer.android.com/reference/android/Manifest.permission#CLEAR_APP_CACHE>`__.
  876. .. rst-class:: classref-item-separator
  877. ----
  878. .. _class_EditorExportPlatformAndroid_property_permissions/clear_app_user_data:
  879. .. rst-class:: classref-property
  880. :ref:`bool<class_bool>` **permissions/clear_app_user_data**
  881. Allows an application to clear user data.
  882. .. rst-class:: classref-item-separator
  883. ----
  884. .. _class_EditorExportPlatformAndroid_property_permissions/control_location_updates:
  885. .. rst-class:: classref-property
  886. :ref:`bool<class_bool>` **permissions/control_location_updates**
  887. Allows enabling/disabling location update notifications from the radio. See `CONTROL_LOCATION_UPDATES <https://developer.android.com/reference/android/Manifest.permission#CONTROL_LOCATION_UPDATES>`__.
  888. .. rst-class:: classref-item-separator
  889. ----
  890. .. _class_EditorExportPlatformAndroid_property_permissions/custom_permissions:
  891. .. rst-class:: classref-property
  892. :ref:`PackedStringArray<class_PackedStringArray>` **permissions/custom_permissions**
  893. Array of custom permission strings.
  894. .. rst-class:: classref-item-separator
  895. ----
  896. .. _class_EditorExportPlatformAndroid_property_permissions/delete_cache_files:
  897. .. rst-class:: classref-property
  898. :ref:`bool<class_bool>` **permissions/delete_cache_files**
  899. Deprecated.
  900. .. rst-class:: classref-item-separator
  901. ----
  902. .. _class_EditorExportPlatformAndroid_property_permissions/delete_packages:
  903. .. rst-class:: classref-property
  904. :ref:`bool<class_bool>` **permissions/delete_packages**
  905. Allows an application to delete packages. See `DELETE_PACKAGES <https://developer.android.com/reference/android/Manifest.permission#DELETE_PACKAGES>`__.
  906. .. rst-class:: classref-item-separator
  907. ----
  908. .. _class_EditorExportPlatformAndroid_property_permissions/device_power:
  909. .. rst-class:: classref-property
  910. :ref:`bool<class_bool>` **permissions/device_power**
  911. Allows low-level access to power management.
  912. .. rst-class:: classref-item-separator
  913. ----
  914. .. _class_EditorExportPlatformAndroid_property_permissions/diagnostic:
  915. .. rst-class:: classref-property
  916. :ref:`bool<class_bool>` **permissions/diagnostic**
  917. Allows applications to RW to diagnostic resources. See `DIAGNOSTIC <https://developer.android.com/reference/android/Manifest.permission#DIAGNOSTIC>`__.
  918. .. rst-class:: classref-item-separator
  919. ----
  920. .. _class_EditorExportPlatformAndroid_property_permissions/disable_keyguard:
  921. .. rst-class:: classref-property
  922. :ref:`bool<class_bool>` **permissions/disable_keyguard**
  923. Allows applications to disable the keyguard if it is not secure. See `DISABLE_KEYGUARD <https://developer.android.com/reference/android/Manifest.permission#DISABLE_KEYGUARD>`__.
  924. .. rst-class:: classref-item-separator
  925. ----
  926. .. _class_EditorExportPlatformAndroid_property_permissions/dump:
  927. .. rst-class:: classref-property
  928. :ref:`bool<class_bool>` **permissions/dump**
  929. Allows an application to retrieve state dump information from system services. See `DUMP <https://developer.android.com/reference/android/Manifest.permission#DUMP>`__.
  930. .. rst-class:: classref-item-separator
  931. ----
  932. .. _class_EditorExportPlatformAndroid_property_permissions/expand_status_bar:
  933. .. rst-class:: classref-property
  934. :ref:`bool<class_bool>` **permissions/expand_status_bar**
  935. Allows an application to expand or collapse the status bar. See `EXPAND_STATUS_BAR <https://developer.android.com/reference/android/Manifest.permission#EXPAND_STATUS_BAR>`__.
  936. .. rst-class:: classref-item-separator
  937. ----
  938. .. _class_EditorExportPlatformAndroid_property_permissions/factory_test:
  939. .. rst-class:: classref-property
  940. :ref:`bool<class_bool>` **permissions/factory_test**
  941. Run as a manufacturer test application, running as the root user. See `FACTORY_TEST <https://developer.android.com/reference/android/Manifest.permission#FACTORY_TEST>`__.
  942. .. rst-class:: classref-item-separator
  943. ----
  944. .. _class_EditorExportPlatformAndroid_property_permissions/flashlight:
  945. .. rst-class:: classref-property
  946. :ref:`bool<class_bool>` **permissions/flashlight**
  947. Allows access to the flashlight.
  948. .. rst-class:: classref-item-separator
  949. ----
  950. .. _class_EditorExportPlatformAndroid_property_permissions/force_back:
  951. .. rst-class:: classref-property
  952. :ref:`bool<class_bool>` **permissions/force_back**
  953. Allows an application to force a BACK operation on whatever is the top activity.
  954. .. rst-class:: classref-item-separator
  955. ----
  956. .. _class_EditorExportPlatformAndroid_property_permissions/get_accounts:
  957. .. rst-class:: classref-property
  958. :ref:`bool<class_bool>` **permissions/get_accounts**
  959. Allows access to the list of accounts in the Accounts Service. See `GET_ACCOUNTS <https://developer.android.com/reference/android/Manifest.permission#GET_ACCOUNTS>`__.
  960. .. rst-class:: classref-item-separator
  961. ----
  962. .. _class_EditorExportPlatformAndroid_property_permissions/get_package_size:
  963. .. rst-class:: classref-property
  964. :ref:`bool<class_bool>` **permissions/get_package_size**
  965. Allows an application to find out the space used by any package. See `GET_PACKAGE_SIZE <https://developer.android.com/reference/android/Manifest.permission#GET_PACKAGE_SIZE>`__.
  966. .. rst-class:: classref-item-separator
  967. ----
  968. .. _class_EditorExportPlatformAndroid_property_permissions/get_tasks:
  969. .. rst-class:: classref-property
  970. :ref:`bool<class_bool>` **permissions/get_tasks**
  971. Deprecated in API level 21.
  972. .. rst-class:: classref-item-separator
  973. ----
  974. .. _class_EditorExportPlatformAndroid_property_permissions/get_top_activity_info:
  975. .. rst-class:: classref-property
  976. :ref:`bool<class_bool>` **permissions/get_top_activity_info**
  977. Allows an application to retrieve private information about the current top activity.
  978. .. rst-class:: classref-item-separator
  979. ----
  980. .. _class_EditorExportPlatformAndroid_property_permissions/global_search:
  981. .. rst-class:: classref-property
  982. :ref:`bool<class_bool>` **permissions/global_search**
  983. Used on content providers to allow the global search system to access their data. See `GLOBAL_SEARCH <https://developer.android.com/reference/android/Manifest.permission#GLOBAL_SEARCH>`__.
  984. .. rst-class:: classref-item-separator
  985. ----
  986. .. _class_EditorExportPlatformAndroid_property_permissions/hardware_test:
  987. .. rst-class:: classref-property
  988. :ref:`bool<class_bool>` **permissions/hardware_test**
  989. Allows access to hardware peripherals.
  990. .. rst-class:: classref-item-separator
  991. ----
  992. .. _class_EditorExportPlatformAndroid_property_permissions/inject_events:
  993. .. rst-class:: classref-property
  994. :ref:`bool<class_bool>` **permissions/inject_events**
  995. Allows an application to inject user events (keys, touch, trackball) into the event stream and deliver them to ANY window.
  996. .. rst-class:: classref-item-separator
  997. ----
  998. .. _class_EditorExportPlatformAndroid_property_permissions/install_location_provider:
  999. .. rst-class:: classref-property
  1000. :ref:`bool<class_bool>` **permissions/install_location_provider**
  1001. Allows an application to install a location provider into the Location Manager. See `INSTALL_LOCATION_PROVIDER <https://developer.android.com/reference/android/Manifest.permission#INSTALL_LOCATION_PROVIDER>`__.
  1002. .. rst-class:: classref-item-separator
  1003. ----
  1004. .. _class_EditorExportPlatformAndroid_property_permissions/install_packages:
  1005. .. rst-class:: classref-property
  1006. :ref:`bool<class_bool>` **permissions/install_packages**
  1007. Allows an application to install packages. See `INSTALL_PACKAGES <https://developer.android.com/reference/android/Manifest.permission#INSTALL_PACKAGES>`__.
  1008. .. rst-class:: classref-item-separator
  1009. ----
  1010. .. _class_EditorExportPlatformAndroid_property_permissions/install_shortcut:
  1011. .. rst-class:: classref-property
  1012. :ref:`bool<class_bool>` **permissions/install_shortcut**
  1013. Allows an application to install a shortcut in Launcher. See `INSTALL_SHORTCUT <https://developer.android.com/reference/android/Manifest.permission#INSTALL_SHORTCUT>`__.
  1014. .. rst-class:: classref-item-separator
  1015. ----
  1016. .. _class_EditorExportPlatformAndroid_property_permissions/internal_system_window:
  1017. .. rst-class:: classref-property
  1018. :ref:`bool<class_bool>` **permissions/internal_system_window**
  1019. Allows an application to open windows that are for use by parts of the system user interface.
  1020. .. rst-class:: classref-item-separator
  1021. ----
  1022. .. _class_EditorExportPlatformAndroid_property_permissions/internet:
  1023. .. rst-class:: classref-property
  1024. :ref:`bool<class_bool>` **permissions/internet**
  1025. Allows applications to open network sockets. See `INTERNET <https://developer.android.com/reference/android/Manifest.permission#INTERNET>`__.
  1026. .. rst-class:: classref-item-separator
  1027. ----
  1028. .. _class_EditorExportPlatformAndroid_property_permissions/kill_background_processes:
  1029. .. rst-class:: classref-property
  1030. :ref:`bool<class_bool>` **permissions/kill_background_processes**
  1031. Allows an application to call ActivityManager.killBackgroundProcesses(String). See `KILL_BACKGROUND_PROCESSES <https://developer.android.com/reference/android/Manifest.permission#KILL_BACKGROUND_PROCESSES>`__.
  1032. .. rst-class:: classref-item-separator
  1033. ----
  1034. .. _class_EditorExportPlatformAndroid_property_permissions/location_hardware:
  1035. .. rst-class:: classref-property
  1036. :ref:`bool<class_bool>` **permissions/location_hardware**
  1037. Allows an application to use location features in hardware, such as the geofencing api. See `LOCATION_HARDWARE <https://developer.android.com/reference/android/Manifest.permission#LOCATION_HARDWARE>`__.
  1038. .. rst-class:: classref-item-separator
  1039. ----
  1040. .. _class_EditorExportPlatformAndroid_property_permissions/manage_accounts:
  1041. .. rst-class:: classref-property
  1042. :ref:`bool<class_bool>` **permissions/manage_accounts**
  1043. Allows an application to manage the list of accounts in the AccountManager.
  1044. .. rst-class:: classref-item-separator
  1045. ----
  1046. .. _class_EditorExportPlatformAndroid_property_permissions/manage_app_tokens:
  1047. .. rst-class:: classref-property
  1048. :ref:`bool<class_bool>` **permissions/manage_app_tokens**
  1049. Allows an application to manage (create, destroy, Z-order) application tokens in the window manager.
  1050. .. rst-class:: classref-item-separator
  1051. ----
  1052. .. _class_EditorExportPlatformAndroid_property_permissions/manage_documents:
  1053. .. rst-class:: classref-property
  1054. :ref:`bool<class_bool>` **permissions/manage_documents**
  1055. Allows an application to manage access to documents, usually as part of a document picker. See `MANAGE_DOCUMENTS <https://developer.android.com/reference/android/Manifest.permission#MANAGE_DOCUMENTS>`__.
  1056. .. rst-class:: classref-item-separator
  1057. ----
  1058. .. _class_EditorExportPlatformAndroid_property_permissions/manage_external_storage:
  1059. .. rst-class:: classref-property
  1060. :ref:`bool<class_bool>` **permissions/manage_external_storage**
  1061. Allows an application a broad access to external storage in scoped storage. See `MANAGE_EXTERNAL_STORAGE <https://developer.android.com/reference/android/Manifest.permission#MANAGE_EXTERNAL_STORAGE>`__.
  1062. .. rst-class:: classref-item-separator
  1063. ----
  1064. .. _class_EditorExportPlatformAndroid_property_permissions/master_clear:
  1065. .. rst-class:: classref-property
  1066. :ref:`bool<class_bool>` **permissions/master_clear**
  1067. See `MASTER_CLEAR <https://developer.android.com/reference/android/Manifest.permission#MASTER_CLEAR>`__.
  1068. .. rst-class:: classref-item-separator
  1069. ----
  1070. .. _class_EditorExportPlatformAndroid_property_permissions/media_content_control:
  1071. .. rst-class:: classref-property
  1072. :ref:`bool<class_bool>` **permissions/media_content_control**
  1073. Allows an application to know what content is playing and control its playback. See `MEDIA_CONTENT_CONTROL <https://developer.android.com/reference/android/Manifest.permission#MEDIA_CONTENT_CONTROL>`__.
  1074. .. rst-class:: classref-item-separator
  1075. ----
  1076. .. _class_EditorExportPlatformAndroid_property_permissions/modify_audio_settings:
  1077. .. rst-class:: classref-property
  1078. :ref:`bool<class_bool>` **permissions/modify_audio_settings**
  1079. Allows an application to modify global audio settings. See `MODIFY_AUDIO_SETTINGS <https://developer.android.com/reference/android/Manifest.permission#MODIFY_AUDIO_SETTINGS>`__.
  1080. .. rst-class:: classref-item-separator
  1081. ----
  1082. .. _class_EditorExportPlatformAndroid_property_permissions/modify_phone_state:
  1083. .. rst-class:: classref-property
  1084. :ref:`bool<class_bool>` **permissions/modify_phone_state**
  1085. Allows modification of the telephony state - power on, mmi, etc. Does not include placing calls. See `MODIFY_PHONE_STATE <https://developer.android.com/reference/android/Manifest.permission#MODIFY_PHONE_STATE>`__.
  1086. .. rst-class:: classref-item-separator
  1087. ----
  1088. .. _class_EditorExportPlatformAndroid_property_permissions/mount_format_filesystems:
  1089. .. rst-class:: classref-property
  1090. :ref:`bool<class_bool>` **permissions/mount_format_filesystems**
  1091. Allows formatting file systems for removable storage. See `MOUNT_FORMAT_FILESYSTEMS <https://developer.android.com/reference/android/Manifest.permission#MOUNT_FORMAT_FILESYSTEMS>`__.
  1092. .. rst-class:: classref-item-separator
  1093. ----
  1094. .. _class_EditorExportPlatformAndroid_property_permissions/mount_unmount_filesystems:
  1095. .. rst-class:: classref-property
  1096. :ref:`bool<class_bool>` **permissions/mount_unmount_filesystems**
  1097. Allows mounting and unmounting file systems for removable storage. See `MOUNT_UNMOUNT_FILESYSTEMS <https://developer.android.com/reference/android/Manifest.permission#MOUNT_UNMOUNT_FILESYSTEMS>`__.
  1098. .. rst-class:: classref-item-separator
  1099. ----
  1100. .. _class_EditorExportPlatformAndroid_property_permissions/nfc:
  1101. .. rst-class:: classref-property
  1102. :ref:`bool<class_bool>` **permissions/nfc**
  1103. Allows applications to perform I/O operations over NFC. See `NFC <https://developer.android.com/reference/android/Manifest.permission#NFC>`__.
  1104. .. rst-class:: classref-item-separator
  1105. ----
  1106. .. _class_EditorExportPlatformAndroid_property_permissions/persistent_activity:
  1107. .. rst-class:: classref-property
  1108. :ref:`bool<class_bool>` **permissions/persistent_activity**
  1109. Allow an application to make its activities persistent.
  1110. Deprecated in API level 15.
  1111. .. rst-class:: classref-item-separator
  1112. ----
  1113. .. _class_EditorExportPlatformAndroid_property_permissions/post_notifications:
  1114. .. rst-class:: classref-property
  1115. :ref:`bool<class_bool>` **permissions/post_notifications**
  1116. Allow an application to post notifications. Added in API level 33. See `Notification runtime permission <https://developer.android.com/develop/ui/views/notifications/notification-permission>`__.
  1117. .. rst-class:: classref-item-separator
  1118. ----
  1119. .. _class_EditorExportPlatformAndroid_property_permissions/process_outgoing_calls:
  1120. .. rst-class:: classref-property
  1121. :ref:`bool<class_bool>` **permissions/process_outgoing_calls**
  1122. Allows an application to see the number being dialed during an outgoing call with the option to redirect the call to a different number or abort the call altogether. See `PROCESS_OUTGOING_CALLS <https://developer.android.com/reference/android/Manifest.permission#PROCESS_OUTGOING_CALLS>`__.
  1123. Deprecated in API level 29.
  1124. .. rst-class:: classref-item-separator
  1125. ----
  1126. .. _class_EditorExportPlatformAndroid_property_permissions/read_calendar:
  1127. .. rst-class:: classref-property
  1128. :ref:`bool<class_bool>` **permissions/read_calendar**
  1129. Allows an application to read the user's calendar data. See `READ_CALENDAR <https://developer.android.com/reference/android/Manifest.permission#READ_CALENDAR>`__.
  1130. .. rst-class:: classref-item-separator
  1131. ----
  1132. .. _class_EditorExportPlatformAndroid_property_permissions/read_call_log:
  1133. .. rst-class:: classref-property
  1134. :ref:`bool<class_bool>` **permissions/read_call_log**
  1135. Allows an application to read the user's call log. See `READ_CALL_LOG <https://developer.android.com/reference/android/Manifest.permission#READ_CALL_LOG>`__.
  1136. .. rst-class:: classref-item-separator
  1137. ----
  1138. .. _class_EditorExportPlatformAndroid_property_permissions/read_contacts:
  1139. .. rst-class:: classref-property
  1140. :ref:`bool<class_bool>` **permissions/read_contacts**
  1141. Allows an application to read the user's contacts data. See `READ_CONTACTS <https://developer.android.com/reference/android/Manifest.permission#READ_CONTACTS>`__.
  1142. .. rst-class:: classref-item-separator
  1143. ----
  1144. .. _class_EditorExportPlatformAndroid_property_permissions/read_external_storage:
  1145. .. rst-class:: classref-property
  1146. :ref:`bool<class_bool>` **permissions/read_external_storage**
  1147. Allows an application to read from external storage. See `READ_EXTERNAL_STORAGE <https://developer.android.com/reference/android/Manifest.permission#READ_EXTERNAL_STORAGE>`__.
  1148. Deprecated in API level 33.
  1149. .. rst-class:: classref-item-separator
  1150. ----
  1151. .. _class_EditorExportPlatformAndroid_property_permissions/read_frame_buffer:
  1152. .. rst-class:: classref-property
  1153. :ref:`bool<class_bool>` **permissions/read_frame_buffer**
  1154. Allows an application to take screen shots and more generally get access to the frame buffer data.
  1155. .. rst-class:: classref-item-separator
  1156. ----
  1157. .. _class_EditorExportPlatformAndroid_property_permissions/read_history_bookmarks:
  1158. .. rst-class:: classref-property
  1159. :ref:`bool<class_bool>` **permissions/read_history_bookmarks**
  1160. Allows an application to read (but not write) the user's browsing history and bookmarks.
  1161. .. rst-class:: classref-item-separator
  1162. ----
  1163. .. _class_EditorExportPlatformAndroid_property_permissions/read_input_state:
  1164. .. rst-class:: classref-property
  1165. :ref:`bool<class_bool>` **permissions/read_input_state**
  1166. Deprecated in API level 16.
  1167. .. rst-class:: classref-item-separator
  1168. ----
  1169. .. _class_EditorExportPlatformAndroid_property_permissions/read_logs:
  1170. .. rst-class:: classref-property
  1171. :ref:`bool<class_bool>` **permissions/read_logs**
  1172. Allows an application to read the low-level system log files. See `READ_LOGS <https://developer.android.com/reference/android/Manifest.permission#READ_LOGS>`__.
  1173. .. rst-class:: classref-item-separator
  1174. ----
  1175. .. _class_EditorExportPlatformAndroid_property_permissions/read_phone_state:
  1176. .. rst-class:: classref-property
  1177. :ref:`bool<class_bool>` **permissions/read_phone_state**
  1178. Allows read only access to phone state. See `READ_PHONE_STATE <https://developer.android.com/reference/android/Manifest.permission#READ_PHONE_STATE>`__.
  1179. .. rst-class:: classref-item-separator
  1180. ----
  1181. .. _class_EditorExportPlatformAndroid_property_permissions/read_profile:
  1182. .. rst-class:: classref-property
  1183. :ref:`bool<class_bool>` **permissions/read_profile**
  1184. Allows an application to read the user's personal profile data.
  1185. .. rst-class:: classref-item-separator
  1186. ----
  1187. .. _class_EditorExportPlatformAndroid_property_permissions/read_sms:
  1188. .. rst-class:: classref-property
  1189. :ref:`bool<class_bool>` **permissions/read_sms**
  1190. Allows an application to read SMS messages. See `READ_SMS <https://developer.android.com/reference/android/Manifest.permission#READ_SMS>`__.
  1191. .. rst-class:: classref-item-separator
  1192. ----
  1193. .. _class_EditorExportPlatformAndroid_property_permissions/read_social_stream:
  1194. .. rst-class:: classref-property
  1195. :ref:`bool<class_bool>` **permissions/read_social_stream**
  1196. Allows an application to read from the user's social stream.
  1197. .. rst-class:: classref-item-separator
  1198. ----
  1199. .. _class_EditorExportPlatformAndroid_property_permissions/read_sync_settings:
  1200. .. rst-class:: classref-property
  1201. :ref:`bool<class_bool>` **permissions/read_sync_settings**
  1202. Allows applications to read the sync settings. See `READ_SYNC_SETTINGS <https://developer.android.com/reference/android/Manifest.permission#READ_SYNC_SETTINGS>`__.
  1203. .. rst-class:: classref-item-separator
  1204. ----
  1205. .. _class_EditorExportPlatformAndroid_property_permissions/read_sync_stats:
  1206. .. rst-class:: classref-property
  1207. :ref:`bool<class_bool>` **permissions/read_sync_stats**
  1208. Allows applications to read the sync stats. See `READ_SYNC_STATS <https://developer.android.com/reference/android/Manifest.permission#READ_SYNC_STATS>`__.
  1209. .. rst-class:: classref-item-separator
  1210. ----
  1211. .. _class_EditorExportPlatformAndroid_property_permissions/read_user_dictionary:
  1212. .. rst-class:: classref-property
  1213. :ref:`bool<class_bool>` **permissions/read_user_dictionary**
  1214. Allows an application to read the user dictionary.
  1215. .. rst-class:: classref-item-separator
  1216. ----
  1217. .. _class_EditorExportPlatformAndroid_property_permissions/reboot:
  1218. .. rst-class:: classref-property
  1219. :ref:`bool<class_bool>` **permissions/reboot**
  1220. Required to be able to reboot the device. See `REBOOT <https://developer.android.com/reference/android/Manifest.permission#REBOOT>`__.
  1221. .. rst-class:: classref-item-separator
  1222. ----
  1223. .. _class_EditorExportPlatformAndroid_property_permissions/receive_boot_completed:
  1224. .. rst-class:: classref-property
  1225. :ref:`bool<class_bool>` **permissions/receive_boot_completed**
  1226. Allows an application to receive the Intent.ACTION_BOOT_COMPLETED that is broadcast after the system finishes booting. See `RECEIVE_BOOT_COMPLETED <https://developer.android.com/reference/android/Manifest.permission#RECEIVE_BOOT_COMPLETED>`__.
  1227. .. rst-class:: classref-item-separator
  1228. ----
  1229. .. _class_EditorExportPlatformAndroid_property_permissions/receive_mms:
  1230. .. rst-class:: classref-property
  1231. :ref:`bool<class_bool>` **permissions/receive_mms**
  1232. Allows an application to monitor incoming MMS messages. See `RECEIVE_MMS <https://developer.android.com/reference/android/Manifest.permission#RECEIVE_MMS>`__.
  1233. .. rst-class:: classref-item-separator
  1234. ----
  1235. .. _class_EditorExportPlatformAndroid_property_permissions/receive_sms:
  1236. .. rst-class:: classref-property
  1237. :ref:`bool<class_bool>` **permissions/receive_sms**
  1238. Allows an application to receive SMS messages. See `RECEIVE_SMS <https://developer.android.com/reference/android/Manifest.permission#RECEIVE_SMS>`__.
  1239. .. rst-class:: classref-item-separator
  1240. ----
  1241. .. _class_EditorExportPlatformAndroid_property_permissions/receive_wap_push:
  1242. .. rst-class:: classref-property
  1243. :ref:`bool<class_bool>` **permissions/receive_wap_push**
  1244. Allows an application to receive WAP push messages. See `RECEIVE_WAP_PUSH <https://developer.android.com/reference/android/Manifest.permission#RECEIVE_WAP_PUSH>`__.
  1245. .. rst-class:: classref-item-separator
  1246. ----
  1247. .. _class_EditorExportPlatformAndroid_property_permissions/record_audio:
  1248. .. rst-class:: classref-property
  1249. :ref:`bool<class_bool>` **permissions/record_audio**
  1250. Allows an application to record audio. See `RECORD_AUDIO <https://developer.android.com/reference/android/Manifest.permission#RECORD_AUDIO>`__.
  1251. .. rst-class:: classref-item-separator
  1252. ----
  1253. .. _class_EditorExportPlatformAndroid_property_permissions/reorder_tasks:
  1254. .. rst-class:: classref-property
  1255. :ref:`bool<class_bool>` **permissions/reorder_tasks**
  1256. Allows an application to change the Z-order of tasks. See `REORDER_TASKS <https://developer.android.com/reference/android/Manifest.permission#REORDER_TASKS>`__.
  1257. .. rst-class:: classref-item-separator
  1258. ----
  1259. .. _class_EditorExportPlatformAndroid_property_permissions/restart_packages:
  1260. .. rst-class:: classref-property
  1261. :ref:`bool<class_bool>` **permissions/restart_packages**
  1262. Deprecated in API level 15.
  1263. .. rst-class:: classref-item-separator
  1264. ----
  1265. .. _class_EditorExportPlatformAndroid_property_permissions/send_respond_via_message:
  1266. .. rst-class:: classref-property
  1267. :ref:`bool<class_bool>` **permissions/send_respond_via_message**
  1268. Allows an application (Phone) to send a request to other applications to handle the respond-via-message action during incoming calls. See `SEND_RESPOND_VIA_MESSAGE <https://developer.android.com/reference/android/Manifest.permission#SEND_RESPOND_VIA_MESSAGE>`__.
  1269. .. rst-class:: classref-item-separator
  1270. ----
  1271. .. _class_EditorExportPlatformAndroid_property_permissions/send_sms:
  1272. .. rst-class:: classref-property
  1273. :ref:`bool<class_bool>` **permissions/send_sms**
  1274. Allows an application to send SMS messages. See `SEND_SMS <https://developer.android.com/reference/android/Manifest.permission#SEND_SMS>`__.
  1275. .. rst-class:: classref-item-separator
  1276. ----
  1277. .. _class_EditorExportPlatformAndroid_property_permissions/set_activity_watcher:
  1278. .. rst-class:: classref-property
  1279. :ref:`bool<class_bool>` **permissions/set_activity_watcher**
  1280. Allows an application to watch and control how activities are started globally in the system.
  1281. .. rst-class:: classref-item-separator
  1282. ----
  1283. .. _class_EditorExportPlatformAndroid_property_permissions/set_alarm:
  1284. .. rst-class:: classref-property
  1285. :ref:`bool<class_bool>` **permissions/set_alarm**
  1286. Allows an application to broadcast an Intent to set an alarm for the user. See `SET_ALARM <https://developer.android.com/reference/android/Manifest.permission#SET_ALARM>`__.
  1287. .. rst-class:: classref-item-separator
  1288. ----
  1289. .. _class_EditorExportPlatformAndroid_property_permissions/set_always_finish:
  1290. .. rst-class:: classref-property
  1291. :ref:`bool<class_bool>` **permissions/set_always_finish**
  1292. Allows an application to control whether activities are immediately finished when put in the background. See `SET_ALWAYS_FINISH <https://developer.android.com/reference/android/Manifest.permission#SET_ALWAYS_FINISH>`__.
  1293. .. rst-class:: classref-item-separator
  1294. ----
  1295. .. _class_EditorExportPlatformAndroid_property_permissions/set_animation_scale:
  1296. .. rst-class:: classref-property
  1297. :ref:`bool<class_bool>` **permissions/set_animation_scale**
  1298. Allows to modify the global animation scaling factor. See `SET_ANIMATION_SCALE <https://developer.android.com/reference/android/Manifest.permission#SET_ANIMATION_SCALE>`__.
  1299. .. rst-class:: classref-item-separator
  1300. ----
  1301. .. _class_EditorExportPlatformAndroid_property_permissions/set_debug_app:
  1302. .. rst-class:: classref-property
  1303. :ref:`bool<class_bool>` **permissions/set_debug_app**
  1304. Configure an application for debugging. See `SET_DEBUG_APP <https://developer.android.com/reference/android/Manifest.permission#SET_DEBUG_APP>`__.
  1305. .. rst-class:: classref-item-separator
  1306. ----
  1307. .. _class_EditorExportPlatformAndroid_property_permissions/set_orientation:
  1308. .. rst-class:: classref-property
  1309. :ref:`bool<class_bool>` **permissions/set_orientation**
  1310. Allows low-level access to setting the orientation (actually rotation) of the screen.
  1311. .. rst-class:: classref-item-separator
  1312. ----
  1313. .. _class_EditorExportPlatformAndroid_property_permissions/set_pointer_speed:
  1314. .. rst-class:: classref-property
  1315. :ref:`bool<class_bool>` **permissions/set_pointer_speed**
  1316. Allows low-level access to setting the pointer speed.
  1317. .. rst-class:: classref-item-separator
  1318. ----
  1319. .. _class_EditorExportPlatformAndroid_property_permissions/set_preferred_applications:
  1320. .. rst-class:: classref-property
  1321. :ref:`bool<class_bool>` **permissions/set_preferred_applications**
  1322. Deprecated in API level 15.
  1323. .. rst-class:: classref-item-separator
  1324. ----
  1325. .. _class_EditorExportPlatformAndroid_property_permissions/set_process_limit:
  1326. .. rst-class:: classref-property
  1327. :ref:`bool<class_bool>` **permissions/set_process_limit**
  1328. Allows an application to set the maximum number of (not needed) application processes that can be running. See `SET_PROCESS_LIMIT <https://developer.android.com/reference/android/Manifest.permission#SET_PROCESS_LIMIT>`__.
  1329. .. rst-class:: classref-item-separator
  1330. ----
  1331. .. _class_EditorExportPlatformAndroid_property_permissions/set_time:
  1332. .. rst-class:: classref-property
  1333. :ref:`bool<class_bool>` **permissions/set_time**
  1334. Allows applications to set the system time directly. See `SET_TIME <https://developer.android.com/reference/android/Manifest.permission#SET_TIME>`__.
  1335. .. rst-class:: classref-item-separator
  1336. ----
  1337. .. _class_EditorExportPlatformAndroid_property_permissions/set_time_zone:
  1338. .. rst-class:: classref-property
  1339. :ref:`bool<class_bool>` **permissions/set_time_zone**
  1340. Allows applications to set the system time zone directly. See `SET_TIME_ZONE <https://developer.android.com/reference/android/Manifest.permission#SET_TIME_ZONE>`__.
  1341. .. rst-class:: classref-item-separator
  1342. ----
  1343. .. _class_EditorExportPlatformAndroid_property_permissions/set_wallpaper:
  1344. .. rst-class:: classref-property
  1345. :ref:`bool<class_bool>` **permissions/set_wallpaper**
  1346. Allows applications to set the wallpaper. See `SET_WALLPAPER <https://developer.android.com/reference/android/Manifest.permission#SET_WALLPAPER>`__.
  1347. .. rst-class:: classref-item-separator
  1348. ----
  1349. .. _class_EditorExportPlatformAndroid_property_permissions/set_wallpaper_hints:
  1350. .. rst-class:: classref-property
  1351. :ref:`bool<class_bool>` **permissions/set_wallpaper_hints**
  1352. Allows applications to set the wallpaper hints. See `SET_WALLPAPER_HINTS <https://developer.android.com/reference/android/Manifest.permission#SET_WALLPAPER_HINTS>`__.
  1353. .. rst-class:: classref-item-separator
  1354. ----
  1355. .. _class_EditorExportPlatformAndroid_property_permissions/signal_persistent_processes:
  1356. .. rst-class:: classref-property
  1357. :ref:`bool<class_bool>` **permissions/signal_persistent_processes**
  1358. Allow an application to request that a signal be sent to all persistent processes. See `SIGNAL_PERSISTENT_PROCESSES <https://developer.android.com/reference/android/Manifest.permission#SIGNAL_PERSISTENT_PROCESSES>`__.
  1359. .. rst-class:: classref-item-separator
  1360. ----
  1361. .. _class_EditorExportPlatformAndroid_property_permissions/status_bar:
  1362. .. rst-class:: classref-property
  1363. :ref:`bool<class_bool>` **permissions/status_bar**
  1364. Allows an application to open, close, or disable the status bar and its icons. See `STATUS_BAR <https://developer.android.com/reference/android/Manifest.permission#STATUS_BAR>`__.
  1365. .. rst-class:: classref-item-separator
  1366. ----
  1367. .. _class_EditorExportPlatformAndroid_property_permissions/subscribed_feeds_read:
  1368. .. rst-class:: classref-property
  1369. :ref:`bool<class_bool>` **permissions/subscribed_feeds_read**
  1370. Allows an application to allow access the subscribed feeds ContentProvider.
  1371. .. rst-class:: classref-item-separator
  1372. ----
  1373. .. _class_EditorExportPlatformAndroid_property_permissions/subscribed_feeds_write:
  1374. .. rst-class:: classref-property
  1375. :ref:`bool<class_bool>` **permissions/subscribed_feeds_write**
  1376. Deprecated.
  1377. .. rst-class:: classref-item-separator
  1378. ----
  1379. .. _class_EditorExportPlatformAndroid_property_permissions/system_alert_window:
  1380. .. rst-class:: classref-property
  1381. :ref:`bool<class_bool>` **permissions/system_alert_window**
  1382. Allows an app to create windows using the type WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY, shown on top of all other apps. See `SYSTEM_ALERT_WINDOW <https://developer.android.com/reference/android/Manifest.permission#SYSTEM_ALERT_WINDOW>`__.
  1383. .. rst-class:: classref-item-separator
  1384. ----
  1385. .. _class_EditorExportPlatformAndroid_property_permissions/transmit_ir:
  1386. .. rst-class:: classref-property
  1387. :ref:`bool<class_bool>` **permissions/transmit_ir**
  1388. Allows using the device's IR transmitter, if available. See `TRANSMIT_IR <https://developer.android.com/reference/android/Manifest.permission#TRANSMIT_IR>`__.
  1389. .. rst-class:: classref-item-separator
  1390. ----
  1391. .. _class_EditorExportPlatformAndroid_property_permissions/uninstall_shortcut:
  1392. .. rst-class:: classref-property
  1393. :ref:`bool<class_bool>` **permissions/uninstall_shortcut**
  1394. Deprecated.
  1395. .. rst-class:: classref-item-separator
  1396. ----
  1397. .. _class_EditorExportPlatformAndroid_property_permissions/update_device_stats:
  1398. .. rst-class:: classref-property
  1399. :ref:`bool<class_bool>` **permissions/update_device_stats**
  1400. Allows an application to update device statistics. See `UPDATE_DEVICE_STATS <https://developer.android.com/reference/android/Manifest.permission#UPDATE_DEVICE_STATS>`__.
  1401. .. rst-class:: classref-item-separator
  1402. ----
  1403. .. _class_EditorExportPlatformAndroid_property_permissions/use_credentials:
  1404. .. rst-class:: classref-property
  1405. :ref:`bool<class_bool>` **permissions/use_credentials**
  1406. Allows an application to request authtokens from the AccountManager.
  1407. .. rst-class:: classref-item-separator
  1408. ----
  1409. .. _class_EditorExportPlatformAndroid_property_permissions/use_sip:
  1410. .. rst-class:: classref-property
  1411. :ref:`bool<class_bool>` **permissions/use_sip**
  1412. Allows an application to use SIP service. See `USE_SIP <https://developer.android.com/reference/android/Manifest.permission#USE_SIP>`__.
  1413. .. rst-class:: classref-item-separator
  1414. ----
  1415. .. _class_EditorExportPlatformAndroid_property_permissions/vibrate:
  1416. .. rst-class:: classref-property
  1417. :ref:`bool<class_bool>` **permissions/vibrate**
  1418. Allows access to the vibrator. See `VIBRATE <https://developer.android.com/reference/android/Manifest.permission#VIBRATE>`__.
  1419. .. rst-class:: classref-item-separator
  1420. ----
  1421. .. _class_EditorExportPlatformAndroid_property_permissions/wake_lock:
  1422. .. rst-class:: classref-property
  1423. :ref:`bool<class_bool>` **permissions/wake_lock**
  1424. Allows using PowerManager WakeLocks to keep processor from sleeping or screen from dimming. See `WAKE_LOCK <https://developer.android.com/reference/android/Manifest.permission#WAKE_LOCK>`__.
  1425. .. rst-class:: classref-item-separator
  1426. ----
  1427. .. _class_EditorExportPlatformAndroid_property_permissions/write_apn_settings:
  1428. .. rst-class:: classref-property
  1429. :ref:`bool<class_bool>` **permissions/write_apn_settings**
  1430. Allows applications to write the apn settings and read sensitive fields of an existing apn settings like user and password. See `WRITE_APN_SETTINGS <https://developer.android.com/reference/android/Manifest.permission#WRITE_APN_SETTINGS>`__.
  1431. .. rst-class:: classref-item-separator
  1432. ----
  1433. .. _class_EditorExportPlatformAndroid_property_permissions/write_calendar:
  1434. .. rst-class:: classref-property
  1435. :ref:`bool<class_bool>` **permissions/write_calendar**
  1436. Allows an application to write the user's calendar data. See `WRITE_CALENDAR <https://developer.android.com/reference/android/Manifest.permission#WRITE_CALENDAR>`__.
  1437. .. rst-class:: classref-item-separator
  1438. ----
  1439. .. _class_EditorExportPlatformAndroid_property_permissions/write_call_log:
  1440. .. rst-class:: classref-property
  1441. :ref:`bool<class_bool>` **permissions/write_call_log**
  1442. Allows an application to write (but not read) the user's call log data. See `WRITE_CALL_LOG <https://developer.android.com/reference/android/Manifest.permission#WRITE_CALL_LOG>`__.
  1443. .. rst-class:: classref-item-separator
  1444. ----
  1445. .. _class_EditorExportPlatformAndroid_property_permissions/write_contacts:
  1446. .. rst-class:: classref-property
  1447. :ref:`bool<class_bool>` **permissions/write_contacts**
  1448. Allows an application to write the user's contacts data. See `WRITE_CONTACTS <https://developer.android.com/reference/android/Manifest.permission#WRITE_CONTACTS>`__.
  1449. .. rst-class:: classref-item-separator
  1450. ----
  1451. .. _class_EditorExportPlatformAndroid_property_permissions/write_external_storage:
  1452. .. rst-class:: classref-property
  1453. :ref:`bool<class_bool>` **permissions/write_external_storage**
  1454. Allows an application to write to external storage. See `WRITE_EXTERNAL_STORAGE <https://developer.android.com/reference/android/Manifest.permission#WRITE_EXTERNAL_STORAGE>`__.
  1455. .. rst-class:: classref-item-separator
  1456. ----
  1457. .. _class_EditorExportPlatformAndroid_property_permissions/write_gservices:
  1458. .. rst-class:: classref-property
  1459. :ref:`bool<class_bool>` **permissions/write_gservices**
  1460. Allows an application to modify the Google service map. See `WRITE_GSERVICES <https://developer.android.com/reference/android/Manifest.permission#WRITE_GSERVICES>`__.
  1461. .. rst-class:: classref-item-separator
  1462. ----
  1463. .. _class_EditorExportPlatformAndroid_property_permissions/write_history_bookmarks:
  1464. .. rst-class:: classref-property
  1465. :ref:`bool<class_bool>` **permissions/write_history_bookmarks**
  1466. Allows an application to write (but not read) the user's browsing history and bookmarks.
  1467. .. rst-class:: classref-item-separator
  1468. ----
  1469. .. _class_EditorExportPlatformAndroid_property_permissions/write_profile:
  1470. .. rst-class:: classref-property
  1471. :ref:`bool<class_bool>` **permissions/write_profile**
  1472. Allows an application to write (but not read) the user's personal profile data.
  1473. .. rst-class:: classref-item-separator
  1474. ----
  1475. .. _class_EditorExportPlatformAndroid_property_permissions/write_secure_settings:
  1476. .. rst-class:: classref-property
  1477. :ref:`bool<class_bool>` **permissions/write_secure_settings**
  1478. Allows an application to read or write the secure system settings. See `WRITE_SECURE_SETTINGS <https://developer.android.com/reference/android/Manifest.permission#WRITE_SECURE_SETTINGS>`__.
  1479. .. rst-class:: classref-item-separator
  1480. ----
  1481. .. _class_EditorExportPlatformAndroid_property_permissions/write_settings:
  1482. .. rst-class:: classref-property
  1483. :ref:`bool<class_bool>` **permissions/write_settings**
  1484. Allows an application to read or write the system settings. See `WRITE_SETTINGS <https://developer.android.com/reference/android/Manifest.permission#WRITE_SETTINGS>`__.
  1485. .. rst-class:: classref-item-separator
  1486. ----
  1487. .. _class_EditorExportPlatformAndroid_property_permissions/write_sms:
  1488. .. rst-class:: classref-property
  1489. :ref:`bool<class_bool>` **permissions/write_sms**
  1490. Allows an application to write SMS messages.
  1491. .. rst-class:: classref-item-separator
  1492. ----
  1493. .. _class_EditorExportPlatformAndroid_property_permissions/write_social_stream:
  1494. .. rst-class:: classref-property
  1495. :ref:`bool<class_bool>` **permissions/write_social_stream**
  1496. Allows an application to write (but not read) the user's social stream data.
  1497. .. rst-class:: classref-item-separator
  1498. ----
  1499. .. _class_EditorExportPlatformAndroid_property_permissions/write_sync_settings:
  1500. .. rst-class:: classref-property
  1501. :ref:`bool<class_bool>` **permissions/write_sync_settings**
  1502. Allows applications to write the sync settings. See `WRITE_SYNC_SETTINGS <https://developer.android.com/reference/android/Manifest.permission#WRITE_SYNC_SETTINGS>`__.
  1503. .. rst-class:: classref-item-separator
  1504. ----
  1505. .. _class_EditorExportPlatformAndroid_property_permissions/write_user_dictionary:
  1506. .. rst-class:: classref-property
  1507. :ref:`bool<class_bool>` **permissions/write_user_dictionary**
  1508. Allows an application to write to the user dictionary.
  1509. .. rst-class:: classref-item-separator
  1510. ----
  1511. .. _class_EditorExportPlatformAndroid_property_screen/immersive_mode:
  1512. .. rst-class:: classref-property
  1513. :ref:`bool<class_bool>` **screen/immersive_mode**
  1514. If ``true``, hides navigation and status bar.
  1515. .. rst-class:: classref-item-separator
  1516. ----
  1517. .. _class_EditorExportPlatformAndroid_property_screen/support_large:
  1518. .. rst-class:: classref-property
  1519. :ref:`bool<class_bool>` **screen/support_large**
  1520. Indicates whether the application supports larger screen form-factors.
  1521. .. rst-class:: classref-item-separator
  1522. ----
  1523. .. _class_EditorExportPlatformAndroid_property_screen/support_normal:
  1524. .. rst-class:: classref-property
  1525. :ref:`bool<class_bool>` **screen/support_normal**
  1526. Indicates whether an application supports the "normal" screen form-factors.
  1527. .. rst-class:: classref-item-separator
  1528. ----
  1529. .. _class_EditorExportPlatformAndroid_property_screen/support_small:
  1530. .. rst-class:: classref-property
  1531. :ref:`bool<class_bool>` **screen/support_small**
  1532. Indicates whether the application supports smaller screen form-factors.
  1533. .. rst-class:: classref-item-separator
  1534. ----
  1535. .. _class_EditorExportPlatformAndroid_property_screen/support_xlarge:
  1536. .. rst-class:: classref-property
  1537. :ref:`bool<class_bool>` **screen/support_xlarge**
  1538. Indicates whether the application supports extra large screen form-factors.
  1539. .. rst-class:: classref-item-separator
  1540. ----
  1541. .. _class_EditorExportPlatformAndroid_property_user_data_backup/allow:
  1542. .. rst-class:: classref-property
  1543. :ref:`bool<class_bool>` **user_data_backup/allow**
  1544. If ``true``, allows the application to participate in the backup and restore infrastructure.
  1545. .. rst-class:: classref-item-separator
  1546. ----
  1547. .. _class_EditorExportPlatformAndroid_property_version/code:
  1548. .. rst-class:: classref-property
  1549. :ref:`int<class_int>` **version/code**
  1550. Machine-readable application version. This must be incremented for every new release pushed to the Play Store.
  1551. .. rst-class:: classref-item-separator
  1552. ----
  1553. .. _class_EditorExportPlatformAndroid_property_version/name:
  1554. .. rst-class:: classref-property
  1555. :ref:`String<class_String>` **version/name**
  1556. Application version visible to the user. Falls back to :ref:`ProjectSettings.application/config/version<class_ProjectSettings_property_application/config/version>` if left empty.
  1557. .. rst-class:: classref-item-separator
  1558. ----
  1559. .. _class_EditorExportPlatformAndroid_property_xr_features/xr_mode:
  1560. .. rst-class:: classref-property
  1561. :ref:`int<class_int>` **xr_features/xr_mode**
  1562. .. container:: contribute
  1563. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  1564. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  1565. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  1566. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  1567. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  1568. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  1569. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  1570. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`