class_editorexportplatformandroid.rst 171 KB

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