123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745 |
- :github_url: hide
- .. DO NOT EDIT THIS FILE!!!
- .. Generated automatically from Godot engine sources.
- .. Generator: https://github.com/godotengine/godot/tree/4.2/doc/tools/make_rst.py.
- .. XML source: https://github.com/godotengine/godot/tree/4.2/platform/android/doc_classes/EditorExportPlatformAndroid.xml.
- .. _class_EditorExportPlatformAndroid:
- EditorExportPlatformAndroid
- ===========================
- **Inherits:** :ref:`EditorExportPlatform<class_EditorExportPlatform>` **<** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
- Exporter for Android.
- .. rst-class:: classref-introduction-group
- Tutorials
- ---------
- - :doc:`Exporting for Android <../tutorials/export/exporting_for_android>`
- - :doc:`Gradle builds for Android <../tutorials/export/android_gradle_build>`
- - :doc:`Android plugins documentation index <../tutorials/platform/index>`
- .. rst-class:: classref-reftable-group
- Properties
- ----------
- .. table::
- :widths: auto
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`apk_expansion/SALT<class_EditorExportPlatformAndroid_property_apk_expansion/SALT>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`apk_expansion/enable<class_EditorExportPlatformAndroid_property_apk_expansion/enable>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`apk_expansion/public_key<class_EditorExportPlatformAndroid_property_apk_expansion/public_key>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`architectures/arm64-v8a<class_EditorExportPlatformAndroid_property_architectures/arm64-v8a>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`architectures/armeabi-v7a<class_EditorExportPlatformAndroid_property_architectures/armeabi-v7a>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`architectures/x86<class_EditorExportPlatformAndroid_property_architectures/x86>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`architectures/x86_64<class_EditorExportPlatformAndroid_property_architectures/x86_64>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`command_line/extra_args<class_EditorExportPlatformAndroid_property_command_line/extra_args>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`custom_template/debug<class_EditorExportPlatformAndroid_property_custom_template/debug>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`custom_template/release<class_EditorExportPlatformAndroid_property_custom_template/release>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`gradle_build/export_format<class_EditorExportPlatformAndroid_property_gradle_build/export_format>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`gradle_build/min_sdk<class_EditorExportPlatformAndroid_property_gradle_build/min_sdk>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`gradle_build/target_sdk<class_EditorExportPlatformAndroid_property_gradle_build/target_sdk>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`gradle_build/use_gradle_build<class_EditorExportPlatformAndroid_property_gradle_build/use_gradle_build>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`graphics/opengl_debug<class_EditorExportPlatformAndroid_property_graphics/opengl_debug>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`keystore/debug<class_EditorExportPlatformAndroid_property_keystore/debug>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`keystore/debug_password<class_EditorExportPlatformAndroid_property_keystore/debug_password>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`keystore/debug_user<class_EditorExportPlatformAndroid_property_keystore/debug_user>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`keystore/release<class_EditorExportPlatformAndroid_property_keystore/release>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`keystore/release_password<class_EditorExportPlatformAndroid_property_keystore/release_password>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`keystore/release_user<class_EditorExportPlatformAndroid_property_keystore/release_user>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`launcher_icons/adaptive_background_432x432<class_EditorExportPlatformAndroid_property_launcher_icons/adaptive_background_432x432>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`launcher_icons/adaptive_foreground_432x432<class_EditorExportPlatformAndroid_property_launcher_icons/adaptive_foreground_432x432>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`launcher_icons/main_192x192<class_EditorExportPlatformAndroid_property_launcher_icons/main_192x192>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`package/app_category<class_EditorExportPlatformAndroid_property_package/app_category>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`package/exclude_from_recents<class_EditorExportPlatformAndroid_property_package/exclude_from_recents>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`package/name<class_EditorExportPlatformAndroid_property_package/name>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`package/retain_data_on_uninstall<class_EditorExportPlatformAndroid_property_package/retain_data_on_uninstall>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`package/show_as_launcher_app<class_EditorExportPlatformAndroid_property_package/show_as_launcher_app>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`package/show_in_android_tv<class_EditorExportPlatformAndroid_property_package/show_in_android_tv>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`package/show_in_app_library<class_EditorExportPlatformAndroid_property_package/show_in_app_library>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`package/signed<class_EditorExportPlatformAndroid_property_package/signed>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`package/unique_name<class_EditorExportPlatformAndroid_property_package/unique_name>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/access_checkin_properties<class_EditorExportPlatformAndroid_property_permissions/access_checkin_properties>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/access_coarse_location<class_EditorExportPlatformAndroid_property_permissions/access_coarse_location>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/access_fine_location<class_EditorExportPlatformAndroid_property_permissions/access_fine_location>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/access_location_extra_commands<class_EditorExportPlatformAndroid_property_permissions/access_location_extra_commands>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/access_mock_location<class_EditorExportPlatformAndroid_property_permissions/access_mock_location>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/access_network_state<class_EditorExportPlatformAndroid_property_permissions/access_network_state>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/access_surface_flinger<class_EditorExportPlatformAndroid_property_permissions/access_surface_flinger>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/access_wifi_state<class_EditorExportPlatformAndroid_property_permissions/access_wifi_state>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/account_manager<class_EditorExportPlatformAndroid_property_permissions/account_manager>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/add_voicemail<class_EditorExportPlatformAndroid_property_permissions/add_voicemail>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/authenticate_accounts<class_EditorExportPlatformAndroid_property_permissions/authenticate_accounts>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/battery_stats<class_EditorExportPlatformAndroid_property_permissions/battery_stats>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bind_accessibility_service<class_EditorExportPlatformAndroid_property_permissions/bind_accessibility_service>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bind_appwidget<class_EditorExportPlatformAndroid_property_permissions/bind_appwidget>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bind_device_admin<class_EditorExportPlatformAndroid_property_permissions/bind_device_admin>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bind_input_method<class_EditorExportPlatformAndroid_property_permissions/bind_input_method>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bind_nfc_service<class_EditorExportPlatformAndroid_property_permissions/bind_nfc_service>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bind_notification_listener_service<class_EditorExportPlatformAndroid_property_permissions/bind_notification_listener_service>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bind_print_service<class_EditorExportPlatformAndroid_property_permissions/bind_print_service>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bind_remoteviews<class_EditorExportPlatformAndroid_property_permissions/bind_remoteviews>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bind_text_service<class_EditorExportPlatformAndroid_property_permissions/bind_text_service>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bind_vpn_service<class_EditorExportPlatformAndroid_property_permissions/bind_vpn_service>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bind_wallpaper<class_EditorExportPlatformAndroid_property_permissions/bind_wallpaper>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bluetooth<class_EditorExportPlatformAndroid_property_permissions/bluetooth>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bluetooth_admin<class_EditorExportPlatformAndroid_property_permissions/bluetooth_admin>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/bluetooth_privileged<class_EditorExportPlatformAndroid_property_permissions/bluetooth_privileged>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/brick<class_EditorExportPlatformAndroid_property_permissions/brick>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/broadcast_package_removed<class_EditorExportPlatformAndroid_property_permissions/broadcast_package_removed>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/broadcast_sms<class_EditorExportPlatformAndroid_property_permissions/broadcast_sms>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/broadcast_sticky<class_EditorExportPlatformAndroid_property_permissions/broadcast_sticky>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/broadcast_wap_push<class_EditorExportPlatformAndroid_property_permissions/broadcast_wap_push>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/call_phone<class_EditorExportPlatformAndroid_property_permissions/call_phone>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/call_privileged<class_EditorExportPlatformAndroid_property_permissions/call_privileged>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/camera<class_EditorExportPlatformAndroid_property_permissions/camera>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/capture_audio_output<class_EditorExportPlatformAndroid_property_permissions/capture_audio_output>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/capture_secure_video_output<class_EditorExportPlatformAndroid_property_permissions/capture_secure_video_output>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/capture_video_output<class_EditorExportPlatformAndroid_property_permissions/capture_video_output>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/change_component_enabled_state<class_EditorExportPlatformAndroid_property_permissions/change_component_enabled_state>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/change_configuration<class_EditorExportPlatformAndroid_property_permissions/change_configuration>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/change_network_state<class_EditorExportPlatformAndroid_property_permissions/change_network_state>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/change_wifi_multicast_state<class_EditorExportPlatformAndroid_property_permissions/change_wifi_multicast_state>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/change_wifi_state<class_EditorExportPlatformAndroid_property_permissions/change_wifi_state>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/clear_app_cache<class_EditorExportPlatformAndroid_property_permissions/clear_app_cache>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/clear_app_user_data<class_EditorExportPlatformAndroid_property_permissions/clear_app_user_data>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/control_location_updates<class_EditorExportPlatformAndroid_property_permissions/control_location_updates>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`permissions/custom_permissions<class_EditorExportPlatformAndroid_property_permissions/custom_permissions>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/delete_cache_files<class_EditorExportPlatformAndroid_property_permissions/delete_cache_files>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/delete_packages<class_EditorExportPlatformAndroid_property_permissions/delete_packages>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/device_power<class_EditorExportPlatformAndroid_property_permissions/device_power>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/diagnostic<class_EditorExportPlatformAndroid_property_permissions/diagnostic>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/disable_keyguard<class_EditorExportPlatformAndroid_property_permissions/disable_keyguard>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/dump<class_EditorExportPlatformAndroid_property_permissions/dump>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/expand_status_bar<class_EditorExportPlatformAndroid_property_permissions/expand_status_bar>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/factory_test<class_EditorExportPlatformAndroid_property_permissions/factory_test>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/flashlight<class_EditorExportPlatformAndroid_property_permissions/flashlight>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/force_back<class_EditorExportPlatformAndroid_property_permissions/force_back>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/get_accounts<class_EditorExportPlatformAndroid_property_permissions/get_accounts>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/get_package_size<class_EditorExportPlatformAndroid_property_permissions/get_package_size>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/get_tasks<class_EditorExportPlatformAndroid_property_permissions/get_tasks>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/get_top_activity_info<class_EditorExportPlatformAndroid_property_permissions/get_top_activity_info>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/global_search<class_EditorExportPlatformAndroid_property_permissions/global_search>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/hardware_test<class_EditorExportPlatformAndroid_property_permissions/hardware_test>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/inject_events<class_EditorExportPlatformAndroid_property_permissions/inject_events>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/install_location_provider<class_EditorExportPlatformAndroid_property_permissions/install_location_provider>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/install_packages<class_EditorExportPlatformAndroid_property_permissions/install_packages>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/install_shortcut<class_EditorExportPlatformAndroid_property_permissions/install_shortcut>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/internal_system_window<class_EditorExportPlatformAndroid_property_permissions/internal_system_window>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/internet<class_EditorExportPlatformAndroid_property_permissions/internet>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/kill_background_processes<class_EditorExportPlatformAndroid_property_permissions/kill_background_processes>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/location_hardware<class_EditorExportPlatformAndroid_property_permissions/location_hardware>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/manage_accounts<class_EditorExportPlatformAndroid_property_permissions/manage_accounts>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/manage_app_tokens<class_EditorExportPlatformAndroid_property_permissions/manage_app_tokens>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/manage_documents<class_EditorExportPlatformAndroid_property_permissions/manage_documents>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/manage_external_storage<class_EditorExportPlatformAndroid_property_permissions/manage_external_storage>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/master_clear<class_EditorExportPlatformAndroid_property_permissions/master_clear>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/media_content_control<class_EditorExportPlatformAndroid_property_permissions/media_content_control>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/modify_audio_settings<class_EditorExportPlatformAndroid_property_permissions/modify_audio_settings>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/modify_phone_state<class_EditorExportPlatformAndroid_property_permissions/modify_phone_state>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/mount_format_filesystems<class_EditorExportPlatformAndroid_property_permissions/mount_format_filesystems>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/mount_unmount_filesystems<class_EditorExportPlatformAndroid_property_permissions/mount_unmount_filesystems>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/nfc<class_EditorExportPlatformAndroid_property_permissions/nfc>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/persistent_activity<class_EditorExportPlatformAndroid_property_permissions/persistent_activity>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/post_notifications<class_EditorExportPlatformAndroid_property_permissions/post_notifications>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/process_outgoing_calls<class_EditorExportPlatformAndroid_property_permissions/process_outgoing_calls>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_calendar<class_EditorExportPlatformAndroid_property_permissions/read_calendar>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_call_log<class_EditorExportPlatformAndroid_property_permissions/read_call_log>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_contacts<class_EditorExportPlatformAndroid_property_permissions/read_contacts>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_external_storage<class_EditorExportPlatformAndroid_property_permissions/read_external_storage>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_frame_buffer<class_EditorExportPlatformAndroid_property_permissions/read_frame_buffer>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_history_bookmarks<class_EditorExportPlatformAndroid_property_permissions/read_history_bookmarks>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_input_state<class_EditorExportPlatformAndroid_property_permissions/read_input_state>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_logs<class_EditorExportPlatformAndroid_property_permissions/read_logs>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_phone_state<class_EditorExportPlatformAndroid_property_permissions/read_phone_state>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_profile<class_EditorExportPlatformAndroid_property_permissions/read_profile>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_sms<class_EditorExportPlatformAndroid_property_permissions/read_sms>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_social_stream<class_EditorExportPlatformAndroid_property_permissions/read_social_stream>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_sync_settings<class_EditorExportPlatformAndroid_property_permissions/read_sync_settings>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_sync_stats<class_EditorExportPlatformAndroid_property_permissions/read_sync_stats>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/read_user_dictionary<class_EditorExportPlatformAndroid_property_permissions/read_user_dictionary>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/reboot<class_EditorExportPlatformAndroid_property_permissions/reboot>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/receive_boot_completed<class_EditorExportPlatformAndroid_property_permissions/receive_boot_completed>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/receive_mms<class_EditorExportPlatformAndroid_property_permissions/receive_mms>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/receive_sms<class_EditorExportPlatformAndroid_property_permissions/receive_sms>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/receive_wap_push<class_EditorExportPlatformAndroid_property_permissions/receive_wap_push>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/record_audio<class_EditorExportPlatformAndroid_property_permissions/record_audio>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/reorder_tasks<class_EditorExportPlatformAndroid_property_permissions/reorder_tasks>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/restart_packages<class_EditorExportPlatformAndroid_property_permissions/restart_packages>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/send_respond_via_message<class_EditorExportPlatformAndroid_property_permissions/send_respond_via_message>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/send_sms<class_EditorExportPlatformAndroid_property_permissions/send_sms>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_activity_watcher<class_EditorExportPlatformAndroid_property_permissions/set_activity_watcher>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_alarm<class_EditorExportPlatformAndroid_property_permissions/set_alarm>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_always_finish<class_EditorExportPlatformAndroid_property_permissions/set_always_finish>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_animation_scale<class_EditorExportPlatformAndroid_property_permissions/set_animation_scale>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_debug_app<class_EditorExportPlatformAndroid_property_permissions/set_debug_app>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_orientation<class_EditorExportPlatformAndroid_property_permissions/set_orientation>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_pointer_speed<class_EditorExportPlatformAndroid_property_permissions/set_pointer_speed>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_preferred_applications<class_EditorExportPlatformAndroid_property_permissions/set_preferred_applications>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_process_limit<class_EditorExportPlatformAndroid_property_permissions/set_process_limit>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_time<class_EditorExportPlatformAndroid_property_permissions/set_time>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_time_zone<class_EditorExportPlatformAndroid_property_permissions/set_time_zone>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_wallpaper<class_EditorExportPlatformAndroid_property_permissions/set_wallpaper>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/set_wallpaper_hints<class_EditorExportPlatformAndroid_property_permissions/set_wallpaper_hints>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/signal_persistent_processes<class_EditorExportPlatformAndroid_property_permissions/signal_persistent_processes>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/status_bar<class_EditorExportPlatformAndroid_property_permissions/status_bar>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/subscribed_feeds_read<class_EditorExportPlatformAndroid_property_permissions/subscribed_feeds_read>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/subscribed_feeds_write<class_EditorExportPlatformAndroid_property_permissions/subscribed_feeds_write>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/system_alert_window<class_EditorExportPlatformAndroid_property_permissions/system_alert_window>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/transmit_ir<class_EditorExportPlatformAndroid_property_permissions/transmit_ir>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/uninstall_shortcut<class_EditorExportPlatformAndroid_property_permissions/uninstall_shortcut>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/update_device_stats<class_EditorExportPlatformAndroid_property_permissions/update_device_stats>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/use_credentials<class_EditorExportPlatformAndroid_property_permissions/use_credentials>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/use_sip<class_EditorExportPlatformAndroid_property_permissions/use_sip>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/vibrate<class_EditorExportPlatformAndroid_property_permissions/vibrate>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/wake_lock<class_EditorExportPlatformAndroid_property_permissions/wake_lock>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_apn_settings<class_EditorExportPlatformAndroid_property_permissions/write_apn_settings>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_calendar<class_EditorExportPlatformAndroid_property_permissions/write_calendar>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_call_log<class_EditorExportPlatformAndroid_property_permissions/write_call_log>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_contacts<class_EditorExportPlatformAndroid_property_permissions/write_contacts>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_external_storage<class_EditorExportPlatformAndroid_property_permissions/write_external_storage>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_gservices<class_EditorExportPlatformAndroid_property_permissions/write_gservices>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_history_bookmarks<class_EditorExportPlatformAndroid_property_permissions/write_history_bookmarks>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_profile<class_EditorExportPlatformAndroid_property_permissions/write_profile>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_secure_settings<class_EditorExportPlatformAndroid_property_permissions/write_secure_settings>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_settings<class_EditorExportPlatformAndroid_property_permissions/write_settings>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_sms<class_EditorExportPlatformAndroid_property_permissions/write_sms>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_social_stream<class_EditorExportPlatformAndroid_property_permissions/write_social_stream>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_sync_settings<class_EditorExportPlatformAndroid_property_permissions/write_sync_settings>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`permissions/write_user_dictionary<class_EditorExportPlatformAndroid_property_permissions/write_user_dictionary>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`screen/immersive_mode<class_EditorExportPlatformAndroid_property_screen/immersive_mode>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`screen/support_large<class_EditorExportPlatformAndroid_property_screen/support_large>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`screen/support_normal<class_EditorExportPlatformAndroid_property_screen/support_normal>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`screen/support_small<class_EditorExportPlatformAndroid_property_screen/support_small>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`screen/support_xlarge<class_EditorExportPlatformAndroid_property_screen/support_xlarge>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`user_data_backup/allow<class_EditorExportPlatformAndroid_property_user_data_backup/allow>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`version/code<class_EditorExportPlatformAndroid_property_version/code>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`version/name<class_EditorExportPlatformAndroid_property_version/name>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`xr_features/xr_mode<class_EditorExportPlatformAndroid_property_xr_features/xr_mode>` |
- +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Property Descriptions
- ---------------------
- .. _class_EditorExportPlatformAndroid_property_apk_expansion/SALT:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **apk_expansion/SALT**
- Array of random bytes that the licensing Policy uses to create an `Obfuscator <https://developer.android.com/google/play/licensing/adding-licensing#impl-Obfuscator>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_apk_expansion/enable:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **apk_expansion/enable**
- If ``true``, project resources are stored in the separate APK expansion file, instead APK.
- \ **Note:** APK expansion should be enabled to use PCK encryption.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_apk_expansion/public_key:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **apk_expansion/public_key**
- Base64 encoded RSA public key for your publisher account, available from the profile page on the "Play Console".
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_architectures/arm64-v8a:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **architectures/arm64-v8a**
- If ``true``, ``arm64`` binaries are included into exported project.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_architectures/armeabi-v7a:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **architectures/armeabi-v7a**
- If ``true``, ``arm32`` binaries are included into exported project.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_architectures/x86:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **architectures/x86**
- If ``true``, ``x86_32`` binaries are included into exported project.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_architectures/x86_64:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **architectures/x86_64**
- If ``true``, ``x86_64`` binaries are included into exported project.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_command_line/extra_args:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **command_line/extra_args**
- A list of additional command line arguments, exported project will receive when started.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_custom_template/debug:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **custom_template/debug**
- Path to the custom export template. If left empty, default template is used.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_custom_template/release:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **custom_template/release**
- Path to the custom export template. If left empty, default template is used.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_gradle_build/export_format:
- .. rst-class:: classref-property
- :ref:`int<class_int>` **gradle_build/export_format**
- Export format for Gradle build.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_gradle_build/min_sdk:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **gradle_build/min_sdk**
- Minimal Android SDK version for Gradle build.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_gradle_build/target_sdk:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **gradle_build/target_sdk**
- Target Android SDK version for Gradle build.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_gradle_build/use_gradle_build:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **gradle_build/use_gradle_build**
- If ``true``, Gradle build is used instead of pre-built APK.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_graphics/opengl_debug:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **graphics/opengl_debug**
- If ``true``, OpenGL ES debug context will be created (additional runtime checking, validation, and logging).
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_keystore/debug:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **keystore/debug**
- Path of the debug keystore file.
- Can be overridden with the environment variable ``GODOT_ANDROID_KEYSTORE_DEBUG_PATH``.
- Fallbacks to ``EditorSettings.export/android/debug_keystore`` if empty.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_keystore/debug_password:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **keystore/debug_password**
- Password for the debug keystore file.
- Can be overridden with the environment variable ``GODOT_ANDROID_KEYSTORE_DEBUG_PASSWORD``.
- Fallbacks to ``EditorSettings.export/android/debug_keystore_pass`` if both it and :ref:`keystore/debug<class_EditorExportPlatformAndroid_property_keystore/debug>` are empty.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_keystore/debug_user:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **keystore/debug_user**
- User name for the debug keystore file.
- Can be overridden with the environment variable ``GODOT_ANDROID_KEYSTORE_DEBUG_USER``.
- Fallbacks to ``EditorSettings.export/android/debug_keystore_user`` if both it and :ref:`keystore/debug<class_EditorExportPlatformAndroid_property_keystore/debug>` are empty.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_keystore/release:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **keystore/release**
- Path of the release keystore file.
- Can be overridden with the environment variable ``GODOT_ANDROID_KEYSTORE_RELEASE_PATH``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_keystore/release_password:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **keystore/release_password**
- Password for the release keystore file.
- Can be overridden with the environment variable ``GODOT_ANDROID_KEYSTORE_RELEASE_PASSWORD``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_keystore/release_user:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **keystore/release_user**
- User name for the release keystore file.
- Can be overridden with the environment variable ``GODOT_ANDROID_KEYSTORE_RELEASE_USER``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_launcher_icons/adaptive_background_432x432:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **launcher_icons/adaptive_background_432x432**
- Background layer of the application adaptive icon file.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_launcher_icons/adaptive_foreground_432x432:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **launcher_icons/adaptive_foreground_432x432**
- Foreground layer of the application adaptive icon file.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_launcher_icons/main_192x192:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **launcher_icons/main_192x192**
- Application icon file. If left empty, it will fallback to :ref:`ProjectSettings.application/config/icon<class_ProjectSettings_property_application/config/icon>`.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_package/app_category:
- .. rst-class:: classref-property
- :ref:`int<class_int>` **package/app_category**
- Application category for the Play Store.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_package/exclude_from_recents:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **package/exclude_from_recents**
- If ``true``, task initiated by main activity will be excluded from the list of recently used applications.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_package/name:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **package/name**
- Name of the application.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_package/retain_data_on_uninstall:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **package/retain_data_on_uninstall**
- If ``true``, when the user uninstalls an app, a prompt to keep the app's data will be shown.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_package/show_as_launcher_app:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **package/show_as_launcher_app**
- If ``true``, the user will be able to set this app as the system launcher in Android preferences.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_package/show_in_android_tv:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **package/show_in_android_tv**
- If ``true``, this app will show in Android TV launcher UI.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_package/show_in_app_library:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **package/show_in_app_library**
- If ``true``, this app will show in the device's app library.
- \ **Note:** This is ``true`` by default.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_package/signed:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **package/signed**
- If ``true``, package signing is enabled.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_package/unique_name:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **package/unique_name**
- 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.
- 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``.
- \ **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.
- \ **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.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/access_checkin_properties:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/access_checkin_properties**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/access_coarse_location:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/access_coarse_location**
- Allows access to the approximate location information. See `ACCESS_COARSE_LOCATION <https://developer.android.com/reference/android/Manifest.permission#ACCESS_COARSE_LOCATION>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/access_fine_location:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/access_fine_location**
- Allows access to the precise location information. See `ACCESS_FINE_LOCATION <https://developer.android.com/reference/android/Manifest.permission#ACCESS_FINE_LOCATION>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/access_location_extra_commands:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/access_location_extra_commands**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/access_mock_location:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/access_mock_location**
- Allows an application to create mock location providers for testing.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/access_network_state:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/access_network_state**
- Allows access to the information about networks. See `ACCESS_NETWORK_STATE <https://developer.android.com/reference/android/Manifest.permission#ACCESS_NETWORK_STATE>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/access_surface_flinger:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/access_surface_flinger**
- Allows an application to use SurfaceFlinger's low level features.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/access_wifi_state:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/access_wifi_state**
- Allows access to the information about Wi-Fi networks. See `ACCESS_WIFI_STATE <https://developer.android.com/reference/android/Manifest.permission#ACCESS_WIFI_STATE>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/account_manager:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/account_manager**
- Allows applications to call into AccountAuthenticators. See `ACCOUNT_MANAGER <https://developer.android.com/reference/android/Manifest.permission#ACCOUNT_MANAGER>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/add_voicemail:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/add_voicemail**
- Allows an application to add voicemails into the system. See `ADD_VOICEMAIL <https://developer.android.com/reference/android/Manifest.permission#ADD_VOICEMAIL>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/authenticate_accounts:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/authenticate_accounts**
- Allows an application to act as an AccountAuthenticator for the AccountManager.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/battery_stats:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/battery_stats**
- Allows an application to collect battery statistics. See `BATTERY_STATS <https://developer.android.com/reference/android/Manifest.permission#BATTERY_STATS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bind_accessibility_service:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bind_accessibility_service**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bind_appwidget:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bind_appwidget**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bind_device_admin:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bind_device_admin**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bind_input_method:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bind_input_method**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bind_nfc_service:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bind_nfc_service**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bind_notification_listener_service:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bind_notification_listener_service**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bind_print_service:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bind_print_service**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bind_remoteviews:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bind_remoteviews**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bind_text_service:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bind_text_service**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bind_vpn_service:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bind_vpn_service**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bind_wallpaper:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bind_wallpaper**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bluetooth:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bluetooth**
- Allows applications to connect to paired bluetooth devices. See `BLUETOOTH <https://developer.android.com/reference/android/Manifest.permission#BLUETOOTH>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bluetooth_admin:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bluetooth_admin**
- Allows applications to discover and pair bluetooth devices. See `BLUETOOTH_ADMIN <https://developer.android.com/reference/android/Manifest.permission#BLUETOOTH_ADMIN>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/bluetooth_privileged:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/bluetooth_privileged**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/brick:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/brick**
- Required to be able to disable the device (very dangerous!).
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/broadcast_package_removed:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/broadcast_package_removed**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/broadcast_sms:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/broadcast_sms**
- Allows an application to broadcast an SMS receipt notification. See `BROADCAST_SMS <https://developer.android.com/reference/android/Manifest.permission#BROADCAST_SMS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/broadcast_sticky:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/broadcast_sticky**
- Allows an application to broadcast sticky intents. See `BROADCAST_STICKY <https://developer.android.com/reference/android/Manifest.permission#BROADCAST_STICKY>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/broadcast_wap_push:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/broadcast_wap_push**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/call_phone:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/call_phone**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/call_privileged:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/call_privileged**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/camera:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/camera**
- Required to be able to access the camera device. See `CAMERA <https://developer.android.com/reference/android/Manifest.permission#CAMERA>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/capture_audio_output:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/capture_audio_output**
- Allows an application to capture audio output. See `CAPTURE_AUDIO_OUTPUT <https://developer.android.com/reference/android/Manifest.permission#CAPTURE_AUDIO_OUTPUT>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/capture_secure_video_output:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/capture_secure_video_output**
- Allows an application to capture secure video output.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/capture_video_output:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/capture_video_output**
- Allows an application to capture video output.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/change_component_enabled_state:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/change_component_enabled_state**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/change_configuration:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/change_configuration**
- Allows an application to modify the current configuration, such as locale. See `CHANGE_CONFIGURATION <https://developer.android.com/reference/android/Manifest.permission#CHANGE_CONFIGURATION>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/change_network_state:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/change_network_state**
- Allows applications to change network connectivity state. See `CHANGE_NETWORK_STATE <https://developer.android.com/reference/android/Manifest.permission#CHANGE_NETWORK_STATE>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/change_wifi_multicast_state:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/change_wifi_multicast_state**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/change_wifi_state:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/change_wifi_state**
- Allows applications to change Wi-Fi connectivity state. See `CHANGE_WIFI_STATE <https://developer.android.com/reference/android/Manifest.permission#CHANGE_WIFI_STATE>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/clear_app_cache:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/clear_app_cache**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/clear_app_user_data:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/clear_app_user_data**
- Allows an application to clear user data.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/control_location_updates:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/control_location_updates**
- Allows enabling/disabling location update notifications from the radio. See `CONTROL_LOCATION_UPDATES <https://developer.android.com/reference/android/Manifest.permission#CONTROL_LOCATION_UPDATES>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/custom_permissions:
- .. rst-class:: classref-property
- :ref:`PackedStringArray<class_PackedStringArray>` **permissions/custom_permissions**
- Array of custom permission strings.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/delete_cache_files:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/delete_cache_files**
- Deprecated.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/delete_packages:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/delete_packages**
- Allows an application to delete packages. See `DELETE_PACKAGES <https://developer.android.com/reference/android/Manifest.permission#DELETE_PACKAGES>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/device_power:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/device_power**
- Allows low-level access to power management.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/diagnostic:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/diagnostic**
- Allows applications to RW to diagnostic resources. See `DIAGNOSTIC <https://developer.android.com/reference/android/Manifest.permission#DIAGNOSTIC>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/disable_keyguard:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/disable_keyguard**
- Allows applications to disable the keyguard if it is not secure. See `DISABLE_KEYGUARD <https://developer.android.com/reference/android/Manifest.permission#DISABLE_KEYGUARD>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/dump:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/dump**
- Allows an application to retrieve state dump information from system services. See `DUMP <https://developer.android.com/reference/android/Manifest.permission#DUMP>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/expand_status_bar:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/expand_status_bar**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/factory_test:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/factory_test**
- Run as a manufacturer test application, running as the root user. See `FACTORY_TEST <https://developer.android.com/reference/android/Manifest.permission#FACTORY_TEST>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/flashlight:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/flashlight**
- Allows access to the flashlight.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/force_back:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/force_back**
- Allows an application to force a BACK operation on whatever is the top activity.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/get_accounts:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/get_accounts**
- Allows access to the list of accounts in the Accounts Service. See `GET_ACCOUNTS <https://developer.android.com/reference/android/Manifest.permission#GET_ACCOUNTS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/get_package_size:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/get_package_size**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/get_tasks:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/get_tasks**
- Deprecated in API level 21.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/get_top_activity_info:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/get_top_activity_info**
- Allows an application to retrieve private information about the current top activity.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/global_search:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/global_search**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/hardware_test:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/hardware_test**
- Allows access to hardware peripherals.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/inject_events:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/inject_events**
- Allows an application to inject user events (keys, touch, trackball) into the event stream and deliver them to ANY window.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/install_location_provider:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/install_location_provider**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/install_packages:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/install_packages**
- Allows an application to install packages. See `INSTALL_PACKAGES <https://developer.android.com/reference/android/Manifest.permission#INSTALL_PACKAGES>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/install_shortcut:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/install_shortcut**
- Allows an application to install a shortcut in Launcher. See `INSTALL_SHORTCUT <https://developer.android.com/reference/android/Manifest.permission#INSTALL_SHORTCUT>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/internal_system_window:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/internal_system_window**
- Allows an application to open windows that are for use by parts of the system user interface.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/internet:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/internet**
- Allows applications to open network sockets. See `INTERNET <https://developer.android.com/reference/android/Manifest.permission#INTERNET>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/kill_background_processes:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/kill_background_processes**
- Allows an application to call ActivityManager.killBackgroundProcesses(String). See `KILL_BACKGROUND_PROCESSES <https://developer.android.com/reference/android/Manifest.permission#KILL_BACKGROUND_PROCESSES>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/location_hardware:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/location_hardware**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/manage_accounts:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/manage_accounts**
- Allows an application to manage the list of accounts in the AccountManager.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/manage_app_tokens:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/manage_app_tokens**
- Allows an application to manage (create, destroy, Z-order) application tokens in the window manager.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/manage_documents:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/manage_documents**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/manage_external_storage:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/manage_external_storage**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/master_clear:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/master_clear**
- See `MASTER_CLEAR <https://developer.android.com/reference/android/Manifest.permission#MASTER_CLEAR>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/media_content_control:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/media_content_control**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/modify_audio_settings:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/modify_audio_settings**
- Allows an application to modify global audio settings. See `MODIFY_AUDIO_SETTINGS <https://developer.android.com/reference/android/Manifest.permission#MODIFY_AUDIO_SETTINGS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/modify_phone_state:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/modify_phone_state**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/mount_format_filesystems:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/mount_format_filesystems**
- Allows formatting file systems for removable storage. See `MOUNT_FORMAT_FILESYSTEMS <https://developer.android.com/reference/android/Manifest.permission#MOUNT_FORMAT_FILESYSTEMS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/mount_unmount_filesystems:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/mount_unmount_filesystems**
- Allows mounting and unmounting file systems for removable storage. See `MOUNT_UNMOUNT_FILESYSTEMS <https://developer.android.com/reference/android/Manifest.permission#MOUNT_UNMOUNT_FILESYSTEMS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/nfc:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/nfc**
- Allows applications to perform I/O operations over NFC. See `NFC <https://developer.android.com/reference/android/Manifest.permission#NFC>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/persistent_activity:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/persistent_activity**
- Allow an application to make its activities persistent.
- Deprecated in API level 15.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/post_notifications:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/post_notifications**
- Allow an application to post notifications. Added in API level 33. See `Notification runtime permission <https://developer.android.com/develop/ui/views/notifications/notification-permission>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/process_outgoing_calls:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/process_outgoing_calls**
- 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>`__.
- Deprecated in API level 29.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_calendar:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_calendar**
- Allows an application to read the user's calendar data. See `READ_CALENDAR <https://developer.android.com/reference/android/Manifest.permission#READ_CALENDAR>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_call_log:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_call_log**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_contacts:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_contacts**
- Allows an application to read the user's contacts data. See `READ_CONTACTS <https://developer.android.com/reference/android/Manifest.permission#READ_CONTACTS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_external_storage:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_external_storage**
- Allows an application to read from external storage. See `READ_EXTERNAL_STORAGE <https://developer.android.com/reference/android/Manifest.permission#READ_EXTERNAL_STORAGE>`__.
- Deprecated in API level 33.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_frame_buffer:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_frame_buffer**
- Allows an application to take screen shots and more generally get access to the frame buffer data.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_history_bookmarks:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_history_bookmarks**
- Allows an application to read (but not write) the user's browsing history and bookmarks.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_input_state:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_input_state**
- Deprecated in API level 16.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_logs:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_logs**
- Allows an application to read the low-level system log files. See `READ_LOGS <https://developer.android.com/reference/android/Manifest.permission#READ_LOGS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_phone_state:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_phone_state**
- Allows read only access to phone state. See `READ_PHONE_STATE <https://developer.android.com/reference/android/Manifest.permission#READ_PHONE_STATE>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_profile:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_profile**
- Allows an application to read the user's personal profile data.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_sms:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_sms**
- Allows an application to read SMS messages. See `READ_SMS <https://developer.android.com/reference/android/Manifest.permission#READ_SMS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_social_stream:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_social_stream**
- Allows an application to read from the user's social stream.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_sync_settings:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_sync_settings**
- Allows applications to read the sync settings. See `READ_SYNC_SETTINGS <https://developer.android.com/reference/android/Manifest.permission#READ_SYNC_SETTINGS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_sync_stats:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_sync_stats**
- Allows applications to read the sync stats. See `READ_SYNC_STATS <https://developer.android.com/reference/android/Manifest.permission#READ_SYNC_STATS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/read_user_dictionary:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/read_user_dictionary**
- Allows an application to read the user dictionary.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/reboot:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/reboot**
- Required to be able to reboot the device. See `REBOOT <https://developer.android.com/reference/android/Manifest.permission#REBOOT>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/receive_boot_completed:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/receive_boot_completed**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/receive_mms:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/receive_mms**
- Allows an application to monitor incoming MMS messages. See `RECEIVE_MMS <https://developer.android.com/reference/android/Manifest.permission#RECEIVE_MMS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/receive_sms:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/receive_sms**
- Allows an application to receive SMS messages. See `RECEIVE_SMS <https://developer.android.com/reference/android/Manifest.permission#RECEIVE_SMS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/receive_wap_push:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/receive_wap_push**
- Allows an application to receive WAP push messages. See `RECEIVE_WAP_PUSH <https://developer.android.com/reference/android/Manifest.permission#RECEIVE_WAP_PUSH>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/record_audio:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/record_audio**
- Allows an application to record audio. See `RECORD_AUDIO <https://developer.android.com/reference/android/Manifest.permission#RECORD_AUDIO>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/reorder_tasks:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/reorder_tasks**
- Allows an application to change the Z-order of tasks. See `REORDER_TASKS <https://developer.android.com/reference/android/Manifest.permission#REORDER_TASKS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/restart_packages:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/restart_packages**
- Deprecated in API level 15.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/send_respond_via_message:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/send_respond_via_message**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/send_sms:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/send_sms**
- Allows an application to send SMS messages. See `SEND_SMS <https://developer.android.com/reference/android/Manifest.permission#SEND_SMS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_activity_watcher:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_activity_watcher**
- Allows an application to watch and control how activities are started globally in the system.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_alarm:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_alarm**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_always_finish:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_always_finish**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_animation_scale:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_animation_scale**
- Allows to modify the global animation scaling factor. See `SET_ANIMATION_SCALE <https://developer.android.com/reference/android/Manifest.permission#SET_ANIMATION_SCALE>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_debug_app:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_debug_app**
- Configure an application for debugging. See `SET_DEBUG_APP <https://developer.android.com/reference/android/Manifest.permission#SET_DEBUG_APP>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_orientation:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_orientation**
- Allows low-level access to setting the orientation (actually rotation) of the screen.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_pointer_speed:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_pointer_speed**
- Allows low-level access to setting the pointer speed.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_preferred_applications:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_preferred_applications**
- Deprecated in API level 15.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_process_limit:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_process_limit**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_time:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_time**
- Allows applications to set the system time directly. See `SET_TIME <https://developer.android.com/reference/android/Manifest.permission#SET_TIME>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_time_zone:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_time_zone**
- Allows applications to set the system time zone directly. See `SET_TIME_ZONE <https://developer.android.com/reference/android/Manifest.permission#SET_TIME_ZONE>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_wallpaper:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_wallpaper**
- Allows applications to set the wallpaper. See `SET_WALLPAPER <https://developer.android.com/reference/android/Manifest.permission#SET_WALLPAPER>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/set_wallpaper_hints:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/set_wallpaper_hints**
- Allows applications to set the wallpaper hints. See `SET_WALLPAPER_HINTS <https://developer.android.com/reference/android/Manifest.permission#SET_WALLPAPER_HINTS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/signal_persistent_processes:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/signal_persistent_processes**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/status_bar:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/status_bar**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/subscribed_feeds_read:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/subscribed_feeds_read**
- Allows an application to allow access the subscribed feeds ContentProvider.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/subscribed_feeds_write:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/subscribed_feeds_write**
- Deprecated.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/system_alert_window:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/system_alert_window**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/transmit_ir:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/transmit_ir**
- Allows using the device's IR transmitter, if available. See `TRANSMIT_IR <https://developer.android.com/reference/android/Manifest.permission#TRANSMIT_IR>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/uninstall_shortcut:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/uninstall_shortcut**
- Deprecated.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/update_device_stats:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/update_device_stats**
- Allows an application to update device statistics. See `UPDATE_DEVICE_STATS <https://developer.android.com/reference/android/Manifest.permission#UPDATE_DEVICE_STATS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/use_credentials:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/use_credentials**
- Allows an application to request authtokens from the AccountManager.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/use_sip:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/use_sip**
- Allows an application to use SIP service. See `USE_SIP <https://developer.android.com/reference/android/Manifest.permission#USE_SIP>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/vibrate:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/vibrate**
- Allows access to the vibrator. See `VIBRATE <https://developer.android.com/reference/android/Manifest.permission#VIBRATE>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/wake_lock:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/wake_lock**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_apn_settings:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_apn_settings**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_calendar:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_calendar**
- Allows an application to write the user's calendar data. See `WRITE_CALENDAR <https://developer.android.com/reference/android/Manifest.permission#WRITE_CALENDAR>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_call_log:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_call_log**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_contacts:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_contacts**
- Allows an application to write the user's contacts data. See `WRITE_CONTACTS <https://developer.android.com/reference/android/Manifest.permission#WRITE_CONTACTS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_external_storage:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_external_storage**
- Allows an application to write to external storage. See `WRITE_EXTERNAL_STORAGE <https://developer.android.com/reference/android/Manifest.permission#WRITE_EXTERNAL_STORAGE>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_gservices:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_gservices**
- Allows an application to modify the Google service map. See `WRITE_GSERVICES <https://developer.android.com/reference/android/Manifest.permission#WRITE_GSERVICES>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_history_bookmarks:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_history_bookmarks**
- Allows an application to write (but not read) the user's browsing history and bookmarks.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_profile:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_profile**
- Allows an application to write (but not read) the user's personal profile data.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_secure_settings:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_secure_settings**
- 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>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_settings:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_settings**
- Allows an application to read or write the system settings. See `WRITE_SETTINGS <https://developer.android.com/reference/android/Manifest.permission#WRITE_SETTINGS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_sms:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_sms**
- Allows an application to write SMS messages.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_social_stream:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_social_stream**
- Allows an application to write (but not read) the user's social stream data.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_sync_settings:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_sync_settings**
- Allows applications to write the sync settings. See `WRITE_SYNC_SETTINGS <https://developer.android.com/reference/android/Manifest.permission#WRITE_SYNC_SETTINGS>`__.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_permissions/write_user_dictionary:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **permissions/write_user_dictionary**
- Allows an application to write to the user dictionary.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_screen/immersive_mode:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **screen/immersive_mode**
- If ``true``, hides navigation and status bar.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_screen/support_large:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **screen/support_large**
- Indicates whether the application supports larger screen form-factors.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_screen/support_normal:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **screen/support_normal**
- Indicates whether an application supports the "normal" screen form-factors.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_screen/support_small:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **screen/support_small**
- Indicates whether the application supports smaller screen form-factors.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_screen/support_xlarge:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **screen/support_xlarge**
- Indicates whether the application supports extra large screen form-factors.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_user_data_backup/allow:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **user_data_backup/allow**
- If ``true``, allows the application to participate in the backup and restore infrastructure.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_version/code:
- .. rst-class:: classref-property
- :ref:`int<class_int>` **version/code**
- Machine-readable application version. This must be incremented for every new release pushed to the Play Store.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_version/name:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **version/name**
- Application version visible to the user. Falls back to :ref:`ProjectSettings.application/config/version<class_ProjectSettings_property_application/config/version>` if left empty.
- .. rst-class:: classref-item-separator
- ----
- .. _class_EditorExportPlatformAndroid_property_xr_features/xr_mode:
- .. rst-class:: classref-property
- :ref:`int<class_int>` **xr_features/xr_mode**
- .. container:: contribute
- There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
- .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
- .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
- .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
- .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
- .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
- .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
- .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
|