class_editorexportplatformandroid.rst 172 KB

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