class_editorexportplatformvisionos.rst 181 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/platform/visionos/doc_classes/EditorExportPlatformVisionOS.xml.
  6. .. _class_EditorExportPlatformVisionOS:
  7. EditorExportPlatformVisionOS
  8. ============================
  9. **Inherits:** :ref:`EditorExportPlatformAppleEmbedded<class_EditorExportPlatformAppleEmbedded>` **<** :ref:`EditorExportPlatform<class_EditorExportPlatform>` **<** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
  10. Exporter for visionOS.
  11. .. rst-class:: classref-introduction-group
  12. Tutorials
  13. ---------
  14. - :doc:`Exporting for iOS <../tutorials/export/exporting_for_ios>`
  15. - :doc:`iOS plugins documentation index <../tutorials/platform/ios/index>`
  16. .. rst-class:: classref-reftable-group
  17. Properties
  18. ----------
  19. .. table::
  20. :widths: auto
  21. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  22. | :ref:`String<class_String>` | :ref:`application/additional_plist_content<class_EditorExportPlatformVisionOS_property_application/additional_plist_content>` |
  23. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  24. | :ref:`String<class_String>` | :ref:`application/app_store_team_id<class_EditorExportPlatformVisionOS_property_application/app_store_team_id>` |
  25. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  26. | :ref:`String<class_String>` | :ref:`application/bundle_identifier<class_EditorExportPlatformVisionOS_property_application/bundle_identifier>` |
  27. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  28. | :ref:`String<class_String>` | :ref:`application/code_sign_identity_debug<class_EditorExportPlatformVisionOS_property_application/code_sign_identity_debug>` |
  29. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  30. | :ref:`String<class_String>` | :ref:`application/code_sign_identity_release<class_EditorExportPlatformVisionOS_property_application/code_sign_identity_release>` |
  31. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  32. | :ref:`bool<class_bool>` | :ref:`application/delete_old_export_files_unconditionally<class_EditorExportPlatformVisionOS_property_application/delete_old_export_files_unconditionally>` |
  33. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  34. | :ref:`int<class_int>` | :ref:`application/export_method_debug<class_EditorExportPlatformVisionOS_property_application/export_method_debug>` |
  35. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  36. | :ref:`int<class_int>` | :ref:`application/export_method_release<class_EditorExportPlatformVisionOS_property_application/export_method_release>` |
  37. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  38. | :ref:`bool<class_bool>` | :ref:`application/export_project_only<class_EditorExportPlatformVisionOS_property_application/export_project_only>` |
  39. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`int<class_int>` | :ref:`application/icon_interpolation<class_EditorExportPlatformVisionOS_property_application/icon_interpolation>` |
  41. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  42. | :ref:`String<class_String>` | :ref:`application/min_visionos_version<class_EditorExportPlatformVisionOS_property_application/min_visionos_version>` |
  43. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  44. | :ref:`String<class_String>` | :ref:`application/provisioning_profile_specifier_debug<class_EditorExportPlatformVisionOS_property_application/provisioning_profile_specifier_debug>` |
  45. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`String<class_String>` | :ref:`application/provisioning_profile_specifier_release<class_EditorExportPlatformVisionOS_property_application/provisioning_profile_specifier_release>` |
  47. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  48. | :ref:`String<class_String>` | :ref:`application/provisioning_profile_uuid_debug<class_EditorExportPlatformVisionOS_property_application/provisioning_profile_uuid_debug>` |
  49. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`String<class_String>` | :ref:`application/provisioning_profile_uuid_release<class_EditorExportPlatformVisionOS_property_application/provisioning_profile_uuid_release>` |
  51. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`String<class_String>` | :ref:`application/short_version<class_EditorExportPlatformVisionOS_property_application/short_version>` |
  53. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`String<class_String>` | :ref:`application/signature<class_EditorExportPlatformVisionOS_property_application/signature>` |
  55. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  56. | :ref:`String<class_String>` | :ref:`application/version<class_EditorExportPlatformVisionOS_property_application/version>` |
  57. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  58. | :ref:`bool<class_bool>` | :ref:`architectures/arm64<class_EditorExportPlatformVisionOS_property_architectures/arm64>` |
  59. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  60. | :ref:`bool<class_bool>` | :ref:`capabilities/access_wifi<class_EditorExportPlatformVisionOS_property_capabilities/access_wifi>` |
  61. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`capabilities/additional<class_EditorExportPlatformVisionOS_property_capabilities/additional>` |
  63. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  64. | :ref:`bool<class_bool>` | :ref:`capabilities/performance_a12<class_EditorExportPlatformVisionOS_property_capabilities/performance_a12>` |
  65. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`bool<class_bool>` | :ref:`capabilities/performance_gaming_tier<class_EditorExportPlatformVisionOS_property_capabilities/performance_gaming_tier>` |
  67. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  68. | :ref:`String<class_String>` | :ref:`custom_template/debug<class_EditorExportPlatformVisionOS_property_custom_template/debug>` |
  69. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  70. | :ref:`String<class_String>` | :ref:`custom_template/release<class_EditorExportPlatformVisionOS_property_custom_template/release>` |
  71. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`String<class_String>` | :ref:`entitlements/additional<class_EditorExportPlatformVisionOS_property_entitlements/additional>` |
  73. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  74. | :ref:`bool<class_bool>` | :ref:`entitlements/game_center<class_EditorExportPlatformVisionOS_property_entitlements/game_center>` |
  75. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  76. | :ref:`bool<class_bool>` | :ref:`entitlements/increased_memory_limit<class_EditorExportPlatformVisionOS_property_entitlements/increased_memory_limit>` |
  77. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  78. | :ref:`String<class_String>` | :ref:`entitlements/push_notifications<class_EditorExportPlatformVisionOS_property_entitlements/push_notifications>` |
  79. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  80. | :ref:`String<class_String>` | :ref:`icons/icon_1024x1024<class_EditorExportPlatformVisionOS_property_icons/icon_1024x1024>` |
  81. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  82. | :ref:`String<class_String>` | :ref:`icons/icon_1024x1024_dark<class_EditorExportPlatformVisionOS_property_icons/icon_1024x1024_dark>` |
  83. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | :ref:`String<class_String>` | :ref:`icons/icon_1024x1024_tinted<class_EditorExportPlatformVisionOS_property_icons/icon_1024x1024_tinted>` |
  85. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | :ref:`int<class_int>` | :ref:`privacy/active_keyboard_access_reasons<class_EditorExportPlatformVisionOS_property_privacy/active_keyboard_access_reasons>` |
  87. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  88. | :ref:`String<class_String>` | :ref:`privacy/camera_usage_description<class_EditorExportPlatformVisionOS_property_privacy/camera_usage_description>` |
  89. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  90. | :ref:`Dictionary<class_Dictionary>` | :ref:`privacy/camera_usage_description_localized<class_EditorExportPlatformVisionOS_property_privacy/camera_usage_description_localized>` |
  91. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  92. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/advertising_data/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/advertising_data/collected>` |
  93. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  94. | :ref:`int<class_int>` | :ref:`privacy/collected_data/advertising_data/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/advertising_data/collection_purposes>` |
  95. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  96. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/advertising_data/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/advertising_data/linked_to_user>` |
  97. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  98. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/advertising_data/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/advertising_data/used_for_tracking>` |
  99. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  100. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/audio_data/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/audio_data/collected>` |
  101. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  102. | :ref:`int<class_int>` | :ref:`privacy/collected_data/audio_data/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/audio_data/collection_purposes>` |
  103. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  104. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/audio_data/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/audio_data/linked_to_user>` |
  105. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  106. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/audio_data/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/audio_data/used_for_tracking>` |
  107. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  108. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/browsing_history/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/browsing_history/collected>` |
  109. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  110. | :ref:`int<class_int>` | :ref:`privacy/collected_data/browsing_history/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/browsing_history/collection_purposes>` |
  111. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  112. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/browsing_history/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/browsing_history/linked_to_user>` |
  113. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  114. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/browsing_history/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/browsing_history/used_for_tracking>` |
  115. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  116. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/coarse_location/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/coarse_location/collected>` |
  117. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  118. | :ref:`int<class_int>` | :ref:`privacy/collected_data/coarse_location/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/coarse_location/collection_purposes>` |
  119. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  120. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/coarse_location/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/coarse_location/linked_to_user>` |
  121. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  122. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/coarse_location/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/coarse_location/used_for_tracking>` |
  123. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  124. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/contacts/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/contacts/collected>` |
  125. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  126. | :ref:`int<class_int>` | :ref:`privacy/collected_data/contacts/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/contacts/collection_purposes>` |
  127. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  128. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/contacts/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/contacts/linked_to_user>` |
  129. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  130. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/contacts/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/contacts/used_for_tracking>` |
  131. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  132. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/crash_data/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/crash_data/collected>` |
  133. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  134. | :ref:`int<class_int>` | :ref:`privacy/collected_data/crash_data/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/crash_data/collection_purposes>` |
  135. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  136. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/crash_data/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/crash_data/linked_to_user>` |
  137. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  138. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/crash_data/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/crash_data/used_for_tracking>` |
  139. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  140. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/credit_info/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/credit_info/collected>` |
  141. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  142. | :ref:`int<class_int>` | :ref:`privacy/collected_data/credit_info/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/credit_info/collection_purposes>` |
  143. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  144. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/credit_info/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/credit_info/linked_to_user>` |
  145. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  146. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/credit_info/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/credit_info/used_for_tracking>` |
  147. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  148. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/customer_support/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/customer_support/collected>` |
  149. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  150. | :ref:`int<class_int>` | :ref:`privacy/collected_data/customer_support/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/customer_support/collection_purposes>` |
  151. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  152. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/customer_support/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/customer_support/linked_to_user>` |
  153. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  154. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/customer_support/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/customer_support/used_for_tracking>` |
  155. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  156. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/device_id/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/device_id/collected>` |
  157. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  158. | :ref:`int<class_int>` | :ref:`privacy/collected_data/device_id/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/device_id/collection_purposes>` |
  159. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  160. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/device_id/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/device_id/linked_to_user>` |
  161. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  162. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/device_id/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/device_id/used_for_tracking>` |
  163. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  164. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/email_address/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/email_address/collected>` |
  165. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  166. | :ref:`int<class_int>` | :ref:`privacy/collected_data/email_address/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/email_address/collection_purposes>` |
  167. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  168. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/email_address/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/email_address/linked_to_user>` |
  169. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  170. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/email_address/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/email_address/used_for_tracking>` |
  171. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  172. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/emails_or_text_messages/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/emails_or_text_messages/collected>` |
  173. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  174. | :ref:`int<class_int>` | :ref:`privacy/collected_data/emails_or_text_messages/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/emails_or_text_messages/collection_purposes>` |
  175. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  176. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/emails_or_text_messages/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/emails_or_text_messages/linked_to_user>` |
  177. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  178. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/emails_or_text_messages/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/emails_or_text_messages/used_for_tracking>` |
  179. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  180. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/environment_scanning/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/environment_scanning/collected>` |
  181. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  182. | :ref:`int<class_int>` | :ref:`privacy/collected_data/environment_scanning/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/environment_scanning/collection_purposes>` |
  183. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  184. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/environment_scanning/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/environment_scanning/linked_to_user>` |
  185. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  186. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/environment_scanning/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/environment_scanning/used_for_tracking>` |
  187. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  188. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/fitness/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/fitness/collected>` |
  189. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  190. | :ref:`int<class_int>` | :ref:`privacy/collected_data/fitness/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/fitness/collection_purposes>` |
  191. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  192. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/fitness/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/fitness/linked_to_user>` |
  193. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  194. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/fitness/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/fitness/used_for_tracking>` |
  195. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  196. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/gameplay_content/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/gameplay_content/collected>` |
  197. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  198. | :ref:`int<class_int>` | :ref:`privacy/collected_data/gameplay_content/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/gameplay_content/collection_purposes>` |
  199. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  200. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/gameplay_content/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/gameplay_content/linked_to_user>` |
  201. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  202. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/gameplay_content/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/gameplay_content/used_for_tracking>` |
  203. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  204. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/hands/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/hands/collected>` |
  205. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  206. | :ref:`int<class_int>` | :ref:`privacy/collected_data/hands/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/hands/collection_purposes>` |
  207. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  208. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/hands/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/hands/linked_to_user>` |
  209. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  210. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/hands/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/hands/used_for_tracking>` |
  211. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  212. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/head/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/head/collected>` |
  213. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  214. | :ref:`int<class_int>` | :ref:`privacy/collected_data/head/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/head/collection_purposes>` |
  215. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  216. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/head/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/head/linked_to_user>` |
  217. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  218. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/head/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/head/used_for_tracking>` |
  219. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  220. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/health/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/health/collected>` |
  221. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  222. | :ref:`int<class_int>` | :ref:`privacy/collected_data/health/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/health/collection_purposes>` |
  223. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  224. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/health/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/health/linked_to_user>` |
  225. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  226. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/health/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/health/used_for_tracking>` |
  227. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  228. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/name/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/name/collected>` |
  229. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  230. | :ref:`int<class_int>` | :ref:`privacy/collected_data/name/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/name/collection_purposes>` |
  231. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  232. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/name/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/name/linked_to_user>` |
  233. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  234. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/name/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/name/used_for_tracking>` |
  235. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  236. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_contact_info/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_contact_info/collected>` |
  237. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  238. | :ref:`int<class_int>` | :ref:`privacy/collected_data/other_contact_info/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_contact_info/collection_purposes>` |
  239. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  240. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_contact_info/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_contact_info/linked_to_user>` |
  241. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  242. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_contact_info/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_contact_info/used_for_tracking>` |
  243. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  244. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_data_types/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_data_types/collected>` |
  245. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  246. | :ref:`int<class_int>` | :ref:`privacy/collected_data/other_data_types/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_data_types/collection_purposes>` |
  247. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  248. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_data_types/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_data_types/linked_to_user>` |
  249. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  250. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_data_types/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_data_types/used_for_tracking>` |
  251. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  252. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_diagnostic_data/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_diagnostic_data/collected>` |
  253. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  254. | :ref:`int<class_int>` | :ref:`privacy/collected_data/other_diagnostic_data/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_diagnostic_data/collection_purposes>` |
  255. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  256. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_diagnostic_data/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_diagnostic_data/linked_to_user>` |
  257. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  258. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_diagnostic_data/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_diagnostic_data/used_for_tracking>` |
  259. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  260. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_financial_info/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_financial_info/collected>` |
  261. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  262. | :ref:`int<class_int>` | :ref:`privacy/collected_data/other_financial_info/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_financial_info/collection_purposes>` |
  263. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  264. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_financial_info/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_financial_info/linked_to_user>` |
  265. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  266. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_financial_info/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_financial_info/used_for_tracking>` |
  267. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  268. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_usage_data/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_usage_data/collected>` |
  269. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  270. | :ref:`int<class_int>` | :ref:`privacy/collected_data/other_usage_data/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_usage_data/collection_purposes>` |
  271. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  272. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_usage_data/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_usage_data/linked_to_user>` |
  273. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  274. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_usage_data/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_usage_data/used_for_tracking>` |
  275. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  276. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_user_content/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_user_content/collected>` |
  277. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  278. | :ref:`int<class_int>` | :ref:`privacy/collected_data/other_user_content/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_user_content/collection_purposes>` |
  279. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  280. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_user_content/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_user_content/linked_to_user>` |
  281. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  282. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_user_content/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_user_content/used_for_tracking>` |
  283. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  284. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/payment_info/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/payment_info/collected>` |
  285. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  286. | :ref:`int<class_int>` | :ref:`privacy/collected_data/payment_info/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/payment_info/collection_purposes>` |
  287. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  288. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/payment_info/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/payment_info/linked_to_user>` |
  289. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  290. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/payment_info/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/payment_info/used_for_tracking>` |
  291. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  292. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/performance_data/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/performance_data/collected>` |
  293. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  294. | :ref:`int<class_int>` | :ref:`privacy/collected_data/performance_data/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/performance_data/collection_purposes>` |
  295. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  296. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/performance_data/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/performance_data/linked_to_user>` |
  297. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  298. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/performance_data/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/performance_data/used_for_tracking>` |
  299. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  300. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/phone_number/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/phone_number/collected>` |
  301. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  302. | :ref:`int<class_int>` | :ref:`privacy/collected_data/phone_number/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/phone_number/collection_purposes>` |
  303. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  304. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/phone_number/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/phone_number/linked_to_user>` |
  305. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  306. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/phone_number/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/phone_number/used_for_tracking>` |
  307. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  308. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/photos_or_videos/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/photos_or_videos/collected>` |
  309. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  310. | :ref:`int<class_int>` | :ref:`privacy/collected_data/photos_or_videos/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/photos_or_videos/collection_purposes>` |
  311. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  312. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/photos_or_videos/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/photos_or_videos/linked_to_user>` |
  313. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  314. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/photos_or_videos/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/photos_or_videos/used_for_tracking>` |
  315. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  316. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/physical_address/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/physical_address/collected>` |
  317. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  318. | :ref:`int<class_int>` | :ref:`privacy/collected_data/physical_address/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/physical_address/collection_purposes>` |
  319. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  320. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/physical_address/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/physical_address/linked_to_user>` |
  321. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  322. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/physical_address/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/physical_address/used_for_tracking>` |
  323. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  324. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/precise_location/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/precise_location/collected>` |
  325. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  326. | :ref:`int<class_int>` | :ref:`privacy/collected_data/precise_location/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/precise_location/collection_purposes>` |
  327. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  328. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/precise_location/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/precise_location/linked_to_user>` |
  329. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  330. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/precise_location/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/precise_location/used_for_tracking>` |
  331. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  332. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/product_interaction/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/product_interaction/collected>` |
  333. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  334. | :ref:`int<class_int>` | :ref:`privacy/collected_data/product_interaction/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/product_interaction/collection_purposes>` |
  335. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  336. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/product_interaction/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/product_interaction/linked_to_user>` |
  337. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  338. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/product_interaction/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/product_interaction/used_for_tracking>` |
  339. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  340. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/purchase_history/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/purchase_history/collected>` |
  341. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  342. | :ref:`int<class_int>` | :ref:`privacy/collected_data/purchase_history/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/purchase_history/collection_purposes>` |
  343. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  344. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/purchase_history/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/purchase_history/linked_to_user>` |
  345. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  346. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/purchase_history/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/purchase_history/used_for_tracking>` |
  347. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  348. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/search_hhistory/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/search_hhistory/collected>` |
  349. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  350. | :ref:`int<class_int>` | :ref:`privacy/collected_data/search_hhistory/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/search_hhistory/collection_purposes>` |
  351. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  352. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/search_hhistory/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/search_hhistory/linked_to_user>` |
  353. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  354. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/search_hhistory/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/search_hhistory/used_for_tracking>` |
  355. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  356. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/sensitive_info/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/sensitive_info/collected>` |
  357. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  358. | :ref:`int<class_int>` | :ref:`privacy/collected_data/sensitive_info/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/sensitive_info/collection_purposes>` |
  359. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  360. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/sensitive_info/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/sensitive_info/linked_to_user>` |
  361. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  362. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/sensitive_info/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/sensitive_info/used_for_tracking>` |
  363. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  364. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/user_id/collected<class_EditorExportPlatformVisionOS_property_privacy/collected_data/user_id/collected>` |
  365. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  366. | :ref:`int<class_int>` | :ref:`privacy/collected_data/user_id/collection_purposes<class_EditorExportPlatformVisionOS_property_privacy/collected_data/user_id/collection_purposes>` |
  367. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  368. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/user_id/linked_to_user<class_EditorExportPlatformVisionOS_property_privacy/collected_data/user_id/linked_to_user>` |
  369. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  370. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/user_id/used_for_tracking<class_EditorExportPlatformVisionOS_property_privacy/collected_data/user_id/used_for_tracking>` |
  371. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  372. | :ref:`int<class_int>` | :ref:`privacy/disk_space_access_reasons<class_EditorExportPlatformVisionOS_property_privacy/disk_space_access_reasons>` |
  373. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  374. | :ref:`int<class_int>` | :ref:`privacy/file_timestamp_access_reasons<class_EditorExportPlatformVisionOS_property_privacy/file_timestamp_access_reasons>` |
  375. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  376. | :ref:`String<class_String>` | :ref:`privacy/microphone_usage_description<class_EditorExportPlatformVisionOS_property_privacy/microphone_usage_description>` |
  377. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  378. | :ref:`Dictionary<class_Dictionary>` | :ref:`privacy/microphone_usage_description_localized<class_EditorExportPlatformVisionOS_property_privacy/microphone_usage_description_localized>` |
  379. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  380. | :ref:`String<class_String>` | :ref:`privacy/photolibrary_usage_description<class_EditorExportPlatformVisionOS_property_privacy/photolibrary_usage_description>` |
  381. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  382. | :ref:`Dictionary<class_Dictionary>` | :ref:`privacy/photolibrary_usage_description_localized<class_EditorExportPlatformVisionOS_property_privacy/photolibrary_usage_description_localized>` |
  383. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  384. | :ref:`int<class_int>` | :ref:`privacy/system_boot_time_access_reasons<class_EditorExportPlatformVisionOS_property_privacy/system_boot_time_access_reasons>` |
  385. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  386. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`privacy/tracking_domains<class_EditorExportPlatformVisionOS_property_privacy/tracking_domains>` |
  387. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  388. | :ref:`bool<class_bool>` | :ref:`privacy/tracking_enabled<class_EditorExportPlatformVisionOS_property_privacy/tracking_enabled>` |
  389. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  390. | :ref:`int<class_int>` | :ref:`privacy/user_defaults_access_reasons<class_EditorExportPlatformVisionOS_property_privacy/user_defaults_access_reasons>` |
  391. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  392. | :ref:`bool<class_bool>` | :ref:`user_data/accessible_from_files_app<class_EditorExportPlatformVisionOS_property_user_data/accessible_from_files_app>` |
  393. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  394. | :ref:`bool<class_bool>` | :ref:`user_data/accessible_from_itunes_sharing<class_EditorExportPlatformVisionOS_property_user_data/accessible_from_itunes_sharing>` |
  395. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  396. .. rst-class:: classref-section-separator
  397. ----
  398. .. rst-class:: classref-descriptions-group
  399. Property Descriptions
  400. ---------------------
  401. .. _class_EditorExportPlatformVisionOS_property_application/additional_plist_content:
  402. .. rst-class:: classref-property
  403. :ref:`String<class_String>` **application/additional_plist_content** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/additional_plist_content>`
  404. Additional data added to the root ``<dict>`` section of the `Info.plist <https://developer.apple.com/documentation/bundleresources/information_property_list>`__ file. The value should be an XML section with pairs of key-value elements, e.g.:
  405. .. code:: text
  406. <key>key_name</key>
  407. <string>value</string>
  408. .. rst-class:: classref-item-separator
  409. ----
  410. .. _class_EditorExportPlatformVisionOS_property_application/app_store_team_id:
  411. .. rst-class:: classref-property
  412. :ref:`String<class_String>` **application/app_store_team_id** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/app_store_team_id>`
  413. Apple Team ID, unique 10-character string. To locate your Team ID check "Membership details" section in your Apple developer account dashboard, or "Organizational Unit" of your code signing certificate. See `Locate your Team ID <https://developer.apple.com/help/account/manage-your-team/locate-your-team-id>`__.
  414. .. rst-class:: classref-item-separator
  415. ----
  416. .. _class_EditorExportPlatformVisionOS_property_application/bundle_identifier:
  417. .. rst-class:: classref-property
  418. :ref:`String<class_String>` **application/bundle_identifier** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/bundle_identifier>`
  419. Unique application identifier in a reverse-DNS format, can only contain alphanumeric characters (``A-Z``, ``a-z``, and ``0-9``), hyphens (``-``), and periods (``.``).
  420. .. rst-class:: classref-item-separator
  421. ----
  422. .. _class_EditorExportPlatformVisionOS_property_application/code_sign_identity_debug:
  423. .. rst-class:: classref-property
  424. :ref:`String<class_String>` **application/code_sign_identity_debug** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/code_sign_identity_debug>`
  425. The "Full Name", "Common Name" or SHA-1 hash of the signing identity used for debug export.
  426. .. rst-class:: classref-item-separator
  427. ----
  428. .. _class_EditorExportPlatformVisionOS_property_application/code_sign_identity_release:
  429. .. rst-class:: classref-property
  430. :ref:`String<class_String>` **application/code_sign_identity_release** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/code_sign_identity_release>`
  431. The "Full Name", "Common Name" or SHA-1 hash of the signing identity used for release export.
  432. .. rst-class:: classref-item-separator
  433. ----
  434. .. _class_EditorExportPlatformVisionOS_property_application/delete_old_export_files_unconditionally:
  435. .. rst-class:: classref-property
  436. :ref:`bool<class_bool>` **application/delete_old_export_files_unconditionally** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/delete_old_export_files_unconditionally>`
  437. If ``true``, existing "project name" and "project name.xcodeproj" in the export destination directory will be unconditionally deleted during export.
  438. .. rst-class:: classref-item-separator
  439. ----
  440. .. _class_EditorExportPlatformVisionOS_property_application/export_method_debug:
  441. .. rst-class:: classref-property
  442. :ref:`int<class_int>` **application/export_method_debug** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/export_method_debug>`
  443. Application distribution target (debug export).
  444. .. rst-class:: classref-item-separator
  445. ----
  446. .. _class_EditorExportPlatformVisionOS_property_application/export_method_release:
  447. .. rst-class:: classref-property
  448. :ref:`int<class_int>` **application/export_method_release** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/export_method_release>`
  449. Application distribution target (release export).
  450. .. rst-class:: classref-item-separator
  451. ----
  452. .. _class_EditorExportPlatformVisionOS_property_application/export_project_only:
  453. .. rst-class:: classref-property
  454. :ref:`bool<class_bool>` **application/export_project_only** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/export_project_only>`
  455. If ``true``, exports iOS project files without building an XCArchive or ``.ipa`` file. If ``false``, exports iOS project files and builds an XCArchive and ``.ipa`` file at the same time. When combining Godot with Fastlane or other build pipelines, you may want to set this to ``true``.
  456. .. rst-class:: classref-item-separator
  457. ----
  458. .. _class_EditorExportPlatformVisionOS_property_application/icon_interpolation:
  459. .. rst-class:: classref-property
  460. :ref:`int<class_int>` **application/icon_interpolation** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/icon_interpolation>`
  461. Interpolation method used to resize application icon.
  462. .. rst-class:: classref-item-separator
  463. ----
  464. .. _class_EditorExportPlatformVisionOS_property_application/min_visionos_version:
  465. .. rst-class:: classref-property
  466. :ref:`String<class_String>` **application/min_visionos_version** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/min_visionos_version>`
  467. .. container:: contribute
  468. There is currently no description for this property. Please help us by :ref:`contributing one <doc_updating_the_class_reference>`!
  469. .. rst-class:: classref-item-separator
  470. ----
  471. .. _class_EditorExportPlatformVisionOS_property_application/provisioning_profile_specifier_debug:
  472. .. rst-class:: classref-property
  473. :ref:`String<class_String>` **application/provisioning_profile_specifier_debug** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/provisioning_profile_specifier_debug>`
  474. Name of the provisioning profile. Sets XCode PROVISIONING_PROFILE_SPECIFIER for debug. `Used for manual provisioning <https://developer.apple.com/documentation/xcode/build-settings-reference#Provisioning-Profile>`__.
  475. Can be overridden with the environment variable ``GODOT_APPLE_PLATFORM_PROFILE_SPECIFIER_DEBUG``.
  476. .. rst-class:: classref-item-separator
  477. ----
  478. .. _class_EditorExportPlatformVisionOS_property_application/provisioning_profile_specifier_release:
  479. .. rst-class:: classref-property
  480. :ref:`String<class_String>` **application/provisioning_profile_specifier_release** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/provisioning_profile_specifier_release>`
  481. Name of the provisioning profile. Sets XCode PROVISIONING_PROFILE_SPECIFIER for release. `Used for manual provisioning <https://developer.apple.com/documentation/xcode/build-settings-reference#Provisioning-Profile>`__.
  482. Can be overridden with the environment variable ``GODOT_APPLE_PLATFORM_PROFILE_SPECIFIER_RELEASE``.
  483. .. rst-class:: classref-item-separator
  484. ----
  485. .. _class_EditorExportPlatformVisionOS_property_application/provisioning_profile_uuid_debug:
  486. .. rst-class:: classref-property
  487. :ref:`String<class_String>` **application/provisioning_profile_uuid_debug** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/provisioning_profile_uuid_debug>`
  488. UUID of the provisioning profile. If left empty, Xcode will download or create a provisioning profile automatically. See `Edit, download, or delete provisioning profiles <https://developer.apple.com/help/account/manage-profiles/edit-download-or-delete-profiles>`__.
  489. Can be overridden with the environment variable ``GODOT_APPLE_PLATFORM_PROVISIONING_PROFILE_UUID_DEBUG``.
  490. .. rst-class:: classref-item-separator
  491. ----
  492. .. _class_EditorExportPlatformVisionOS_property_application/provisioning_profile_uuid_release:
  493. .. rst-class:: classref-property
  494. :ref:`String<class_String>` **application/provisioning_profile_uuid_release** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/provisioning_profile_uuid_release>`
  495. UUID of the provisioning profile. If left empty, Xcode will download or create a provisioning profile automatically. See `Edit, download, or delete provisioning profiles <https://developer.apple.com/help/account/manage-profiles/edit-download-or-delete-profiles>`__.
  496. Can be overridden with the environment variable ``GODOT_APPLE_PLATFORM_PROVISIONING_PROFILE_UUID_RELEASE``.
  497. .. rst-class:: classref-item-separator
  498. ----
  499. .. _class_EditorExportPlatformVisionOS_property_application/short_version:
  500. .. rst-class:: classref-property
  501. :ref:`String<class_String>` **application/short_version** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/short_version>`
  502. Application version visible to the user, can only contain numeric characters (``0-9``) and periods (``.``). Falls back to :ref:`ProjectSettings.application/config/version<class_ProjectSettings_property_application/config/version>` if left empty.
  503. .. rst-class:: classref-item-separator
  504. ----
  505. .. _class_EditorExportPlatformVisionOS_property_application/signature:
  506. .. rst-class:: classref-property
  507. :ref:`String<class_String>` **application/signature** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/signature>`
  508. A four-character creator code that is specific to the bundle. Optional.
  509. .. rst-class:: classref-item-separator
  510. ----
  511. .. _class_EditorExportPlatformVisionOS_property_application/version:
  512. .. rst-class:: classref-property
  513. :ref:`String<class_String>` **application/version** :ref:`🔗<class_EditorExportPlatformVisionOS_property_application/version>`
  514. Machine-readable application version, in the ``major.minor.patch`` format, can only contain numeric characters (``0-9``) and periods (``.``). This must be incremented on every new release pushed to the App Store.
  515. .. rst-class:: classref-item-separator
  516. ----
  517. .. _class_EditorExportPlatformVisionOS_property_architectures/arm64:
  518. .. rst-class:: classref-property
  519. :ref:`bool<class_bool>` **architectures/arm64** :ref:`🔗<class_EditorExportPlatformVisionOS_property_architectures/arm64>`
  520. If ``true``, ``arm64`` binaries are included into exported project.
  521. .. rst-class:: classref-item-separator
  522. ----
  523. .. _class_EditorExportPlatformVisionOS_property_capabilities/access_wifi:
  524. .. rst-class:: classref-property
  525. :ref:`bool<class_bool>` **capabilities/access_wifi** :ref:`🔗<class_EditorExportPlatformVisionOS_property_capabilities/access_wifi>`
  526. If ``true``, networking features related to Wi-Fi access are enabled. See `Required Device Capabilities <https://developer.apple.com/support/required-device-capabilities/>`__.
  527. .. rst-class:: classref-item-separator
  528. ----
  529. .. _class_EditorExportPlatformVisionOS_property_capabilities/additional:
  530. .. rst-class:: classref-property
  531. :ref:`PackedStringArray<class_PackedStringArray>` **capabilities/additional** :ref:`🔗<class_EditorExportPlatformVisionOS_property_capabilities/additional>`
  532. Additional data added to the ``UIRequiredDeviceCapabilities`` array of the ``Info.plist`` file.
  533. **Note:** The returned array is *copied* and any changes to it will not update the original property value. See :ref:`PackedStringArray<class_PackedStringArray>` for more details.
  534. .. rst-class:: classref-item-separator
  535. ----
  536. .. _class_EditorExportPlatformVisionOS_property_capabilities/performance_a12:
  537. .. rst-class:: classref-property
  538. :ref:`bool<class_bool>` **capabilities/performance_a12** :ref:`🔗<class_EditorExportPlatformVisionOS_property_capabilities/performance_a12>`
  539. Requires the graphics performance and features of the A12 Bionic and later chips (devices supporting all Vulkan renderer features).
  540. Enabling this option limits supported devices to: iPhone XS, iPhone XR, iPad Mini (5th gen.), iPad Air (3rd gen.), iPad (8th gen) and newer.
  541. .. rst-class:: classref-item-separator
  542. ----
  543. .. _class_EditorExportPlatformVisionOS_property_capabilities/performance_gaming_tier:
  544. .. rst-class:: classref-property
  545. :ref:`bool<class_bool>` **capabilities/performance_gaming_tier** :ref:`🔗<class_EditorExportPlatformVisionOS_property_capabilities/performance_gaming_tier>`
  546. Requires the graphics performance and features of the A17 Pro and later chips.
  547. Enabling this option limits supported devices to: iPhone 15 Pro and newer.
  548. .. rst-class:: classref-item-separator
  549. ----
  550. .. _class_EditorExportPlatformVisionOS_property_custom_template/debug:
  551. .. rst-class:: classref-property
  552. :ref:`String<class_String>` **custom_template/debug** :ref:`🔗<class_EditorExportPlatformVisionOS_property_custom_template/debug>`
  553. Path to the custom export template. If left empty, default template is used.
  554. .. rst-class:: classref-item-separator
  555. ----
  556. .. _class_EditorExportPlatformVisionOS_property_custom_template/release:
  557. .. rst-class:: classref-property
  558. :ref:`String<class_String>` **custom_template/release** :ref:`🔗<class_EditorExportPlatformVisionOS_property_custom_template/release>`
  559. Path to the custom export template. If left empty, default template is used.
  560. .. rst-class:: classref-item-separator
  561. ----
  562. .. _class_EditorExportPlatformVisionOS_property_entitlements/additional:
  563. .. rst-class:: classref-property
  564. :ref:`String<class_String>` **entitlements/additional** :ref:`🔗<class_EditorExportPlatformVisionOS_property_entitlements/additional>`
  565. Additional data added to the root ``<dict>`` section of the `.entitlements <https://developer.apple.com/documentation/bundleresources/entitlements>`__ file. The value should be an XML section with pairs of key-value elements, for example:
  566. .. code:: text
  567. <key>key_name</key>
  568. <string>value</string>
  569. .. rst-class:: classref-item-separator
  570. ----
  571. .. _class_EditorExportPlatformVisionOS_property_entitlements/game_center:
  572. .. rst-class:: classref-property
  573. :ref:`bool<class_bool>` **entitlements/game_center** :ref:`🔗<class_EditorExportPlatformVisionOS_property_entitlements/game_center>`
  574. If ``true``, allows access to Game Center features. See `com.apple.developer.game-center <https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_developer_game-center>`__.
  575. .. rst-class:: classref-item-separator
  576. ----
  577. .. _class_EditorExportPlatformVisionOS_property_entitlements/increased_memory_limit:
  578. .. rst-class:: classref-property
  579. :ref:`bool<class_bool>` **entitlements/increased_memory_limit** :ref:`🔗<class_EditorExportPlatformVisionOS_property_entitlements/increased_memory_limit>`
  580. If ``true``, hints that the app might perform better with a higher memory limit. See `com.apple.developer.kernel.increased-memory-limit <https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_developer_kernel_increased-memory-limit>`__.
  581. .. rst-class:: classref-item-separator
  582. ----
  583. .. _class_EditorExportPlatformVisionOS_property_entitlements/push_notifications:
  584. .. rst-class:: classref-property
  585. :ref:`String<class_String>` **entitlements/push_notifications** :ref:`🔗<class_EditorExportPlatformVisionOS_property_entitlements/push_notifications>`
  586. Environment for Apple Push Notification service. See `aps-environment <https://developer.apple.com/documentation/bundleresources/entitlements/aps-environment>`__.
  587. .. rst-class:: classref-item-separator
  588. ----
  589. .. _class_EditorExportPlatformVisionOS_property_icons/icon_1024x1024:
  590. .. rst-class:: classref-property
  591. :ref:`String<class_String>` **icons/icon_1024x1024** :ref:`🔗<class_EditorExportPlatformVisionOS_property_icons/icon_1024x1024>`
  592. Base application icon used to generate other icons. If left empty, it will fallback to :ref:`ProjectSettings.application/config/icon<class_ProjectSettings_property_application/config/icon>`. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  593. .. rst-class:: classref-item-separator
  594. ----
  595. .. _class_EditorExportPlatformVisionOS_property_icons/icon_1024x1024_dark:
  596. .. rst-class:: classref-property
  597. :ref:`String<class_String>` **icons/icon_1024x1024_dark** :ref:`🔗<class_EditorExportPlatformVisionOS_property_icons/icon_1024x1024_dark>`
  598. Base application icon used to generate other icons, dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  599. .. rst-class:: classref-item-separator
  600. ----
  601. .. _class_EditorExportPlatformVisionOS_property_icons/icon_1024x1024_tinted:
  602. .. rst-class:: classref-property
  603. :ref:`String<class_String>` **icons/icon_1024x1024_tinted** :ref:`🔗<class_EditorExportPlatformVisionOS_property_icons/icon_1024x1024_tinted>`
  604. Base application icon used to generate other icons, tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  605. .. rst-class:: classref-item-separator
  606. ----
  607. .. _class_EditorExportPlatformVisionOS_property_privacy/active_keyboard_access_reasons:
  608. .. rst-class:: classref-property
  609. :ref:`int<class_int>` **privacy/active_keyboard_access_reasons** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/active_keyboard_access_reasons>`
  610. The reasons your app use active keyboard API. See `Describing use of required reason API <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api>`__.
  611. .. rst-class:: classref-item-separator
  612. ----
  613. .. _class_EditorExportPlatformVisionOS_property_privacy/camera_usage_description:
  614. .. rst-class:: classref-property
  615. :ref:`String<class_String>` **privacy/camera_usage_description** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/camera_usage_description>`
  616. A message displayed when requesting access to the device's camera (in English).
  617. .. rst-class:: classref-item-separator
  618. ----
  619. .. _class_EditorExportPlatformVisionOS_property_privacy/camera_usage_description_localized:
  620. .. rst-class:: classref-property
  621. :ref:`Dictionary<class_Dictionary>` **privacy/camera_usage_description_localized** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/camera_usage_description_localized>`
  622. A message displayed when requesting access to the device's camera (localized).
  623. .. rst-class:: classref-item-separator
  624. ----
  625. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/advertising_data/collected:
  626. .. rst-class:: classref-property
  627. :ref:`bool<class_bool>` **privacy/collected_data/advertising_data/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/advertising_data/collected>`
  628. Indicates whether your app collects advertising data.
  629. .. rst-class:: classref-item-separator
  630. ----
  631. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/advertising_data/collection_purposes:
  632. .. rst-class:: classref-property
  633. :ref:`int<class_int>` **privacy/collected_data/advertising_data/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/advertising_data/collection_purposes>`
  634. The reasons your app collects advertising data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  635. .. rst-class:: classref-item-separator
  636. ----
  637. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/advertising_data/linked_to_user:
  638. .. rst-class:: classref-property
  639. :ref:`bool<class_bool>` **privacy/collected_data/advertising_data/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/advertising_data/linked_to_user>`
  640. Indicates whether your app links advertising data to the user's identity.
  641. .. rst-class:: classref-item-separator
  642. ----
  643. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/advertising_data/used_for_tracking:
  644. .. rst-class:: classref-property
  645. :ref:`bool<class_bool>` **privacy/collected_data/advertising_data/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/advertising_data/used_for_tracking>`
  646. Indicates whether your app uses advertising data for tracking.
  647. .. rst-class:: classref-item-separator
  648. ----
  649. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/audio_data/collected:
  650. .. rst-class:: classref-property
  651. :ref:`bool<class_bool>` **privacy/collected_data/audio_data/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/audio_data/collected>`
  652. Indicates whether your app collects audio data.
  653. .. rst-class:: classref-item-separator
  654. ----
  655. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/audio_data/collection_purposes:
  656. .. rst-class:: classref-property
  657. :ref:`int<class_int>` **privacy/collected_data/audio_data/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/audio_data/collection_purposes>`
  658. The reasons your app collects audio data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  659. .. rst-class:: classref-item-separator
  660. ----
  661. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/audio_data/linked_to_user:
  662. .. rst-class:: classref-property
  663. :ref:`bool<class_bool>` **privacy/collected_data/audio_data/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/audio_data/linked_to_user>`
  664. Indicates whether your app links audio data to the user's identity.
  665. .. rst-class:: classref-item-separator
  666. ----
  667. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/audio_data/used_for_tracking:
  668. .. rst-class:: classref-property
  669. :ref:`bool<class_bool>` **privacy/collected_data/audio_data/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/audio_data/used_for_tracking>`
  670. Indicates whether your app uses audio data for tracking.
  671. .. rst-class:: classref-item-separator
  672. ----
  673. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/browsing_history/collected:
  674. .. rst-class:: classref-property
  675. :ref:`bool<class_bool>` **privacy/collected_data/browsing_history/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/browsing_history/collected>`
  676. Indicates whether your app collects browsing history.
  677. .. rst-class:: classref-item-separator
  678. ----
  679. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/browsing_history/collection_purposes:
  680. .. rst-class:: classref-property
  681. :ref:`int<class_int>` **privacy/collected_data/browsing_history/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/browsing_history/collection_purposes>`
  682. The reasons your app collects browsing history. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  683. .. rst-class:: classref-item-separator
  684. ----
  685. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/browsing_history/linked_to_user:
  686. .. rst-class:: classref-property
  687. :ref:`bool<class_bool>` **privacy/collected_data/browsing_history/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/browsing_history/linked_to_user>`
  688. Indicates whether your app links browsing history to the user's identity.
  689. .. rst-class:: classref-item-separator
  690. ----
  691. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/browsing_history/used_for_tracking:
  692. .. rst-class:: classref-property
  693. :ref:`bool<class_bool>` **privacy/collected_data/browsing_history/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/browsing_history/used_for_tracking>`
  694. Indicates whether your app uses browsing history for tracking.
  695. .. rst-class:: classref-item-separator
  696. ----
  697. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/coarse_location/collected:
  698. .. rst-class:: classref-property
  699. :ref:`bool<class_bool>` **privacy/collected_data/coarse_location/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/coarse_location/collected>`
  700. Indicates whether your app collects coarse location data.
  701. .. rst-class:: classref-item-separator
  702. ----
  703. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/coarse_location/collection_purposes:
  704. .. rst-class:: classref-property
  705. :ref:`int<class_int>` **privacy/collected_data/coarse_location/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/coarse_location/collection_purposes>`
  706. The reasons your app collects coarse location data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  707. .. rst-class:: classref-item-separator
  708. ----
  709. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/coarse_location/linked_to_user:
  710. .. rst-class:: classref-property
  711. :ref:`bool<class_bool>` **privacy/collected_data/coarse_location/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/coarse_location/linked_to_user>`
  712. Indicates whether your app links coarse location data to the user's identity.
  713. .. rst-class:: classref-item-separator
  714. ----
  715. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/coarse_location/used_for_tracking:
  716. .. rst-class:: classref-property
  717. :ref:`bool<class_bool>` **privacy/collected_data/coarse_location/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/coarse_location/used_for_tracking>`
  718. Indicates whether your app uses coarse location data for tracking.
  719. .. rst-class:: classref-item-separator
  720. ----
  721. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/contacts/collected:
  722. .. rst-class:: classref-property
  723. :ref:`bool<class_bool>` **privacy/collected_data/contacts/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/contacts/collected>`
  724. Indicates whether your app collects contacts.
  725. .. rst-class:: classref-item-separator
  726. ----
  727. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/contacts/collection_purposes:
  728. .. rst-class:: classref-property
  729. :ref:`int<class_int>` **privacy/collected_data/contacts/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/contacts/collection_purposes>`
  730. The reasons your app collects contacts. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  731. .. rst-class:: classref-item-separator
  732. ----
  733. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/contacts/linked_to_user:
  734. .. rst-class:: classref-property
  735. :ref:`bool<class_bool>` **privacy/collected_data/contacts/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/contacts/linked_to_user>`
  736. Indicates whether your app links contacts to the user's identity.
  737. .. rst-class:: classref-item-separator
  738. ----
  739. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/contacts/used_for_tracking:
  740. .. rst-class:: classref-property
  741. :ref:`bool<class_bool>` **privacy/collected_data/contacts/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/contacts/used_for_tracking>`
  742. Indicates whether your app uses contacts for tracking.
  743. .. rst-class:: classref-item-separator
  744. ----
  745. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/crash_data/collected:
  746. .. rst-class:: classref-property
  747. :ref:`bool<class_bool>` **privacy/collected_data/crash_data/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/crash_data/collected>`
  748. Indicates whether your app collects crash data.
  749. .. rst-class:: classref-item-separator
  750. ----
  751. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/crash_data/collection_purposes:
  752. .. rst-class:: classref-property
  753. :ref:`int<class_int>` **privacy/collected_data/crash_data/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/crash_data/collection_purposes>`
  754. The reasons your app collects crash data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  755. .. rst-class:: classref-item-separator
  756. ----
  757. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/crash_data/linked_to_user:
  758. .. rst-class:: classref-property
  759. :ref:`bool<class_bool>` **privacy/collected_data/crash_data/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/crash_data/linked_to_user>`
  760. Indicates whether your app links crash data to the user's identity.
  761. .. rst-class:: classref-item-separator
  762. ----
  763. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/crash_data/used_for_tracking:
  764. .. rst-class:: classref-property
  765. :ref:`bool<class_bool>` **privacy/collected_data/crash_data/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/crash_data/used_for_tracking>`
  766. Indicates whether your app uses crash data for tracking.
  767. .. rst-class:: classref-item-separator
  768. ----
  769. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/credit_info/collected:
  770. .. rst-class:: classref-property
  771. :ref:`bool<class_bool>` **privacy/collected_data/credit_info/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/credit_info/collected>`
  772. Indicates whether your app collects credit information.
  773. .. rst-class:: classref-item-separator
  774. ----
  775. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/credit_info/collection_purposes:
  776. .. rst-class:: classref-property
  777. :ref:`int<class_int>` **privacy/collected_data/credit_info/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/credit_info/collection_purposes>`
  778. The reasons your app collects credit information. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  779. .. rst-class:: classref-item-separator
  780. ----
  781. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/credit_info/linked_to_user:
  782. .. rst-class:: classref-property
  783. :ref:`bool<class_bool>` **privacy/collected_data/credit_info/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/credit_info/linked_to_user>`
  784. Indicates whether your app links credit information to the user's identity.
  785. .. rst-class:: classref-item-separator
  786. ----
  787. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/credit_info/used_for_tracking:
  788. .. rst-class:: classref-property
  789. :ref:`bool<class_bool>` **privacy/collected_data/credit_info/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/credit_info/used_for_tracking>`
  790. Indicates whether your app uses credit information for tracking.
  791. .. rst-class:: classref-item-separator
  792. ----
  793. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/customer_support/collected:
  794. .. rst-class:: classref-property
  795. :ref:`bool<class_bool>` **privacy/collected_data/customer_support/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/customer_support/collected>`
  796. Indicates whether your app collects customer support data.
  797. .. rst-class:: classref-item-separator
  798. ----
  799. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/customer_support/collection_purposes:
  800. .. rst-class:: classref-property
  801. :ref:`int<class_int>` **privacy/collected_data/customer_support/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/customer_support/collection_purposes>`
  802. The reasons your app collects customer support data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  803. .. rst-class:: classref-item-separator
  804. ----
  805. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/customer_support/linked_to_user:
  806. .. rst-class:: classref-property
  807. :ref:`bool<class_bool>` **privacy/collected_data/customer_support/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/customer_support/linked_to_user>`
  808. Indicates whether your app links customer support data to the user's identity.
  809. .. rst-class:: classref-item-separator
  810. ----
  811. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/customer_support/used_for_tracking:
  812. .. rst-class:: classref-property
  813. :ref:`bool<class_bool>` **privacy/collected_data/customer_support/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/customer_support/used_for_tracking>`
  814. Indicates whether your app uses customer support data for tracking.
  815. .. rst-class:: classref-item-separator
  816. ----
  817. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/device_id/collected:
  818. .. rst-class:: classref-property
  819. :ref:`bool<class_bool>` **privacy/collected_data/device_id/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/device_id/collected>`
  820. Indicates whether your app collects device IDs.
  821. .. rst-class:: classref-item-separator
  822. ----
  823. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/device_id/collection_purposes:
  824. .. rst-class:: classref-property
  825. :ref:`int<class_int>` **privacy/collected_data/device_id/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/device_id/collection_purposes>`
  826. The reasons your app collects device IDs. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  827. .. rst-class:: classref-item-separator
  828. ----
  829. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/device_id/linked_to_user:
  830. .. rst-class:: classref-property
  831. :ref:`bool<class_bool>` **privacy/collected_data/device_id/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/device_id/linked_to_user>`
  832. Indicates whether your app links device IDs to the user's identity.
  833. .. rst-class:: classref-item-separator
  834. ----
  835. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/device_id/used_for_tracking:
  836. .. rst-class:: classref-property
  837. :ref:`bool<class_bool>` **privacy/collected_data/device_id/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/device_id/used_for_tracking>`
  838. Indicates whether your app uses device IDs for tracking.
  839. .. rst-class:: classref-item-separator
  840. ----
  841. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/email_address/collected:
  842. .. rst-class:: classref-property
  843. :ref:`bool<class_bool>` **privacy/collected_data/email_address/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/email_address/collected>`
  844. Indicates whether your app collects email address.
  845. .. rst-class:: classref-item-separator
  846. ----
  847. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/email_address/collection_purposes:
  848. .. rst-class:: classref-property
  849. :ref:`int<class_int>` **privacy/collected_data/email_address/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/email_address/collection_purposes>`
  850. The reasons your app collects email address. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  851. .. rst-class:: classref-item-separator
  852. ----
  853. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/email_address/linked_to_user:
  854. .. rst-class:: classref-property
  855. :ref:`bool<class_bool>` **privacy/collected_data/email_address/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/email_address/linked_to_user>`
  856. Indicates whether your app links email address to the user's identity.
  857. .. rst-class:: classref-item-separator
  858. ----
  859. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/email_address/used_for_tracking:
  860. .. rst-class:: classref-property
  861. :ref:`bool<class_bool>` **privacy/collected_data/email_address/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/email_address/used_for_tracking>`
  862. Indicates whether your app uses email address for tracking.
  863. .. rst-class:: classref-item-separator
  864. ----
  865. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/emails_or_text_messages/collected:
  866. .. rst-class:: classref-property
  867. :ref:`bool<class_bool>` **privacy/collected_data/emails_or_text_messages/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/emails_or_text_messages/collected>`
  868. Indicates whether your app collects emails or text messages.
  869. .. rst-class:: classref-item-separator
  870. ----
  871. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/emails_or_text_messages/collection_purposes:
  872. .. rst-class:: classref-property
  873. :ref:`int<class_int>` **privacy/collected_data/emails_or_text_messages/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/emails_or_text_messages/collection_purposes>`
  874. The reasons your app collects emails or text messages. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  875. .. rst-class:: classref-item-separator
  876. ----
  877. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/emails_or_text_messages/linked_to_user:
  878. .. rst-class:: classref-property
  879. :ref:`bool<class_bool>` **privacy/collected_data/emails_or_text_messages/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/emails_or_text_messages/linked_to_user>`
  880. Indicates whether your app links emails or text messages to the user's identity.
  881. .. rst-class:: classref-item-separator
  882. ----
  883. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/emails_or_text_messages/used_for_tracking:
  884. .. rst-class:: classref-property
  885. :ref:`bool<class_bool>` **privacy/collected_data/emails_or_text_messages/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/emails_or_text_messages/used_for_tracking>`
  886. Indicates whether your app uses emails or text messages for tracking.
  887. .. rst-class:: classref-item-separator
  888. ----
  889. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/environment_scanning/collected:
  890. .. rst-class:: classref-property
  891. :ref:`bool<class_bool>` **privacy/collected_data/environment_scanning/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/environment_scanning/collected>`
  892. Indicates whether your app collects environment scanning data.
  893. .. rst-class:: classref-item-separator
  894. ----
  895. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/environment_scanning/collection_purposes:
  896. .. rst-class:: classref-property
  897. :ref:`int<class_int>` **privacy/collected_data/environment_scanning/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/environment_scanning/collection_purposes>`
  898. The reasons your app collects environment scanning data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  899. .. rst-class:: classref-item-separator
  900. ----
  901. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/environment_scanning/linked_to_user:
  902. .. rst-class:: classref-property
  903. :ref:`bool<class_bool>` **privacy/collected_data/environment_scanning/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/environment_scanning/linked_to_user>`
  904. Indicates whether your app links environment scanning data to the user's identity.
  905. .. rst-class:: classref-item-separator
  906. ----
  907. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/environment_scanning/used_for_tracking:
  908. .. rst-class:: classref-property
  909. :ref:`bool<class_bool>` **privacy/collected_data/environment_scanning/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/environment_scanning/used_for_tracking>`
  910. Indicates whether your app uses environment scanning data for tracking.
  911. .. rst-class:: classref-item-separator
  912. ----
  913. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/fitness/collected:
  914. .. rst-class:: classref-property
  915. :ref:`bool<class_bool>` **privacy/collected_data/fitness/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/fitness/collected>`
  916. Indicates whether your app collects fitness and exercise data.
  917. .. rst-class:: classref-item-separator
  918. ----
  919. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/fitness/collection_purposes:
  920. .. rst-class:: classref-property
  921. :ref:`int<class_int>` **privacy/collected_data/fitness/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/fitness/collection_purposes>`
  922. The reasons your app collects fitness and exercise data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  923. .. rst-class:: classref-item-separator
  924. ----
  925. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/fitness/linked_to_user:
  926. .. rst-class:: classref-property
  927. :ref:`bool<class_bool>` **privacy/collected_data/fitness/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/fitness/linked_to_user>`
  928. Indicates whether your app links fitness and exercise data to the user's identity.
  929. .. rst-class:: classref-item-separator
  930. ----
  931. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/fitness/used_for_tracking:
  932. .. rst-class:: classref-property
  933. :ref:`bool<class_bool>` **privacy/collected_data/fitness/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/fitness/used_for_tracking>`
  934. Indicates whether your app uses fitness and exercise data for tracking.
  935. .. rst-class:: classref-item-separator
  936. ----
  937. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/gameplay_content/collected:
  938. .. rst-class:: classref-property
  939. :ref:`bool<class_bool>` **privacy/collected_data/gameplay_content/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/gameplay_content/collected>`
  940. Indicates whether your app collects gameplay content.
  941. .. rst-class:: classref-item-separator
  942. ----
  943. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/gameplay_content/collection_purposes:
  944. .. rst-class:: classref-property
  945. :ref:`int<class_int>` **privacy/collected_data/gameplay_content/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/gameplay_content/collection_purposes>`
  946. The reasons your app collects gameplay content. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  947. .. rst-class:: classref-item-separator
  948. ----
  949. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/gameplay_content/linked_to_user:
  950. .. rst-class:: classref-property
  951. :ref:`bool<class_bool>` **privacy/collected_data/gameplay_content/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/gameplay_content/linked_to_user>`
  952. Indicates whether your app links gameplay content to the user's identity.
  953. .. rst-class:: classref-item-separator
  954. ----
  955. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/gameplay_content/used_for_tracking:
  956. .. rst-class:: classref-property
  957. :ref:`bool<class_bool>` **privacy/collected_data/gameplay_content/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/gameplay_content/used_for_tracking>`
  958. Indicates whether your app uses gameplay content for tracking.
  959. .. rst-class:: classref-item-separator
  960. ----
  961. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/hands/collected:
  962. .. rst-class:: classref-property
  963. :ref:`bool<class_bool>` **privacy/collected_data/hands/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/hands/collected>`
  964. Indicates whether your app collects user's hand structure and hand movements.
  965. .. rst-class:: classref-item-separator
  966. ----
  967. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/hands/collection_purposes:
  968. .. rst-class:: classref-property
  969. :ref:`int<class_int>` **privacy/collected_data/hands/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/hands/collection_purposes>`
  970. The reasons your app collects user's hand structure and hand movements. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  971. .. rst-class:: classref-item-separator
  972. ----
  973. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/hands/linked_to_user:
  974. .. rst-class:: classref-property
  975. :ref:`bool<class_bool>` **privacy/collected_data/hands/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/hands/linked_to_user>`
  976. Indicates whether your app links user's hand structure and hand movements to the user's identity.
  977. .. rst-class:: classref-item-separator
  978. ----
  979. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/hands/used_for_tracking:
  980. .. rst-class:: classref-property
  981. :ref:`bool<class_bool>` **privacy/collected_data/hands/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/hands/used_for_tracking>`
  982. Indicates whether your app uses user's hand structure and hand movements for tracking.
  983. .. rst-class:: classref-item-separator
  984. ----
  985. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/head/collected:
  986. .. rst-class:: classref-property
  987. :ref:`bool<class_bool>` **privacy/collected_data/head/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/head/collected>`
  988. Indicates whether your app collects user's head movement.
  989. .. rst-class:: classref-item-separator
  990. ----
  991. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/head/collection_purposes:
  992. .. rst-class:: classref-property
  993. :ref:`int<class_int>` **privacy/collected_data/head/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/head/collection_purposes>`
  994. The reasons your app collects user's head movement. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  995. .. rst-class:: classref-item-separator
  996. ----
  997. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/head/linked_to_user:
  998. .. rst-class:: classref-property
  999. :ref:`bool<class_bool>` **privacy/collected_data/head/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/head/linked_to_user>`
  1000. Indicates whether your app links user's head movement to the user's identity.
  1001. .. rst-class:: classref-item-separator
  1002. ----
  1003. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/head/used_for_tracking:
  1004. .. rst-class:: classref-property
  1005. :ref:`bool<class_bool>` **privacy/collected_data/head/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/head/used_for_tracking>`
  1006. Indicates whether your app uses user's head movement for tracking.
  1007. .. rst-class:: classref-item-separator
  1008. ----
  1009. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/health/collected:
  1010. .. rst-class:: classref-property
  1011. :ref:`bool<class_bool>` **privacy/collected_data/health/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/health/collected>`
  1012. Indicates whether your app collects health and medical data.
  1013. .. rst-class:: classref-item-separator
  1014. ----
  1015. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/health/collection_purposes:
  1016. .. rst-class:: classref-property
  1017. :ref:`int<class_int>` **privacy/collected_data/health/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/health/collection_purposes>`
  1018. The reasons your app collects health and medical data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1019. .. rst-class:: classref-item-separator
  1020. ----
  1021. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/health/linked_to_user:
  1022. .. rst-class:: classref-property
  1023. :ref:`bool<class_bool>` **privacy/collected_data/health/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/health/linked_to_user>`
  1024. Indicates whether your app links health and medical data to the user's identity.
  1025. .. rst-class:: classref-item-separator
  1026. ----
  1027. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/health/used_for_tracking:
  1028. .. rst-class:: classref-property
  1029. :ref:`bool<class_bool>` **privacy/collected_data/health/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/health/used_for_tracking>`
  1030. Indicates whether your app uses health and medical data for tracking.
  1031. .. rst-class:: classref-item-separator
  1032. ----
  1033. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/name/collected:
  1034. .. rst-class:: classref-property
  1035. :ref:`bool<class_bool>` **privacy/collected_data/name/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/name/collected>`
  1036. Indicates whether your app collects user's name.
  1037. .. rst-class:: classref-item-separator
  1038. ----
  1039. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/name/collection_purposes:
  1040. .. rst-class:: classref-property
  1041. :ref:`int<class_int>` **privacy/collected_data/name/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/name/collection_purposes>`
  1042. The reasons your app collects user's name. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1043. .. rst-class:: classref-item-separator
  1044. ----
  1045. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/name/linked_to_user:
  1046. .. rst-class:: classref-property
  1047. :ref:`bool<class_bool>` **privacy/collected_data/name/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/name/linked_to_user>`
  1048. Indicates whether your app links user's name to the user's identity.
  1049. .. rst-class:: classref-item-separator
  1050. ----
  1051. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/name/used_for_tracking:
  1052. .. rst-class:: classref-property
  1053. :ref:`bool<class_bool>` **privacy/collected_data/name/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/name/used_for_tracking>`
  1054. Indicates whether your app uses user's name for tracking.
  1055. .. rst-class:: classref-item-separator
  1056. ----
  1057. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_contact_info/collected:
  1058. .. rst-class:: classref-property
  1059. :ref:`bool<class_bool>` **privacy/collected_data/other_contact_info/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_contact_info/collected>`
  1060. Indicates whether your app collects any other contact information.
  1061. .. rst-class:: classref-item-separator
  1062. ----
  1063. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_contact_info/collection_purposes:
  1064. .. rst-class:: classref-property
  1065. :ref:`int<class_int>` **privacy/collected_data/other_contact_info/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_contact_info/collection_purposes>`
  1066. The reasons your app collects any other contact information. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1067. .. rst-class:: classref-item-separator
  1068. ----
  1069. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_contact_info/linked_to_user:
  1070. .. rst-class:: classref-property
  1071. :ref:`bool<class_bool>` **privacy/collected_data/other_contact_info/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_contact_info/linked_to_user>`
  1072. Indicates whether your app links any other contact information to the user's identity.
  1073. .. rst-class:: classref-item-separator
  1074. ----
  1075. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_contact_info/used_for_tracking:
  1076. .. rst-class:: classref-property
  1077. :ref:`bool<class_bool>` **privacy/collected_data/other_contact_info/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_contact_info/used_for_tracking>`
  1078. Indicates whether your app uses any other contact information for tracking.
  1079. .. rst-class:: classref-item-separator
  1080. ----
  1081. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_data_types/collected:
  1082. .. rst-class:: classref-property
  1083. :ref:`bool<class_bool>` **privacy/collected_data/other_data_types/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_data_types/collected>`
  1084. Indicates whether your app collects any other data.
  1085. .. rst-class:: classref-item-separator
  1086. ----
  1087. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_data_types/collection_purposes:
  1088. .. rst-class:: classref-property
  1089. :ref:`int<class_int>` **privacy/collected_data/other_data_types/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_data_types/collection_purposes>`
  1090. The reasons your app collects any other data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1091. .. rst-class:: classref-item-separator
  1092. ----
  1093. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_data_types/linked_to_user:
  1094. .. rst-class:: classref-property
  1095. :ref:`bool<class_bool>` **privacy/collected_data/other_data_types/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_data_types/linked_to_user>`
  1096. Indicates whether your app links any other data to the user's identity.
  1097. .. rst-class:: classref-item-separator
  1098. ----
  1099. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_data_types/used_for_tracking:
  1100. .. rst-class:: classref-property
  1101. :ref:`bool<class_bool>` **privacy/collected_data/other_data_types/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_data_types/used_for_tracking>`
  1102. Indicates whether your app uses any other data for tracking.
  1103. .. rst-class:: classref-item-separator
  1104. ----
  1105. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_diagnostic_data/collected:
  1106. .. rst-class:: classref-property
  1107. :ref:`bool<class_bool>` **privacy/collected_data/other_diagnostic_data/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_diagnostic_data/collected>`
  1108. Indicates whether your app collects any other diagnostic data.
  1109. .. rst-class:: classref-item-separator
  1110. ----
  1111. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_diagnostic_data/collection_purposes:
  1112. .. rst-class:: classref-property
  1113. :ref:`int<class_int>` **privacy/collected_data/other_diagnostic_data/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_diagnostic_data/collection_purposes>`
  1114. The reasons your app collects any other diagnostic data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1115. .. rst-class:: classref-item-separator
  1116. ----
  1117. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_diagnostic_data/linked_to_user:
  1118. .. rst-class:: classref-property
  1119. :ref:`bool<class_bool>` **privacy/collected_data/other_diagnostic_data/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_diagnostic_data/linked_to_user>`
  1120. Indicates whether your app links any other diagnostic data to the user's identity.
  1121. .. rst-class:: classref-item-separator
  1122. ----
  1123. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_diagnostic_data/used_for_tracking:
  1124. .. rst-class:: classref-property
  1125. :ref:`bool<class_bool>` **privacy/collected_data/other_diagnostic_data/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_diagnostic_data/used_for_tracking>`
  1126. Indicates whether your app uses any other diagnostic data for tracking.
  1127. .. rst-class:: classref-item-separator
  1128. ----
  1129. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_financial_info/collected:
  1130. .. rst-class:: classref-property
  1131. :ref:`bool<class_bool>` **privacy/collected_data/other_financial_info/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_financial_info/collected>`
  1132. Indicates whether your app collects any other financial information.
  1133. .. rst-class:: classref-item-separator
  1134. ----
  1135. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_financial_info/collection_purposes:
  1136. .. rst-class:: classref-property
  1137. :ref:`int<class_int>` **privacy/collected_data/other_financial_info/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_financial_info/collection_purposes>`
  1138. The reasons your app collects any other financial information. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1139. .. rst-class:: classref-item-separator
  1140. ----
  1141. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_financial_info/linked_to_user:
  1142. .. rst-class:: classref-property
  1143. :ref:`bool<class_bool>` **privacy/collected_data/other_financial_info/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_financial_info/linked_to_user>`
  1144. Indicates whether your app links any other financial information to the user's identity.
  1145. .. rst-class:: classref-item-separator
  1146. ----
  1147. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_financial_info/used_for_tracking:
  1148. .. rst-class:: classref-property
  1149. :ref:`bool<class_bool>` **privacy/collected_data/other_financial_info/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_financial_info/used_for_tracking>`
  1150. Indicates whether your app uses any other financial information for tracking.
  1151. .. rst-class:: classref-item-separator
  1152. ----
  1153. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_usage_data/collected:
  1154. .. rst-class:: classref-property
  1155. :ref:`bool<class_bool>` **privacy/collected_data/other_usage_data/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_usage_data/collected>`
  1156. Indicates whether your app collects any other usage data.
  1157. .. rst-class:: classref-item-separator
  1158. ----
  1159. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_usage_data/collection_purposes:
  1160. .. rst-class:: classref-property
  1161. :ref:`int<class_int>` **privacy/collected_data/other_usage_data/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_usage_data/collection_purposes>`
  1162. The reasons your app collects any other usage data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1163. .. rst-class:: classref-item-separator
  1164. ----
  1165. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_usage_data/linked_to_user:
  1166. .. rst-class:: classref-property
  1167. :ref:`bool<class_bool>` **privacy/collected_data/other_usage_data/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_usage_data/linked_to_user>`
  1168. Indicates whether your app links any other usage data to the user's identity.
  1169. .. rst-class:: classref-item-separator
  1170. ----
  1171. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_usage_data/used_for_tracking:
  1172. .. rst-class:: classref-property
  1173. :ref:`bool<class_bool>` **privacy/collected_data/other_usage_data/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_usage_data/used_for_tracking>`
  1174. Indicates whether your app uses any other usage data for tracking.
  1175. .. rst-class:: classref-item-separator
  1176. ----
  1177. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_user_content/collected:
  1178. .. rst-class:: classref-property
  1179. :ref:`bool<class_bool>` **privacy/collected_data/other_user_content/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_user_content/collected>`
  1180. Indicates whether your app collects any other user generated content.
  1181. .. rst-class:: classref-item-separator
  1182. ----
  1183. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_user_content/collection_purposes:
  1184. .. rst-class:: classref-property
  1185. :ref:`int<class_int>` **privacy/collected_data/other_user_content/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_user_content/collection_purposes>`
  1186. The reasons your app collects any other user generated content. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1187. .. rst-class:: classref-item-separator
  1188. ----
  1189. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_user_content/linked_to_user:
  1190. .. rst-class:: classref-property
  1191. :ref:`bool<class_bool>` **privacy/collected_data/other_user_content/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_user_content/linked_to_user>`
  1192. Indicates whether your app links any other user generated content to the user's identity.
  1193. .. rst-class:: classref-item-separator
  1194. ----
  1195. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_user_content/used_for_tracking:
  1196. .. rst-class:: classref-property
  1197. :ref:`bool<class_bool>` **privacy/collected_data/other_user_content/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/other_user_content/used_for_tracking>`
  1198. Indicates whether your app uses any other user generated content for tracking.
  1199. .. rst-class:: classref-item-separator
  1200. ----
  1201. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/payment_info/collected:
  1202. .. rst-class:: classref-property
  1203. :ref:`bool<class_bool>` **privacy/collected_data/payment_info/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/payment_info/collected>`
  1204. Indicates whether your app collects payment information.
  1205. .. rst-class:: classref-item-separator
  1206. ----
  1207. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/payment_info/collection_purposes:
  1208. .. rst-class:: classref-property
  1209. :ref:`int<class_int>` **privacy/collected_data/payment_info/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/payment_info/collection_purposes>`
  1210. The reasons your app collects payment information. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1211. .. rst-class:: classref-item-separator
  1212. ----
  1213. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/payment_info/linked_to_user:
  1214. .. rst-class:: classref-property
  1215. :ref:`bool<class_bool>` **privacy/collected_data/payment_info/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/payment_info/linked_to_user>`
  1216. Indicates whether your app links payment information to the user's identity.
  1217. .. rst-class:: classref-item-separator
  1218. ----
  1219. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/payment_info/used_for_tracking:
  1220. .. rst-class:: classref-property
  1221. :ref:`bool<class_bool>` **privacy/collected_data/payment_info/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/payment_info/used_for_tracking>`
  1222. Indicates whether your app uses payment information for tracking.
  1223. .. rst-class:: classref-item-separator
  1224. ----
  1225. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/performance_data/collected:
  1226. .. rst-class:: classref-property
  1227. :ref:`bool<class_bool>` **privacy/collected_data/performance_data/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/performance_data/collected>`
  1228. Indicates whether your app collects performance data.
  1229. .. rst-class:: classref-item-separator
  1230. ----
  1231. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/performance_data/collection_purposes:
  1232. .. rst-class:: classref-property
  1233. :ref:`int<class_int>` **privacy/collected_data/performance_data/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/performance_data/collection_purposes>`
  1234. The reasons your app collects performance data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1235. .. rst-class:: classref-item-separator
  1236. ----
  1237. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/performance_data/linked_to_user:
  1238. .. rst-class:: classref-property
  1239. :ref:`bool<class_bool>` **privacy/collected_data/performance_data/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/performance_data/linked_to_user>`
  1240. Indicates whether your app links performance data to the user's identity.
  1241. .. rst-class:: classref-item-separator
  1242. ----
  1243. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/performance_data/used_for_tracking:
  1244. .. rst-class:: classref-property
  1245. :ref:`bool<class_bool>` **privacy/collected_data/performance_data/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/performance_data/used_for_tracking>`
  1246. Indicates whether your app uses performance data for tracking.
  1247. .. rst-class:: classref-item-separator
  1248. ----
  1249. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/phone_number/collected:
  1250. .. rst-class:: classref-property
  1251. :ref:`bool<class_bool>` **privacy/collected_data/phone_number/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/phone_number/collected>`
  1252. Indicates whether your app collects phone number.
  1253. .. rst-class:: classref-item-separator
  1254. ----
  1255. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/phone_number/collection_purposes:
  1256. .. rst-class:: classref-property
  1257. :ref:`int<class_int>` **privacy/collected_data/phone_number/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/phone_number/collection_purposes>`
  1258. The reasons your app collects phone number. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1259. .. rst-class:: classref-item-separator
  1260. ----
  1261. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/phone_number/linked_to_user:
  1262. .. rst-class:: classref-property
  1263. :ref:`bool<class_bool>` **privacy/collected_data/phone_number/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/phone_number/linked_to_user>`
  1264. Indicates whether your app links phone number to the user's identity.
  1265. .. rst-class:: classref-item-separator
  1266. ----
  1267. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/phone_number/used_for_tracking:
  1268. .. rst-class:: classref-property
  1269. :ref:`bool<class_bool>` **privacy/collected_data/phone_number/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/phone_number/used_for_tracking>`
  1270. Indicates whether your app uses phone number for tracking.
  1271. .. rst-class:: classref-item-separator
  1272. ----
  1273. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/photos_or_videos/collected:
  1274. .. rst-class:: classref-property
  1275. :ref:`bool<class_bool>` **privacy/collected_data/photos_or_videos/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/photos_or_videos/collected>`
  1276. Indicates whether your app collects photos or videos.
  1277. .. rst-class:: classref-item-separator
  1278. ----
  1279. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/photos_or_videos/collection_purposes:
  1280. .. rst-class:: classref-property
  1281. :ref:`int<class_int>` **privacy/collected_data/photos_or_videos/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/photos_or_videos/collection_purposes>`
  1282. The reasons your app collects photos or videos. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1283. .. rst-class:: classref-item-separator
  1284. ----
  1285. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/photos_or_videos/linked_to_user:
  1286. .. rst-class:: classref-property
  1287. :ref:`bool<class_bool>` **privacy/collected_data/photos_or_videos/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/photos_or_videos/linked_to_user>`
  1288. Indicates whether your app links photos or videos to the user's identity.
  1289. .. rst-class:: classref-item-separator
  1290. ----
  1291. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/photos_or_videos/used_for_tracking:
  1292. .. rst-class:: classref-property
  1293. :ref:`bool<class_bool>` **privacy/collected_data/photos_or_videos/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/photos_or_videos/used_for_tracking>`
  1294. Indicates whether your app uses photos or videos for tracking.
  1295. .. rst-class:: classref-item-separator
  1296. ----
  1297. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/physical_address/collected:
  1298. .. rst-class:: classref-property
  1299. :ref:`bool<class_bool>` **privacy/collected_data/physical_address/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/physical_address/collected>`
  1300. Indicates whether your app collects physical address.
  1301. .. rst-class:: classref-item-separator
  1302. ----
  1303. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/physical_address/collection_purposes:
  1304. .. rst-class:: classref-property
  1305. :ref:`int<class_int>` **privacy/collected_data/physical_address/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/physical_address/collection_purposes>`
  1306. The reasons your app collects physical address. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1307. .. rst-class:: classref-item-separator
  1308. ----
  1309. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/physical_address/linked_to_user:
  1310. .. rst-class:: classref-property
  1311. :ref:`bool<class_bool>` **privacy/collected_data/physical_address/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/physical_address/linked_to_user>`
  1312. Indicates whether your app links physical address to the user's identity.
  1313. .. rst-class:: classref-item-separator
  1314. ----
  1315. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/physical_address/used_for_tracking:
  1316. .. rst-class:: classref-property
  1317. :ref:`bool<class_bool>` **privacy/collected_data/physical_address/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/physical_address/used_for_tracking>`
  1318. Indicates whether your app uses physical address for tracking.
  1319. .. rst-class:: classref-item-separator
  1320. ----
  1321. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/precise_location/collected:
  1322. .. rst-class:: classref-property
  1323. :ref:`bool<class_bool>` **privacy/collected_data/precise_location/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/precise_location/collected>`
  1324. Indicates whether your app collects precise location data.
  1325. .. rst-class:: classref-item-separator
  1326. ----
  1327. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/precise_location/collection_purposes:
  1328. .. rst-class:: classref-property
  1329. :ref:`int<class_int>` **privacy/collected_data/precise_location/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/precise_location/collection_purposes>`
  1330. The reasons your app collects precise location data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1331. .. rst-class:: classref-item-separator
  1332. ----
  1333. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/precise_location/linked_to_user:
  1334. .. rst-class:: classref-property
  1335. :ref:`bool<class_bool>` **privacy/collected_data/precise_location/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/precise_location/linked_to_user>`
  1336. Indicates whether your app links precise location data to the user's identity.
  1337. .. rst-class:: classref-item-separator
  1338. ----
  1339. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/precise_location/used_for_tracking:
  1340. .. rst-class:: classref-property
  1341. :ref:`bool<class_bool>` **privacy/collected_data/precise_location/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/precise_location/used_for_tracking>`
  1342. Indicates whether your app uses precise location data for tracking.
  1343. .. rst-class:: classref-item-separator
  1344. ----
  1345. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/product_interaction/collected:
  1346. .. rst-class:: classref-property
  1347. :ref:`bool<class_bool>` **privacy/collected_data/product_interaction/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/product_interaction/collected>`
  1348. Indicates whether your app collects product interaction data.
  1349. .. rst-class:: classref-item-separator
  1350. ----
  1351. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/product_interaction/collection_purposes:
  1352. .. rst-class:: classref-property
  1353. :ref:`int<class_int>` **privacy/collected_data/product_interaction/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/product_interaction/collection_purposes>`
  1354. The reasons your app collects product interaction data. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1355. .. rst-class:: classref-item-separator
  1356. ----
  1357. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/product_interaction/linked_to_user:
  1358. .. rst-class:: classref-property
  1359. :ref:`bool<class_bool>` **privacy/collected_data/product_interaction/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/product_interaction/linked_to_user>`
  1360. Indicates whether your app links product interaction data to the user's identity.
  1361. .. rst-class:: classref-item-separator
  1362. ----
  1363. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/product_interaction/used_for_tracking:
  1364. .. rst-class:: classref-property
  1365. :ref:`bool<class_bool>` **privacy/collected_data/product_interaction/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/product_interaction/used_for_tracking>`
  1366. Indicates whether your app uses product interaction data for tracking.
  1367. .. rst-class:: classref-item-separator
  1368. ----
  1369. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/purchase_history/collected:
  1370. .. rst-class:: classref-property
  1371. :ref:`bool<class_bool>` **privacy/collected_data/purchase_history/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/purchase_history/collected>`
  1372. Indicates whether your app collects purchase history.
  1373. .. rst-class:: classref-item-separator
  1374. ----
  1375. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/purchase_history/collection_purposes:
  1376. .. rst-class:: classref-property
  1377. :ref:`int<class_int>` **privacy/collected_data/purchase_history/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/purchase_history/collection_purposes>`
  1378. The reasons your app collects purchase history. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1379. .. rst-class:: classref-item-separator
  1380. ----
  1381. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/purchase_history/linked_to_user:
  1382. .. rst-class:: classref-property
  1383. :ref:`bool<class_bool>` **privacy/collected_data/purchase_history/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/purchase_history/linked_to_user>`
  1384. Indicates whether your app links purchase history to the user's identity.
  1385. .. rst-class:: classref-item-separator
  1386. ----
  1387. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/purchase_history/used_for_tracking:
  1388. .. rst-class:: classref-property
  1389. :ref:`bool<class_bool>` **privacy/collected_data/purchase_history/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/purchase_history/used_for_tracking>`
  1390. Indicates whether your app uses purchase history for tracking.
  1391. .. rst-class:: classref-item-separator
  1392. ----
  1393. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/search_hhistory/collected:
  1394. .. rst-class:: classref-property
  1395. :ref:`bool<class_bool>` **privacy/collected_data/search_hhistory/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/search_hhistory/collected>`
  1396. Indicates whether your app collects search history.
  1397. .. rst-class:: classref-item-separator
  1398. ----
  1399. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/search_hhistory/collection_purposes:
  1400. .. rst-class:: classref-property
  1401. :ref:`int<class_int>` **privacy/collected_data/search_hhistory/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/search_hhistory/collection_purposes>`
  1402. The reasons your app collects search history. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1403. .. rst-class:: classref-item-separator
  1404. ----
  1405. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/search_hhistory/linked_to_user:
  1406. .. rst-class:: classref-property
  1407. :ref:`bool<class_bool>` **privacy/collected_data/search_hhistory/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/search_hhistory/linked_to_user>`
  1408. Indicates whether your app links search history to the user's identity.
  1409. .. rst-class:: classref-item-separator
  1410. ----
  1411. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/search_hhistory/used_for_tracking:
  1412. .. rst-class:: classref-property
  1413. :ref:`bool<class_bool>` **privacy/collected_data/search_hhistory/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/search_hhistory/used_for_tracking>`
  1414. Indicates whether your app uses search history for tracking.
  1415. .. rst-class:: classref-item-separator
  1416. ----
  1417. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/sensitive_info/collected:
  1418. .. rst-class:: classref-property
  1419. :ref:`bool<class_bool>` **privacy/collected_data/sensitive_info/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/sensitive_info/collected>`
  1420. Indicates whether your app collects sensitive user information.
  1421. .. rst-class:: classref-item-separator
  1422. ----
  1423. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/sensitive_info/collection_purposes:
  1424. .. rst-class:: classref-property
  1425. :ref:`int<class_int>` **privacy/collected_data/sensitive_info/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/sensitive_info/collection_purposes>`
  1426. The reasons your app collects sensitive user information. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1427. .. rst-class:: classref-item-separator
  1428. ----
  1429. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/sensitive_info/linked_to_user:
  1430. .. rst-class:: classref-property
  1431. :ref:`bool<class_bool>` **privacy/collected_data/sensitive_info/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/sensitive_info/linked_to_user>`
  1432. Indicates whether your app links sensitive user information to the user's identity.
  1433. .. rst-class:: classref-item-separator
  1434. ----
  1435. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/sensitive_info/used_for_tracking:
  1436. .. rst-class:: classref-property
  1437. :ref:`bool<class_bool>` **privacy/collected_data/sensitive_info/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/sensitive_info/used_for_tracking>`
  1438. Indicates whether your app uses sensitive user information for tracking.
  1439. .. rst-class:: classref-item-separator
  1440. ----
  1441. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/user_id/collected:
  1442. .. rst-class:: classref-property
  1443. :ref:`bool<class_bool>` **privacy/collected_data/user_id/collected** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/user_id/collected>`
  1444. Indicates whether your app collects user IDs.
  1445. .. rst-class:: classref-item-separator
  1446. ----
  1447. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/user_id/collection_purposes:
  1448. .. rst-class:: classref-property
  1449. :ref:`int<class_int>` **privacy/collected_data/user_id/collection_purposes** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/user_id/collection_purposes>`
  1450. The reasons your app collects user IDs. See `Describing data use in privacy manifests <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests>`__.
  1451. .. rst-class:: classref-item-separator
  1452. ----
  1453. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/user_id/linked_to_user:
  1454. .. rst-class:: classref-property
  1455. :ref:`bool<class_bool>` **privacy/collected_data/user_id/linked_to_user** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/user_id/linked_to_user>`
  1456. Indicates whether your app links user IDs to the user's identity.
  1457. .. rst-class:: classref-item-separator
  1458. ----
  1459. .. _class_EditorExportPlatformVisionOS_property_privacy/collected_data/user_id/used_for_tracking:
  1460. .. rst-class:: classref-property
  1461. :ref:`bool<class_bool>` **privacy/collected_data/user_id/used_for_tracking** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/collected_data/user_id/used_for_tracking>`
  1462. Indicates whether your app uses user IDs for tracking.
  1463. .. rst-class:: classref-item-separator
  1464. ----
  1465. .. _class_EditorExportPlatformVisionOS_property_privacy/disk_space_access_reasons:
  1466. .. rst-class:: classref-property
  1467. :ref:`int<class_int>` **privacy/disk_space_access_reasons** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/disk_space_access_reasons>`
  1468. The reasons your app use free disk space API. See `Describing use of required reason API <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api>`__.
  1469. .. rst-class:: classref-item-separator
  1470. ----
  1471. .. _class_EditorExportPlatformVisionOS_property_privacy/file_timestamp_access_reasons:
  1472. .. rst-class:: classref-property
  1473. :ref:`int<class_int>` **privacy/file_timestamp_access_reasons** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/file_timestamp_access_reasons>`
  1474. The reasons your app use file timestamp/metadata API. See `Describing use of required reason API <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api>`__.
  1475. .. rst-class:: classref-item-separator
  1476. ----
  1477. .. _class_EditorExportPlatformVisionOS_property_privacy/microphone_usage_description:
  1478. .. rst-class:: classref-property
  1479. :ref:`String<class_String>` **privacy/microphone_usage_description** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/microphone_usage_description>`
  1480. A message displayed when requesting access to the device's microphone (in English).
  1481. .. rst-class:: classref-item-separator
  1482. ----
  1483. .. _class_EditorExportPlatformVisionOS_property_privacy/microphone_usage_description_localized:
  1484. .. rst-class:: classref-property
  1485. :ref:`Dictionary<class_Dictionary>` **privacy/microphone_usage_description_localized** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/microphone_usage_description_localized>`
  1486. A message displayed when requesting access to the device's microphone (localized).
  1487. .. rst-class:: classref-item-separator
  1488. ----
  1489. .. _class_EditorExportPlatformVisionOS_property_privacy/photolibrary_usage_description:
  1490. .. rst-class:: classref-property
  1491. :ref:`String<class_String>` **privacy/photolibrary_usage_description** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/photolibrary_usage_description>`
  1492. A message displayed when requesting access to the user's photo library (in English).
  1493. .. rst-class:: classref-item-separator
  1494. ----
  1495. .. _class_EditorExportPlatformVisionOS_property_privacy/photolibrary_usage_description_localized:
  1496. .. rst-class:: classref-property
  1497. :ref:`Dictionary<class_Dictionary>` **privacy/photolibrary_usage_description_localized** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/photolibrary_usage_description_localized>`
  1498. A message displayed when requesting access to the user's photo library (localized).
  1499. .. rst-class:: classref-item-separator
  1500. ----
  1501. .. _class_EditorExportPlatformVisionOS_property_privacy/system_boot_time_access_reasons:
  1502. .. rst-class:: classref-property
  1503. :ref:`int<class_int>` **privacy/system_boot_time_access_reasons** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/system_boot_time_access_reasons>`
  1504. The reasons your app use system boot time / absolute time API. See `Describing use of required reason API <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api>`__.
  1505. .. rst-class:: classref-item-separator
  1506. ----
  1507. .. _class_EditorExportPlatformVisionOS_property_privacy/tracking_domains:
  1508. .. rst-class:: classref-property
  1509. :ref:`PackedStringArray<class_PackedStringArray>` **privacy/tracking_domains** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/tracking_domains>`
  1510. The list of internet domains your app connects to that engage in tracking. See `Privacy manifest files <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files>`__.
  1511. **Note:** The returned array is *copied* and any changes to it will not update the original property value. See :ref:`PackedStringArray<class_PackedStringArray>` for more details.
  1512. .. rst-class:: classref-item-separator
  1513. ----
  1514. .. _class_EditorExportPlatformVisionOS_property_privacy/tracking_enabled:
  1515. .. rst-class:: classref-property
  1516. :ref:`bool<class_bool>` **privacy/tracking_enabled** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/tracking_enabled>`
  1517. Indicates whether your app uses data for tracking. See `Privacy manifest files <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files>`__.
  1518. .. rst-class:: classref-item-separator
  1519. ----
  1520. .. _class_EditorExportPlatformVisionOS_property_privacy/user_defaults_access_reasons:
  1521. .. rst-class:: classref-property
  1522. :ref:`int<class_int>` **privacy/user_defaults_access_reasons** :ref:`🔗<class_EditorExportPlatformVisionOS_property_privacy/user_defaults_access_reasons>`
  1523. The reasons your app use user defaults API. See `Describing use of required reason API <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api>`__.
  1524. .. rst-class:: classref-item-separator
  1525. ----
  1526. .. _class_EditorExportPlatformVisionOS_property_user_data/accessible_from_files_app:
  1527. .. rst-class:: classref-property
  1528. :ref:`bool<class_bool>` **user_data/accessible_from_files_app** :ref:`🔗<class_EditorExportPlatformVisionOS_property_user_data/accessible_from_files_app>`
  1529. If ``true``, the app "Documents" folder can be accessed via "Files" app. See `LSSupportsOpeningDocumentsInPlace <https://developer.apple.com/documentation/bundleresources/information_property_list/lssupportsopeningdocumentsinplace>`__.
  1530. .. rst-class:: classref-item-separator
  1531. ----
  1532. .. _class_EditorExportPlatformVisionOS_property_user_data/accessible_from_itunes_sharing:
  1533. .. rst-class:: classref-property
  1534. :ref:`bool<class_bool>` **user_data/accessible_from_itunes_sharing** :ref:`🔗<class_EditorExportPlatformVisionOS_property_user_data/accessible_from_itunes_sharing>`
  1535. If ``true``, the app "Documents" folder can be accessed via iTunes file sharing. See `UIFileSharingEnabled <https://developer.apple.com/documentation/bundleresources/information_property_list/uifilesharingenabled>`__.
  1536. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  1537. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  1538. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  1539. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  1540. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  1541. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  1542. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  1543. .. |void| replace:: :abbr:`void (No return value.)`