class_editorexportplatformios.rst 229 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462
  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/ios/doc_classes/EditorExportPlatformIOS.xml.
  6. .. _class_EditorExportPlatformIOS:
  7. EditorExportPlatformIOS
  8. =======================
  9. **Inherits:** :ref:`EditorExportPlatform<class_EditorExportPlatform>` **<** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
  10. Exporter for iOS.
  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_EditorExportPlatformIOS_property_application/additional_plist_content>` |
  23. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  24. | :ref:`String<class_String>` | :ref:`application/app_store_team_id<class_EditorExportPlatformIOS_property_application/app_store_team_id>` |
  25. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  26. | :ref:`String<class_String>` | :ref:`application/bundle_identifier<class_EditorExportPlatformIOS_property_application/bundle_identifier>` |
  27. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  28. | :ref:`String<class_String>` | :ref:`application/code_sign_identity_debug<class_EditorExportPlatformIOS_property_application/code_sign_identity_debug>` |
  29. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  30. | :ref:`String<class_String>` | :ref:`application/code_sign_identity_release<class_EditorExportPlatformIOS_property_application/code_sign_identity_release>` |
  31. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  32. | :ref:`bool<class_bool>` | :ref:`application/delete_old_export_files_unconditionally<class_EditorExportPlatformIOS_property_application/delete_old_export_files_unconditionally>` |
  33. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  34. | :ref:`int<class_int>` | :ref:`application/export_method_debug<class_EditorExportPlatformIOS_property_application/export_method_debug>` |
  35. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  36. | :ref:`int<class_int>` | :ref:`application/export_method_release<class_EditorExportPlatformIOS_property_application/export_method_release>` |
  37. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  38. | :ref:`bool<class_bool>` | :ref:`application/export_project_only<class_EditorExportPlatformIOS_property_application/export_project_only>` |
  39. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`bool<class_bool>` | :ref:`application/generate_simulator_library_if_missing<class_EditorExportPlatformIOS_property_application/generate_simulator_library_if_missing>` |
  41. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  42. | :ref:`int<class_int>` | :ref:`application/icon_interpolation<class_EditorExportPlatformIOS_property_application/icon_interpolation>` |
  43. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  44. | :ref:`String<class_String>` | :ref:`application/min_ios_version<class_EditorExportPlatformIOS_property_application/min_ios_version>` |
  45. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`String<class_String>` | :ref:`application/provisioning_profile_specifier_debug<class_EditorExportPlatformIOS_property_application/provisioning_profile_specifier_debug>` |
  47. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  48. | :ref:`String<class_String>` | :ref:`application/provisioning_profile_specifier_release<class_EditorExportPlatformIOS_property_application/provisioning_profile_specifier_release>` |
  49. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`String<class_String>` | :ref:`application/provisioning_profile_uuid_debug<class_EditorExportPlatformIOS_property_application/provisioning_profile_uuid_debug>` |
  51. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`String<class_String>` | :ref:`application/provisioning_profile_uuid_release<class_EditorExportPlatformIOS_property_application/provisioning_profile_uuid_release>` |
  53. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`String<class_String>` | :ref:`application/short_version<class_EditorExportPlatformIOS_property_application/short_version>` |
  55. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  56. | :ref:`String<class_String>` | :ref:`application/signature<class_EditorExportPlatformIOS_property_application/signature>` |
  57. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  58. | :ref:`int<class_int>` | :ref:`application/targeted_device_family<class_EditorExportPlatformIOS_property_application/targeted_device_family>` |
  59. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  60. | :ref:`String<class_String>` | :ref:`application/version<class_EditorExportPlatformIOS_property_application/version>` |
  61. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`bool<class_bool>` | :ref:`architectures/arm64<class_EditorExportPlatformIOS_property_architectures/arm64>` |
  63. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  64. | :ref:`bool<class_bool>` | :ref:`capabilities/access_wifi<class_EditorExportPlatformIOS_property_capabilities/access_wifi>` |
  65. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`capabilities/additional<class_EditorExportPlatformIOS_property_capabilities/additional>` |
  67. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  68. | :ref:`bool<class_bool>` | :ref:`capabilities/performance_a12<class_EditorExportPlatformIOS_property_capabilities/performance_a12>` |
  69. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  70. | :ref:`bool<class_bool>` | :ref:`capabilities/performance_gaming_tier<class_EditorExportPlatformIOS_property_capabilities/performance_gaming_tier>` |
  71. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`String<class_String>` | :ref:`custom_template/debug<class_EditorExportPlatformIOS_property_custom_template/debug>` |
  73. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  74. | :ref:`String<class_String>` | :ref:`custom_template/release<class_EditorExportPlatformIOS_property_custom_template/release>` |
  75. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  76. | :ref:`String<class_String>` | :ref:`entitlements/additional<class_EditorExportPlatformIOS_property_entitlements/additional>` |
  77. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  78. | :ref:`bool<class_bool>` | :ref:`entitlements/game_center<class_EditorExportPlatformIOS_property_entitlements/game_center>` |
  79. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  80. | :ref:`bool<class_bool>` | :ref:`entitlements/increased_memory_limit<class_EditorExportPlatformIOS_property_entitlements/increased_memory_limit>` |
  81. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  82. | :ref:`String<class_String>` | :ref:`entitlements/push_notifications<class_EditorExportPlatformIOS_property_entitlements/push_notifications>` |
  83. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | :ref:`String<class_String>` | :ref:`icons/app_store_1024x1024<class_EditorExportPlatformIOS_property_icons/app_store_1024x1024>` |
  85. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | :ref:`String<class_String>` | :ref:`icons/app_store_1024x1024_dark<class_EditorExportPlatformIOS_property_icons/app_store_1024x1024_dark>` |
  87. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  88. | :ref:`String<class_String>` | :ref:`icons/app_store_1024x1024_tinted<class_EditorExportPlatformIOS_property_icons/app_store_1024x1024_tinted>` |
  89. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  90. | :ref:`String<class_String>` | :ref:`icons/icon_1024x1024<class_EditorExportPlatformIOS_property_icons/icon_1024x1024>` |
  91. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  92. | :ref:`String<class_String>` | :ref:`icons/icon_1024x1024_dark<class_EditorExportPlatformIOS_property_icons/icon_1024x1024_dark>` |
  93. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  94. | :ref:`String<class_String>` | :ref:`icons/icon_1024x1024_tinted<class_EditorExportPlatformIOS_property_icons/icon_1024x1024_tinted>` |
  95. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  96. | :ref:`String<class_String>` | :ref:`icons/ios_128x128<class_EditorExportPlatformIOS_property_icons/ios_128x128>` |
  97. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  98. | :ref:`String<class_String>` | :ref:`icons/ios_128x128_dark<class_EditorExportPlatformIOS_property_icons/ios_128x128_dark>` |
  99. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  100. | :ref:`String<class_String>` | :ref:`icons/ios_128x128_tinted<class_EditorExportPlatformIOS_property_icons/ios_128x128_tinted>` |
  101. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  102. | :ref:`String<class_String>` | :ref:`icons/ios_136x136<class_EditorExportPlatformIOS_property_icons/ios_136x136>` |
  103. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  104. | :ref:`String<class_String>` | :ref:`icons/ios_136x136_dark<class_EditorExportPlatformIOS_property_icons/ios_136x136_dark>` |
  105. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  106. | :ref:`String<class_String>` | :ref:`icons/ios_136x136_tinted<class_EditorExportPlatformIOS_property_icons/ios_136x136_tinted>` |
  107. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  108. | :ref:`String<class_String>` | :ref:`icons/ios_192x192<class_EditorExportPlatformIOS_property_icons/ios_192x192>` |
  109. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  110. | :ref:`String<class_String>` | :ref:`icons/ios_192x192_dark<class_EditorExportPlatformIOS_property_icons/ios_192x192_dark>` |
  111. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  112. | :ref:`String<class_String>` | :ref:`icons/ios_192x192_tinted<class_EditorExportPlatformIOS_property_icons/ios_192x192_tinted>` |
  113. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  114. | :ref:`String<class_String>` | :ref:`icons/ipad_152x152<class_EditorExportPlatformIOS_property_icons/ipad_152x152>` |
  115. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  116. | :ref:`String<class_String>` | :ref:`icons/ipad_152x152_dark<class_EditorExportPlatformIOS_property_icons/ipad_152x152_dark>` |
  117. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  118. | :ref:`String<class_String>` | :ref:`icons/ipad_152x152_tinted<class_EditorExportPlatformIOS_property_icons/ipad_152x152_tinted>` |
  119. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  120. | :ref:`String<class_String>` | :ref:`icons/ipad_167x167<class_EditorExportPlatformIOS_property_icons/ipad_167x167>` |
  121. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  122. | :ref:`String<class_String>` | :ref:`icons/ipad_167x167_dark<class_EditorExportPlatformIOS_property_icons/ipad_167x167_dark>` |
  123. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  124. | :ref:`String<class_String>` | :ref:`icons/ipad_167x167_tinted<class_EditorExportPlatformIOS_property_icons/ipad_167x167_tinted>` |
  125. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  126. | :ref:`String<class_String>` | :ref:`icons/iphone_120x120<class_EditorExportPlatformIOS_property_icons/iphone_120x120>` |
  127. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  128. | :ref:`String<class_String>` | :ref:`icons/iphone_120x120_dark<class_EditorExportPlatformIOS_property_icons/iphone_120x120_dark>` |
  129. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  130. | :ref:`String<class_String>` | :ref:`icons/iphone_120x120_tinted<class_EditorExportPlatformIOS_property_icons/iphone_120x120_tinted>` |
  131. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  132. | :ref:`String<class_String>` | :ref:`icons/iphone_180x180<class_EditorExportPlatformIOS_property_icons/iphone_180x180>` |
  133. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  134. | :ref:`String<class_String>` | :ref:`icons/iphone_180x180_dark<class_EditorExportPlatformIOS_property_icons/iphone_180x180_dark>` |
  135. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  136. | :ref:`String<class_String>` | :ref:`icons/iphone_180x180_tinted<class_EditorExportPlatformIOS_property_icons/iphone_180x180_tinted>` |
  137. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  138. | :ref:`String<class_String>` | :ref:`icons/notification_40x40<class_EditorExportPlatformIOS_property_icons/notification_40x40>` |
  139. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  140. | :ref:`String<class_String>` | :ref:`icons/notification_40x40_dark<class_EditorExportPlatformIOS_property_icons/notification_40x40_dark>` |
  141. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  142. | :ref:`String<class_String>` | :ref:`icons/notification_40x40_tinted<class_EditorExportPlatformIOS_property_icons/notification_40x40_tinted>` |
  143. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  144. | :ref:`String<class_String>` | :ref:`icons/notification_60x60<class_EditorExportPlatformIOS_property_icons/notification_60x60>` |
  145. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  146. | :ref:`String<class_String>` | :ref:`icons/notification_60x60_dark<class_EditorExportPlatformIOS_property_icons/notification_60x60_dark>` |
  147. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  148. | :ref:`String<class_String>` | :ref:`icons/notification_60x60_tinted<class_EditorExportPlatformIOS_property_icons/notification_60x60_tinted>` |
  149. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  150. | :ref:`String<class_String>` | :ref:`icons/notification_76x76<class_EditorExportPlatformIOS_property_icons/notification_76x76>` |
  151. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  152. | :ref:`String<class_String>` | :ref:`icons/notification_76x76_dark<class_EditorExportPlatformIOS_property_icons/notification_76x76_dark>` |
  153. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  154. | :ref:`String<class_String>` | :ref:`icons/notification_76x76_tinted<class_EditorExportPlatformIOS_property_icons/notification_76x76_tinted>` |
  155. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  156. | :ref:`String<class_String>` | :ref:`icons/notification_114x114<class_EditorExportPlatformIOS_property_icons/notification_114x114>` |
  157. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  158. | :ref:`String<class_String>` | :ref:`icons/notification_114x114_dark<class_EditorExportPlatformIOS_property_icons/notification_114x114_dark>` |
  159. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  160. | :ref:`String<class_String>` | :ref:`icons/notification_114x114_tinted<class_EditorExportPlatformIOS_property_icons/notification_114x114_tinted>` |
  161. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  162. | :ref:`String<class_String>` | :ref:`icons/settings_58x58<class_EditorExportPlatformIOS_property_icons/settings_58x58>` |
  163. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  164. | :ref:`String<class_String>` | :ref:`icons/settings_58x58_dark<class_EditorExportPlatformIOS_property_icons/settings_58x58_dark>` |
  165. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  166. | :ref:`String<class_String>` | :ref:`icons/settings_58x58_tinted<class_EditorExportPlatformIOS_property_icons/settings_58x58_tinted>` |
  167. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  168. | :ref:`String<class_String>` | :ref:`icons/settings_87x87<class_EditorExportPlatformIOS_property_icons/settings_87x87>` |
  169. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  170. | :ref:`String<class_String>` | :ref:`icons/settings_87x87_dark<class_EditorExportPlatformIOS_property_icons/settings_87x87_dark>` |
  171. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  172. | :ref:`String<class_String>` | :ref:`icons/settings_87x87_tinted<class_EditorExportPlatformIOS_property_icons/settings_87x87_tinted>` |
  173. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  174. | :ref:`String<class_String>` | :ref:`icons/spotlight_80x80<class_EditorExportPlatformIOS_property_icons/spotlight_80x80>` |
  175. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  176. | :ref:`String<class_String>` | :ref:`icons/spotlight_80x80_dark<class_EditorExportPlatformIOS_property_icons/spotlight_80x80_dark>` |
  177. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  178. | :ref:`String<class_String>` | :ref:`icons/spotlight_80x80_tinted<class_EditorExportPlatformIOS_property_icons/spotlight_80x80_tinted>` |
  179. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  180. | :ref:`String<class_String>` | :ref:`icons/spotlight_120x120<class_EditorExportPlatformIOS_property_icons/spotlight_120x120>` |
  181. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  182. | :ref:`String<class_String>` | :ref:`icons/spotlight_120x120_dark<class_EditorExportPlatformIOS_property_icons/spotlight_120x120_dark>` |
  183. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  184. | :ref:`String<class_String>` | :ref:`icons/spotlight_120x120_tinted<class_EditorExportPlatformIOS_property_icons/spotlight_120x120_tinted>` |
  185. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  186. | :ref:`int<class_int>` | :ref:`privacy/active_keyboard_access_reasons<class_EditorExportPlatformIOS_property_privacy/active_keyboard_access_reasons>` |
  187. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  188. | :ref:`String<class_String>` | :ref:`privacy/camera_usage_description<class_EditorExportPlatformIOS_property_privacy/camera_usage_description>` |
  189. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  190. | :ref:`Dictionary<class_Dictionary>` | :ref:`privacy/camera_usage_description_localized<class_EditorExportPlatformIOS_property_privacy/camera_usage_description_localized>` |
  191. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  192. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/advertising_data/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/advertising_data/collected>` |
  193. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  194. | :ref:`int<class_int>` | :ref:`privacy/collected_data/advertising_data/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/advertising_data/collection_purposes>` |
  195. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  196. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/advertising_data/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/advertising_data/linked_to_user>` |
  197. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  198. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/advertising_data/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/advertising_data/used_for_tracking>` |
  199. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  200. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/audio_data/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/audio_data/collected>` |
  201. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  202. | :ref:`int<class_int>` | :ref:`privacy/collected_data/audio_data/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/audio_data/collection_purposes>` |
  203. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  204. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/audio_data/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/audio_data/linked_to_user>` |
  205. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  206. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/audio_data/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/audio_data/used_for_tracking>` |
  207. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  208. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/browsing_history/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/browsing_history/collected>` |
  209. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  210. | :ref:`int<class_int>` | :ref:`privacy/collected_data/browsing_history/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/browsing_history/collection_purposes>` |
  211. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  212. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/browsing_history/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/browsing_history/linked_to_user>` |
  213. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  214. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/browsing_history/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/browsing_history/used_for_tracking>` |
  215. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  216. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/coarse_location/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/coarse_location/collected>` |
  217. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  218. | :ref:`int<class_int>` | :ref:`privacy/collected_data/coarse_location/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/coarse_location/collection_purposes>` |
  219. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  220. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/coarse_location/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/coarse_location/linked_to_user>` |
  221. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  222. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/coarse_location/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/coarse_location/used_for_tracking>` |
  223. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  224. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/contacts/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/contacts/collected>` |
  225. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  226. | :ref:`int<class_int>` | :ref:`privacy/collected_data/contacts/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/contacts/collection_purposes>` |
  227. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  228. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/contacts/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/contacts/linked_to_user>` |
  229. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  230. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/contacts/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/contacts/used_for_tracking>` |
  231. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  232. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/crash_data/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/crash_data/collected>` |
  233. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  234. | :ref:`int<class_int>` | :ref:`privacy/collected_data/crash_data/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/crash_data/collection_purposes>` |
  235. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  236. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/crash_data/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/crash_data/linked_to_user>` |
  237. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  238. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/crash_data/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/crash_data/used_for_tracking>` |
  239. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  240. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/credit_info/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/credit_info/collected>` |
  241. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  242. | :ref:`int<class_int>` | :ref:`privacy/collected_data/credit_info/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/credit_info/collection_purposes>` |
  243. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  244. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/credit_info/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/credit_info/linked_to_user>` |
  245. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  246. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/credit_info/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/credit_info/used_for_tracking>` |
  247. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  248. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/customer_support/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/customer_support/collected>` |
  249. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  250. | :ref:`int<class_int>` | :ref:`privacy/collected_data/customer_support/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/customer_support/collection_purposes>` |
  251. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  252. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/customer_support/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/customer_support/linked_to_user>` |
  253. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  254. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/customer_support/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/customer_support/used_for_tracking>` |
  255. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  256. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/device_id/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/device_id/collected>` |
  257. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  258. | :ref:`int<class_int>` | :ref:`privacy/collected_data/device_id/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/device_id/collection_purposes>` |
  259. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  260. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/device_id/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/device_id/linked_to_user>` |
  261. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  262. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/device_id/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/device_id/used_for_tracking>` |
  263. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  264. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/email_address/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/email_address/collected>` |
  265. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  266. | :ref:`int<class_int>` | :ref:`privacy/collected_data/email_address/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/email_address/collection_purposes>` |
  267. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  268. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/email_address/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/email_address/linked_to_user>` |
  269. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  270. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/email_address/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/email_address/used_for_tracking>` |
  271. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  272. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/emails_or_text_messages/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/emails_or_text_messages/collected>` |
  273. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  274. | :ref:`int<class_int>` | :ref:`privacy/collected_data/emails_or_text_messages/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/emails_or_text_messages/collection_purposes>` |
  275. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  276. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/emails_or_text_messages/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/emails_or_text_messages/linked_to_user>` |
  277. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  278. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/emails_or_text_messages/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/emails_or_text_messages/used_for_tracking>` |
  279. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  280. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/environment_scanning/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/environment_scanning/collected>` |
  281. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  282. | :ref:`int<class_int>` | :ref:`privacy/collected_data/environment_scanning/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/environment_scanning/collection_purposes>` |
  283. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  284. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/environment_scanning/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/environment_scanning/linked_to_user>` |
  285. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  286. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/environment_scanning/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/environment_scanning/used_for_tracking>` |
  287. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  288. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/fitness/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/fitness/collected>` |
  289. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  290. | :ref:`int<class_int>` | :ref:`privacy/collected_data/fitness/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/fitness/collection_purposes>` |
  291. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  292. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/fitness/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/fitness/linked_to_user>` |
  293. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  294. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/fitness/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/fitness/used_for_tracking>` |
  295. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  296. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/gameplay_content/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/gameplay_content/collected>` |
  297. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  298. | :ref:`int<class_int>` | :ref:`privacy/collected_data/gameplay_content/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/gameplay_content/collection_purposes>` |
  299. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  300. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/gameplay_content/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/gameplay_content/linked_to_user>` |
  301. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  302. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/gameplay_content/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/gameplay_content/used_for_tracking>` |
  303. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  304. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/hands/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/hands/collected>` |
  305. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  306. | :ref:`int<class_int>` | :ref:`privacy/collected_data/hands/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/hands/collection_purposes>` |
  307. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  308. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/hands/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/hands/linked_to_user>` |
  309. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  310. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/hands/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/hands/used_for_tracking>` |
  311. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  312. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/head/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/head/collected>` |
  313. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  314. | :ref:`int<class_int>` | :ref:`privacy/collected_data/head/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/head/collection_purposes>` |
  315. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  316. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/head/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/head/linked_to_user>` |
  317. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  318. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/head/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/head/used_for_tracking>` |
  319. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  320. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/health/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/health/collected>` |
  321. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  322. | :ref:`int<class_int>` | :ref:`privacy/collected_data/health/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/health/collection_purposes>` |
  323. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  324. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/health/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/health/linked_to_user>` |
  325. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  326. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/health/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/health/used_for_tracking>` |
  327. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  328. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/name/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/name/collected>` |
  329. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  330. | :ref:`int<class_int>` | :ref:`privacy/collected_data/name/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/name/collection_purposes>` |
  331. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  332. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/name/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/name/linked_to_user>` |
  333. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  334. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/name/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/name/used_for_tracking>` |
  335. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  336. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_contact_info/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/other_contact_info/collected>` |
  337. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  338. | :ref:`int<class_int>` | :ref:`privacy/collected_data/other_contact_info/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/other_contact_info/collection_purposes>` |
  339. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  340. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_contact_info/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/other_contact_info/linked_to_user>` |
  341. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  342. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_contact_info/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/other_contact_info/used_for_tracking>` |
  343. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  344. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_data_types/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/other_data_types/collected>` |
  345. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  346. | :ref:`int<class_int>` | :ref:`privacy/collected_data/other_data_types/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/other_data_types/collection_purposes>` |
  347. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  348. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_data_types/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/other_data_types/linked_to_user>` |
  349. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  350. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_data_types/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/other_data_types/used_for_tracking>` |
  351. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  352. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_diagnostic_data/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/other_diagnostic_data/collected>` |
  353. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  354. | :ref:`int<class_int>` | :ref:`privacy/collected_data/other_diagnostic_data/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/other_diagnostic_data/collection_purposes>` |
  355. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  356. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_diagnostic_data/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/other_diagnostic_data/linked_to_user>` |
  357. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  358. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_diagnostic_data/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/other_diagnostic_data/used_for_tracking>` |
  359. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  360. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_financial_info/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/other_financial_info/collected>` |
  361. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  362. | :ref:`int<class_int>` | :ref:`privacy/collected_data/other_financial_info/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/other_financial_info/collection_purposes>` |
  363. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  364. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_financial_info/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/other_financial_info/linked_to_user>` |
  365. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  366. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_financial_info/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/other_financial_info/used_for_tracking>` |
  367. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  368. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_usage_data/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/other_usage_data/collected>` |
  369. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  370. | :ref:`int<class_int>` | :ref:`privacy/collected_data/other_usage_data/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/other_usage_data/collection_purposes>` |
  371. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  372. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_usage_data/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/other_usage_data/linked_to_user>` |
  373. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  374. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_usage_data/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/other_usage_data/used_for_tracking>` |
  375. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  376. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_user_content/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/other_user_content/collected>` |
  377. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  378. | :ref:`int<class_int>` | :ref:`privacy/collected_data/other_user_content/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/other_user_content/collection_purposes>` |
  379. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  380. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_user_content/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/other_user_content/linked_to_user>` |
  381. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  382. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/other_user_content/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/other_user_content/used_for_tracking>` |
  383. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  384. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/payment_info/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/payment_info/collected>` |
  385. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  386. | :ref:`int<class_int>` | :ref:`privacy/collected_data/payment_info/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/payment_info/collection_purposes>` |
  387. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  388. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/payment_info/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/payment_info/linked_to_user>` |
  389. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  390. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/payment_info/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/payment_info/used_for_tracking>` |
  391. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  392. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/performance_data/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/performance_data/collected>` |
  393. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  394. | :ref:`int<class_int>` | :ref:`privacy/collected_data/performance_data/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/performance_data/collection_purposes>` |
  395. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  396. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/performance_data/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/performance_data/linked_to_user>` |
  397. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  398. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/performance_data/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/performance_data/used_for_tracking>` |
  399. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  400. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/phone_number/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/phone_number/collected>` |
  401. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  402. | :ref:`int<class_int>` | :ref:`privacy/collected_data/phone_number/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/phone_number/collection_purposes>` |
  403. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  404. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/phone_number/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/phone_number/linked_to_user>` |
  405. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  406. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/phone_number/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/phone_number/used_for_tracking>` |
  407. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  408. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/photos_or_videos/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/photos_or_videos/collected>` |
  409. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  410. | :ref:`int<class_int>` | :ref:`privacy/collected_data/photos_or_videos/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/photos_or_videos/collection_purposes>` |
  411. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  412. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/photos_or_videos/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/photos_or_videos/linked_to_user>` |
  413. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  414. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/photos_or_videos/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/photos_or_videos/used_for_tracking>` |
  415. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  416. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/physical_address/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/physical_address/collected>` |
  417. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  418. | :ref:`int<class_int>` | :ref:`privacy/collected_data/physical_address/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/physical_address/collection_purposes>` |
  419. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  420. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/physical_address/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/physical_address/linked_to_user>` |
  421. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  422. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/physical_address/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/physical_address/used_for_tracking>` |
  423. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  424. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/precise_location/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/precise_location/collected>` |
  425. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  426. | :ref:`int<class_int>` | :ref:`privacy/collected_data/precise_location/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/precise_location/collection_purposes>` |
  427. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  428. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/precise_location/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/precise_location/linked_to_user>` |
  429. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  430. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/precise_location/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/precise_location/used_for_tracking>` |
  431. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  432. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/product_interaction/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/product_interaction/collected>` |
  433. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  434. | :ref:`int<class_int>` | :ref:`privacy/collected_data/product_interaction/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/product_interaction/collection_purposes>` |
  435. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  436. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/product_interaction/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/product_interaction/linked_to_user>` |
  437. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  438. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/product_interaction/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/product_interaction/used_for_tracking>` |
  439. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  440. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/purchase_history/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/purchase_history/collected>` |
  441. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  442. | :ref:`int<class_int>` | :ref:`privacy/collected_data/purchase_history/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/purchase_history/collection_purposes>` |
  443. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  444. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/purchase_history/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/purchase_history/linked_to_user>` |
  445. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  446. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/purchase_history/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/purchase_history/used_for_tracking>` |
  447. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  448. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/search_hhistory/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/search_hhistory/collected>` |
  449. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  450. | :ref:`int<class_int>` | :ref:`privacy/collected_data/search_hhistory/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/search_hhistory/collection_purposes>` |
  451. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  452. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/search_hhistory/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/search_hhistory/linked_to_user>` |
  453. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  454. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/search_hhistory/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/search_hhistory/used_for_tracking>` |
  455. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  456. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/sensitive_info/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/sensitive_info/collected>` |
  457. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  458. | :ref:`int<class_int>` | :ref:`privacy/collected_data/sensitive_info/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/sensitive_info/collection_purposes>` |
  459. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  460. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/sensitive_info/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/sensitive_info/linked_to_user>` |
  461. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  462. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/sensitive_info/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/sensitive_info/used_for_tracking>` |
  463. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  464. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/user_id/collected<class_EditorExportPlatformIOS_property_privacy/collected_data/user_id/collected>` |
  465. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  466. | :ref:`int<class_int>` | :ref:`privacy/collected_data/user_id/collection_purposes<class_EditorExportPlatformIOS_property_privacy/collected_data/user_id/collection_purposes>` |
  467. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  468. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/user_id/linked_to_user<class_EditorExportPlatformIOS_property_privacy/collected_data/user_id/linked_to_user>` |
  469. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  470. | :ref:`bool<class_bool>` | :ref:`privacy/collected_data/user_id/used_for_tracking<class_EditorExportPlatformIOS_property_privacy/collected_data/user_id/used_for_tracking>` |
  471. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  472. | :ref:`int<class_int>` | :ref:`privacy/disk_space_access_reasons<class_EditorExportPlatformIOS_property_privacy/disk_space_access_reasons>` |
  473. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  474. | :ref:`int<class_int>` | :ref:`privacy/file_timestamp_access_reasons<class_EditorExportPlatformIOS_property_privacy/file_timestamp_access_reasons>` |
  475. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  476. | :ref:`String<class_String>` | :ref:`privacy/microphone_usage_description<class_EditorExportPlatformIOS_property_privacy/microphone_usage_description>` |
  477. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  478. | :ref:`Dictionary<class_Dictionary>` | :ref:`privacy/microphone_usage_description_localized<class_EditorExportPlatformIOS_property_privacy/microphone_usage_description_localized>` |
  479. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  480. | :ref:`String<class_String>` | :ref:`privacy/photolibrary_usage_description<class_EditorExportPlatformIOS_property_privacy/photolibrary_usage_description>` |
  481. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  482. | :ref:`Dictionary<class_Dictionary>` | :ref:`privacy/photolibrary_usage_description_localized<class_EditorExportPlatformIOS_property_privacy/photolibrary_usage_description_localized>` |
  483. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  484. | :ref:`int<class_int>` | :ref:`privacy/system_boot_time_access_reasons<class_EditorExportPlatformIOS_property_privacy/system_boot_time_access_reasons>` |
  485. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  486. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`privacy/tracking_domains<class_EditorExportPlatformIOS_property_privacy/tracking_domains>` |
  487. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  488. | :ref:`bool<class_bool>` | :ref:`privacy/tracking_enabled<class_EditorExportPlatformIOS_property_privacy/tracking_enabled>` |
  489. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  490. | :ref:`int<class_int>` | :ref:`privacy/user_defaults_access_reasons<class_EditorExportPlatformIOS_property_privacy/user_defaults_access_reasons>` |
  491. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  492. | :ref:`Color<class_Color>` | :ref:`storyboard/custom_bg_color<class_EditorExportPlatformIOS_property_storyboard/custom_bg_color>` |
  493. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  494. | :ref:`String<class_String>` | :ref:`storyboard/custom_image@2x<class_EditorExportPlatformIOS_property_storyboard/custom_image@2x>` |
  495. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  496. | :ref:`String<class_String>` | :ref:`storyboard/custom_image@3x<class_EditorExportPlatformIOS_property_storyboard/custom_image@3x>` |
  497. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  498. | :ref:`int<class_int>` | :ref:`storyboard/image_scale_mode<class_EditorExportPlatformIOS_property_storyboard/image_scale_mode>` |
  499. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  500. | :ref:`bool<class_bool>` | :ref:`storyboard/use_custom_bg_color<class_EditorExportPlatformIOS_property_storyboard/use_custom_bg_color>` |
  501. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  502. | :ref:`bool<class_bool>` | :ref:`user_data/accessible_from_files_app<class_EditorExportPlatformIOS_property_user_data/accessible_from_files_app>` |
  503. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  504. | :ref:`bool<class_bool>` | :ref:`user_data/accessible_from_itunes_sharing<class_EditorExportPlatformIOS_property_user_data/accessible_from_itunes_sharing>` |
  505. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  506. .. rst-class:: classref-section-separator
  507. ----
  508. .. rst-class:: classref-descriptions-group
  509. Property Descriptions
  510. ---------------------
  511. .. _class_EditorExportPlatformIOS_property_application/additional_plist_content:
  512. .. rst-class:: classref-property
  513. :ref:`String<class_String>` **application/additional_plist_content** :ref:`🔗<class_EditorExportPlatformIOS_property_application/additional_plist_content>`
  514. 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.:
  515. .. code:: text
  516. <key>key_name</key>
  517. <string>value</string>
  518. .. rst-class:: classref-item-separator
  519. ----
  520. .. _class_EditorExportPlatformIOS_property_application/app_store_team_id:
  521. .. rst-class:: classref-property
  522. :ref:`String<class_String>` **application/app_store_team_id** :ref:`🔗<class_EditorExportPlatformIOS_property_application/app_store_team_id>`
  523. 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>`__.
  524. .. rst-class:: classref-item-separator
  525. ----
  526. .. _class_EditorExportPlatformIOS_property_application/bundle_identifier:
  527. .. rst-class:: classref-property
  528. :ref:`String<class_String>` **application/bundle_identifier** :ref:`🔗<class_EditorExportPlatformIOS_property_application/bundle_identifier>`
  529. Unique application identifier in a reverse-DNS format, can only contain alphanumeric characters (``A-Z``, ``a-z``, and ``0-9``), hyphens (``-``), and periods (``.``).
  530. .. rst-class:: classref-item-separator
  531. ----
  532. .. _class_EditorExportPlatformIOS_property_application/code_sign_identity_debug:
  533. .. rst-class:: classref-property
  534. :ref:`String<class_String>` **application/code_sign_identity_debug** :ref:`🔗<class_EditorExportPlatformIOS_property_application/code_sign_identity_debug>`
  535. The "Full Name", "Common Name" or SHA-1 hash of the signing identity used for debug export.
  536. .. rst-class:: classref-item-separator
  537. ----
  538. .. _class_EditorExportPlatformIOS_property_application/code_sign_identity_release:
  539. .. rst-class:: classref-property
  540. :ref:`String<class_String>` **application/code_sign_identity_release** :ref:`🔗<class_EditorExportPlatformIOS_property_application/code_sign_identity_release>`
  541. The "Full Name", "Common Name" or SHA-1 hash of the signing identity used for release export.
  542. .. rst-class:: classref-item-separator
  543. ----
  544. .. _class_EditorExportPlatformIOS_property_application/delete_old_export_files_unconditionally:
  545. .. rst-class:: classref-property
  546. :ref:`bool<class_bool>` **application/delete_old_export_files_unconditionally** :ref:`🔗<class_EditorExportPlatformIOS_property_application/delete_old_export_files_unconditionally>`
  547. If ``true``, existing "project name" and "project name.xcodeproj" in the export destination directory will be unconditionally deleted during export.
  548. .. rst-class:: classref-item-separator
  549. ----
  550. .. _class_EditorExportPlatformIOS_property_application/export_method_debug:
  551. .. rst-class:: classref-property
  552. :ref:`int<class_int>` **application/export_method_debug** :ref:`🔗<class_EditorExportPlatformIOS_property_application/export_method_debug>`
  553. Application distribution target (debug export).
  554. .. rst-class:: classref-item-separator
  555. ----
  556. .. _class_EditorExportPlatformIOS_property_application/export_method_release:
  557. .. rst-class:: classref-property
  558. :ref:`int<class_int>` **application/export_method_release** :ref:`🔗<class_EditorExportPlatformIOS_property_application/export_method_release>`
  559. Application distribution target (release export).
  560. .. rst-class:: classref-item-separator
  561. ----
  562. .. _class_EditorExportPlatformIOS_property_application/export_project_only:
  563. .. rst-class:: classref-property
  564. :ref:`bool<class_bool>` **application/export_project_only** :ref:`🔗<class_EditorExportPlatformIOS_property_application/export_project_only>`
  565. 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``.
  566. .. rst-class:: classref-item-separator
  567. ----
  568. .. _class_EditorExportPlatformIOS_property_application/generate_simulator_library_if_missing:
  569. .. rst-class:: classref-property
  570. :ref:`bool<class_bool>` **application/generate_simulator_library_if_missing** :ref:`🔗<class_EditorExportPlatformIOS_property_application/generate_simulator_library_if_missing>`
  571. If ``true``, and ARM64 simulator library is missing from the export template, it is automatically generated from ARM64 device library.
  572. .. rst-class:: classref-item-separator
  573. ----
  574. .. _class_EditorExportPlatformIOS_property_application/icon_interpolation:
  575. .. rst-class:: classref-property
  576. :ref:`int<class_int>` **application/icon_interpolation** :ref:`🔗<class_EditorExportPlatformIOS_property_application/icon_interpolation>`
  577. Interpolation method used to resize application icon.
  578. .. rst-class:: classref-item-separator
  579. ----
  580. .. _class_EditorExportPlatformIOS_property_application/min_ios_version:
  581. .. rst-class:: classref-property
  582. :ref:`String<class_String>` **application/min_ios_version** :ref:`🔗<class_EditorExportPlatformIOS_property_application/min_ios_version>`
  583. Minimum version of iOS required for this application to run in the ``major.minor.patch`` or ``major.minor`` format, can only contain numeric characters (``0-9``) and periods (``.``).
  584. .. rst-class:: classref-item-separator
  585. ----
  586. .. _class_EditorExportPlatformIOS_property_application/provisioning_profile_specifier_debug:
  587. .. rst-class:: classref-property
  588. :ref:`String<class_String>` **application/provisioning_profile_specifier_debug** :ref:`🔗<class_EditorExportPlatformIOS_property_application/provisioning_profile_specifier_debug>`
  589. 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>`__.
  590. Can be overridden with the environment variable ``GODOT_IOS_PROFILE_SPECIFIER_DEBUG``.
  591. .. rst-class:: classref-item-separator
  592. ----
  593. .. _class_EditorExportPlatformIOS_property_application/provisioning_profile_specifier_release:
  594. .. rst-class:: classref-property
  595. :ref:`String<class_String>` **application/provisioning_profile_specifier_release** :ref:`🔗<class_EditorExportPlatformIOS_property_application/provisioning_profile_specifier_release>`
  596. 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>`__.
  597. Can be overridden with the environment variable ``GODOT_IOS_PROFILE_SPECIFIER_RELEASE``.
  598. .. rst-class:: classref-item-separator
  599. ----
  600. .. _class_EditorExportPlatformIOS_property_application/provisioning_profile_uuid_debug:
  601. .. rst-class:: classref-property
  602. :ref:`String<class_String>` **application/provisioning_profile_uuid_debug** :ref:`🔗<class_EditorExportPlatformIOS_property_application/provisioning_profile_uuid_debug>`
  603. 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>`__.
  604. Can be overridden with the environment variable ``GODOT_IOS_PROVISIONING_PROFILE_UUID_DEBUG``.
  605. .. rst-class:: classref-item-separator
  606. ----
  607. .. _class_EditorExportPlatformIOS_property_application/provisioning_profile_uuid_release:
  608. .. rst-class:: classref-property
  609. :ref:`String<class_String>` **application/provisioning_profile_uuid_release** :ref:`🔗<class_EditorExportPlatformIOS_property_application/provisioning_profile_uuid_release>`
  610. 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>`__.
  611. Can be overridden with the environment variable ``GODOT_IOS_PROVISIONING_PROFILE_UUID_RELEASE``.
  612. .. rst-class:: classref-item-separator
  613. ----
  614. .. _class_EditorExportPlatformIOS_property_application/short_version:
  615. .. rst-class:: classref-property
  616. :ref:`String<class_String>` **application/short_version** :ref:`🔗<class_EditorExportPlatformIOS_property_application/short_version>`
  617. 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.
  618. .. rst-class:: classref-item-separator
  619. ----
  620. .. _class_EditorExportPlatformIOS_property_application/signature:
  621. .. rst-class:: classref-property
  622. :ref:`String<class_String>` **application/signature** :ref:`🔗<class_EditorExportPlatformIOS_property_application/signature>`
  623. A four-character creator code that is specific to the bundle. Optional.
  624. .. rst-class:: classref-item-separator
  625. ----
  626. .. _class_EditorExportPlatformIOS_property_application/targeted_device_family:
  627. .. rst-class:: classref-property
  628. :ref:`int<class_int>` **application/targeted_device_family** :ref:`🔗<class_EditorExportPlatformIOS_property_application/targeted_device_family>`
  629. Supported device family.
  630. .. rst-class:: classref-item-separator
  631. ----
  632. .. _class_EditorExportPlatformIOS_property_application/version:
  633. .. rst-class:: classref-property
  634. :ref:`String<class_String>` **application/version** :ref:`🔗<class_EditorExportPlatformIOS_property_application/version>`
  635. 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.
  636. .. rst-class:: classref-item-separator
  637. ----
  638. .. _class_EditorExportPlatformIOS_property_architectures/arm64:
  639. .. rst-class:: classref-property
  640. :ref:`bool<class_bool>` **architectures/arm64** :ref:`🔗<class_EditorExportPlatformIOS_property_architectures/arm64>`
  641. If ``true``, ``arm64`` binaries are included into exported project.
  642. .. rst-class:: classref-item-separator
  643. ----
  644. .. _class_EditorExportPlatformIOS_property_capabilities/access_wifi:
  645. .. rst-class:: classref-property
  646. :ref:`bool<class_bool>` **capabilities/access_wifi** :ref:`🔗<class_EditorExportPlatformIOS_property_capabilities/access_wifi>`
  647. If ``true``, networking features related to Wi-Fi access are enabled. See `Required Device Capabilities <https://developer.apple.com/support/required-device-capabilities/>`__.
  648. .. rst-class:: classref-item-separator
  649. ----
  650. .. _class_EditorExportPlatformIOS_property_capabilities/additional:
  651. .. rst-class:: classref-property
  652. :ref:`PackedStringArray<class_PackedStringArray>` **capabilities/additional** :ref:`🔗<class_EditorExportPlatformIOS_property_capabilities/additional>`
  653. Additional data added to the ``UIRequiredDeviceCapabilities`` array of the ``Info.plist`` file.
  654. **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.
  655. .. rst-class:: classref-item-separator
  656. ----
  657. .. _class_EditorExportPlatformIOS_property_capabilities/performance_a12:
  658. .. rst-class:: classref-property
  659. :ref:`bool<class_bool>` **capabilities/performance_a12** :ref:`🔗<class_EditorExportPlatformIOS_property_capabilities/performance_a12>`
  660. Requires the graphics performance and features of the A12 Bionic and later chips (devices supporting all Vulkan renderer features).
  661. Enabling this option limits supported devices to: iPhone XS, iPhone XR, iPad Mini (5th gen.), iPad Air (3rd gen.), iPad (8th gen) and newer.
  662. .. rst-class:: classref-item-separator
  663. ----
  664. .. _class_EditorExportPlatformIOS_property_capabilities/performance_gaming_tier:
  665. .. rst-class:: classref-property
  666. :ref:`bool<class_bool>` **capabilities/performance_gaming_tier** :ref:`🔗<class_EditorExportPlatformIOS_property_capabilities/performance_gaming_tier>`
  667. Requires the graphics performance and features of the A17 Pro and later chips.
  668. Enabling this option limits supported devices to: iPhone 15 Pro and newer.
  669. .. rst-class:: classref-item-separator
  670. ----
  671. .. _class_EditorExportPlatformIOS_property_custom_template/debug:
  672. .. rst-class:: classref-property
  673. :ref:`String<class_String>` **custom_template/debug** :ref:`🔗<class_EditorExportPlatformIOS_property_custom_template/debug>`
  674. Path to the custom export template. If left empty, default template is used.
  675. .. rst-class:: classref-item-separator
  676. ----
  677. .. _class_EditorExportPlatformIOS_property_custom_template/release:
  678. .. rst-class:: classref-property
  679. :ref:`String<class_String>` **custom_template/release** :ref:`🔗<class_EditorExportPlatformIOS_property_custom_template/release>`
  680. Path to the custom export template. If left empty, default template is used.
  681. .. rst-class:: classref-item-separator
  682. ----
  683. .. _class_EditorExportPlatformIOS_property_entitlements/additional:
  684. .. rst-class:: classref-property
  685. :ref:`String<class_String>` **entitlements/additional** :ref:`🔗<class_EditorExportPlatformIOS_property_entitlements/additional>`
  686. 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:
  687. .. code:: text
  688. <key>key_name</key>
  689. <string>value</string>
  690. .. rst-class:: classref-item-separator
  691. ----
  692. .. _class_EditorExportPlatformIOS_property_entitlements/game_center:
  693. .. rst-class:: classref-property
  694. :ref:`bool<class_bool>` **entitlements/game_center** :ref:`🔗<class_EditorExportPlatformIOS_property_entitlements/game_center>`
  695. Enable to allow access to Game Center features. `com.apple.developer.game-center <https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_developer_game-center>`__.
  696. .. rst-class:: classref-item-separator
  697. ----
  698. .. _class_EditorExportPlatformIOS_property_entitlements/increased_memory_limit:
  699. .. rst-class:: classref-property
  700. :ref:`bool<class_bool>` **entitlements/increased_memory_limit** :ref:`🔗<class_EditorExportPlatformIOS_property_entitlements/increased_memory_limit>`
  701. Enable if app may perform better with a higher memory limit. `com.apple.developer.kernel.increased-memory-limit <https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_developer_kernel_increased-memory-limit>`__.
  702. .. rst-class:: classref-item-separator
  703. ----
  704. .. _class_EditorExportPlatformIOS_property_entitlements/push_notifications:
  705. .. rst-class:: classref-property
  706. :ref:`String<class_String>` **entitlements/push_notifications** :ref:`🔗<class_EditorExportPlatformIOS_property_entitlements/push_notifications>`
  707. Environment for Apple Push Notification service. See `aps-environment <https://developer.apple.com/documentation/bundleresources/entitlements/aps-environment>`__.
  708. .. rst-class:: classref-item-separator
  709. ----
  710. .. _class_EditorExportPlatformIOS_property_icons/app_store_1024x1024:
  711. .. rst-class:: classref-property
  712. :ref:`String<class_String>` **icons/app_store_1024x1024** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/app_store_1024x1024>`
  713. App Store application icon file. 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>`__.
  714. .. rst-class:: classref-item-separator
  715. ----
  716. .. _class_EditorExportPlatformIOS_property_icons/app_store_1024x1024_dark:
  717. .. rst-class:: classref-property
  718. :ref:`String<class_String>` **icons/app_store_1024x1024_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/app_store_1024x1024_dark>`
  719. App Store application icon file, dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  720. .. rst-class:: classref-item-separator
  721. ----
  722. .. _class_EditorExportPlatformIOS_property_icons/app_store_1024x1024_tinted:
  723. .. rst-class:: classref-property
  724. :ref:`String<class_String>` **icons/app_store_1024x1024_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/app_store_1024x1024_tinted>`
  725. App Store application icon file, tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  726. .. rst-class:: classref-item-separator
  727. ----
  728. .. _class_EditorExportPlatformIOS_property_icons/icon_1024x1024:
  729. .. rst-class:: classref-property
  730. :ref:`String<class_String>` **icons/icon_1024x1024** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/icon_1024x1024>`
  731. 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>`__.
  732. .. rst-class:: classref-item-separator
  733. ----
  734. .. _class_EditorExportPlatformIOS_property_icons/icon_1024x1024_dark:
  735. .. rst-class:: classref-property
  736. :ref:`String<class_String>` **icons/icon_1024x1024_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/icon_1024x1024_dark>`
  737. Base application icon used to generate other icons, dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  738. .. rst-class:: classref-item-separator
  739. ----
  740. .. _class_EditorExportPlatformIOS_property_icons/icon_1024x1024_tinted:
  741. .. rst-class:: classref-property
  742. :ref:`String<class_String>` **icons/icon_1024x1024_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/icon_1024x1024_tinted>`
  743. Base application icon used to generate other icons, tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  744. .. rst-class:: classref-item-separator
  745. ----
  746. .. _class_EditorExportPlatformIOS_property_icons/ios_128x128:
  747. .. rst-class:: classref-property
  748. :ref:`String<class_String>` **icons/ios_128x128** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ios_128x128>`
  749. iOS application 64x64 icon file (2x DPI). 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>`__.
  750. .. rst-class:: classref-item-separator
  751. ----
  752. .. _class_EditorExportPlatformIOS_property_icons/ios_128x128_dark:
  753. .. rst-class:: classref-property
  754. :ref:`String<class_String>` **icons/ios_128x128_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ios_128x128_dark>`
  755. iOS application 64x64 icon file (2x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  756. .. rst-class:: classref-item-separator
  757. ----
  758. .. _class_EditorExportPlatformIOS_property_icons/ios_128x128_tinted:
  759. .. rst-class:: classref-property
  760. :ref:`String<class_String>` **icons/ios_128x128_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ios_128x128_tinted>`
  761. iOS application 64x64 icon file (2x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  762. .. rst-class:: classref-item-separator
  763. ----
  764. .. _class_EditorExportPlatformIOS_property_icons/ios_136x136:
  765. .. rst-class:: classref-property
  766. :ref:`String<class_String>` **icons/ios_136x136** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ios_136x136>`
  767. iOS application 68x68 icon file (2x DPI). 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>`__.
  768. .. rst-class:: classref-item-separator
  769. ----
  770. .. _class_EditorExportPlatformIOS_property_icons/ios_136x136_dark:
  771. .. rst-class:: classref-property
  772. :ref:`String<class_String>` **icons/ios_136x136_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ios_136x136_dark>`
  773. iOS application 68x68 icon file (2x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  774. .. rst-class:: classref-item-separator
  775. ----
  776. .. _class_EditorExportPlatformIOS_property_icons/ios_136x136_tinted:
  777. .. rst-class:: classref-property
  778. :ref:`String<class_String>` **icons/ios_136x136_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ios_136x136_tinted>`
  779. iOS application 68x68 icon file (2x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  780. .. rst-class:: classref-item-separator
  781. ----
  782. .. _class_EditorExportPlatformIOS_property_icons/ios_192x192:
  783. .. rst-class:: classref-property
  784. :ref:`String<class_String>` **icons/ios_192x192** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ios_192x192>`
  785. iOS application 64x64 icon file (3x DPI). 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>`__.
  786. .. rst-class:: classref-item-separator
  787. ----
  788. .. _class_EditorExportPlatformIOS_property_icons/ios_192x192_dark:
  789. .. rst-class:: classref-property
  790. :ref:`String<class_String>` **icons/ios_192x192_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ios_192x192_dark>`
  791. iOS application 64x64 icon file (3x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  792. .. rst-class:: classref-item-separator
  793. ----
  794. .. _class_EditorExportPlatformIOS_property_icons/ios_192x192_tinted:
  795. .. rst-class:: classref-property
  796. :ref:`String<class_String>` **icons/ios_192x192_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ios_192x192_tinted>`
  797. iOS application 64x64 icon file (3x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  798. .. rst-class:: classref-item-separator
  799. ----
  800. .. _class_EditorExportPlatformIOS_property_icons/ipad_152x152:
  801. .. rst-class:: classref-property
  802. :ref:`String<class_String>` **icons/ipad_152x152** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ipad_152x152>`
  803. Home screen application icon file on iPad (2x DPI). 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>`__.
  804. .. rst-class:: classref-item-separator
  805. ----
  806. .. _class_EditorExportPlatformIOS_property_icons/ipad_152x152_dark:
  807. .. rst-class:: classref-property
  808. :ref:`String<class_String>` **icons/ipad_152x152_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ipad_152x152_dark>`
  809. Home screen application icon file on iPad (2x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  810. .. rst-class:: classref-item-separator
  811. ----
  812. .. _class_EditorExportPlatformIOS_property_icons/ipad_152x152_tinted:
  813. .. rst-class:: classref-property
  814. :ref:`String<class_String>` **icons/ipad_152x152_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ipad_152x152_tinted>`
  815. Home screen application icon file on iPad (2x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  816. .. rst-class:: classref-item-separator
  817. ----
  818. .. _class_EditorExportPlatformIOS_property_icons/ipad_167x167:
  819. .. rst-class:: classref-property
  820. :ref:`String<class_String>` **icons/ipad_167x167** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ipad_167x167>`
  821. Home screen application icon file on iPad (3x DPI). 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>`__.
  822. .. rst-class:: classref-item-separator
  823. ----
  824. .. _class_EditorExportPlatformIOS_property_icons/ipad_167x167_dark:
  825. .. rst-class:: classref-property
  826. :ref:`String<class_String>` **icons/ipad_167x167_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ipad_167x167_dark>`
  827. Home screen application icon file on iPad (3x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  828. .. rst-class:: classref-item-separator
  829. ----
  830. .. _class_EditorExportPlatformIOS_property_icons/ipad_167x167_tinted:
  831. .. rst-class:: classref-property
  832. :ref:`String<class_String>` **icons/ipad_167x167_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/ipad_167x167_tinted>`
  833. Home screen application icon file on iPad (3x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  834. .. rst-class:: classref-item-separator
  835. ----
  836. .. _class_EditorExportPlatformIOS_property_icons/iphone_120x120:
  837. .. rst-class:: classref-property
  838. :ref:`String<class_String>` **icons/iphone_120x120** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/iphone_120x120>`
  839. Home screen application icon file on iPhone (2x DPI). 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>`__.
  840. .. rst-class:: classref-item-separator
  841. ----
  842. .. _class_EditorExportPlatformIOS_property_icons/iphone_120x120_dark:
  843. .. rst-class:: classref-property
  844. :ref:`String<class_String>` **icons/iphone_120x120_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/iphone_120x120_dark>`
  845. Home screen application icon file on iPhone (2x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  846. .. rst-class:: classref-item-separator
  847. ----
  848. .. _class_EditorExportPlatformIOS_property_icons/iphone_120x120_tinted:
  849. .. rst-class:: classref-property
  850. :ref:`String<class_String>` **icons/iphone_120x120_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/iphone_120x120_tinted>`
  851. Home screen application icon file on iPhone (2x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  852. .. rst-class:: classref-item-separator
  853. ----
  854. .. _class_EditorExportPlatformIOS_property_icons/iphone_180x180:
  855. .. rst-class:: classref-property
  856. :ref:`String<class_String>` **icons/iphone_180x180** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/iphone_180x180>`
  857. Home screen application icon file on iPhone (3x DPI). 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>`__.
  858. .. rst-class:: classref-item-separator
  859. ----
  860. .. _class_EditorExportPlatformIOS_property_icons/iphone_180x180_dark:
  861. .. rst-class:: classref-property
  862. :ref:`String<class_String>` **icons/iphone_180x180_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/iphone_180x180_dark>`
  863. Home screen application icon file on iPhone (3x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  864. .. rst-class:: classref-item-separator
  865. ----
  866. .. _class_EditorExportPlatformIOS_property_icons/iphone_180x180_tinted:
  867. .. rst-class:: classref-property
  868. :ref:`String<class_String>` **icons/iphone_180x180_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/iphone_180x180_tinted>`
  869. Home screen application icon file on iPhone (3x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  870. .. rst-class:: classref-item-separator
  871. ----
  872. .. _class_EditorExportPlatformIOS_property_icons/notification_40x40:
  873. .. rst-class:: classref-property
  874. :ref:`String<class_String>` **icons/notification_40x40** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/notification_40x40>`
  875. Notification icon file on iPad and iPhone (2x DPI). 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>`__.
  876. .. rst-class:: classref-item-separator
  877. ----
  878. .. _class_EditorExportPlatformIOS_property_icons/notification_40x40_dark:
  879. .. rst-class:: classref-property
  880. :ref:`String<class_String>` **icons/notification_40x40_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/notification_40x40_dark>`
  881. Notification icon file on iPad and iPhone (2x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  882. .. rst-class:: classref-item-separator
  883. ----
  884. .. _class_EditorExportPlatformIOS_property_icons/notification_40x40_tinted:
  885. .. rst-class:: classref-property
  886. :ref:`String<class_String>` **icons/notification_40x40_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/notification_40x40_tinted>`
  887. Notification icon file on iPad and iPhone (2x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  888. .. rst-class:: classref-item-separator
  889. ----
  890. .. _class_EditorExportPlatformIOS_property_icons/notification_60x60:
  891. .. rst-class:: classref-property
  892. :ref:`String<class_String>` **icons/notification_60x60** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/notification_60x60>`
  893. Notification icon file on iPhone (3x DPI). 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>`__.
  894. .. rst-class:: classref-item-separator
  895. ----
  896. .. _class_EditorExportPlatformIOS_property_icons/notification_60x60_dark:
  897. .. rst-class:: classref-property
  898. :ref:`String<class_String>` **icons/notification_60x60_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/notification_60x60_dark>`
  899. Notification icon file on iPhone (3x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  900. .. rst-class:: classref-item-separator
  901. ----
  902. .. _class_EditorExportPlatformIOS_property_icons/notification_60x60_tinted:
  903. .. rst-class:: classref-property
  904. :ref:`String<class_String>` **icons/notification_60x60_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/notification_60x60_tinted>`
  905. Notification icon file on iPhone (3x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  906. .. rst-class:: classref-item-separator
  907. ----
  908. .. _class_EditorExportPlatformIOS_property_icons/notification_76x76:
  909. .. rst-class:: classref-property
  910. :ref:`String<class_String>` **icons/notification_76x76** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/notification_76x76>`
  911. Notification icon file on iPad and iPhone (2x DPI). 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>`__.
  912. .. rst-class:: classref-item-separator
  913. ----
  914. .. _class_EditorExportPlatformIOS_property_icons/notification_76x76_dark:
  915. .. rst-class:: classref-property
  916. :ref:`String<class_String>` **icons/notification_76x76_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/notification_76x76_dark>`
  917. Notification icon file on iPad and iPhone (2x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  918. .. rst-class:: classref-item-separator
  919. ----
  920. .. _class_EditorExportPlatformIOS_property_icons/notification_76x76_tinted:
  921. .. rst-class:: classref-property
  922. :ref:`String<class_String>` **icons/notification_76x76_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/notification_76x76_tinted>`
  923. Notification icon file on iPad and iPhone (2x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  924. .. rst-class:: classref-item-separator
  925. ----
  926. .. _class_EditorExportPlatformIOS_property_icons/notification_114x114:
  927. .. rst-class:: classref-property
  928. :ref:`String<class_String>` **icons/notification_114x114** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/notification_114x114>`
  929. Notification icon file on iPad and iPhone (3x DPI). 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>`__.
  930. .. rst-class:: classref-item-separator
  931. ----
  932. .. _class_EditorExportPlatformIOS_property_icons/notification_114x114_dark:
  933. .. rst-class:: classref-property
  934. :ref:`String<class_String>` **icons/notification_114x114_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/notification_114x114_dark>`
  935. Notification icon file on iPad and iPhone (3x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  936. .. rst-class:: classref-item-separator
  937. ----
  938. .. _class_EditorExportPlatformIOS_property_icons/notification_114x114_tinted:
  939. .. rst-class:: classref-property
  940. :ref:`String<class_String>` **icons/notification_114x114_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/notification_114x114_tinted>`
  941. Notification icon file on iPad and iPhone (3x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  942. .. rst-class:: classref-item-separator
  943. ----
  944. .. _class_EditorExportPlatformIOS_property_icons/settings_58x58:
  945. .. rst-class:: classref-property
  946. :ref:`String<class_String>` **icons/settings_58x58** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/settings_58x58>`
  947. Application settings icon file on iPad and iPhone (2x DPI). 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>`__.
  948. .. rst-class:: classref-item-separator
  949. ----
  950. .. _class_EditorExportPlatformIOS_property_icons/settings_58x58_dark:
  951. .. rst-class:: classref-property
  952. :ref:`String<class_String>` **icons/settings_58x58_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/settings_58x58_dark>`
  953. Application settings icon file on iPad and iPhone (2x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  954. .. rst-class:: classref-item-separator
  955. ----
  956. .. _class_EditorExportPlatformIOS_property_icons/settings_58x58_tinted:
  957. .. rst-class:: classref-property
  958. :ref:`String<class_String>` **icons/settings_58x58_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/settings_58x58_tinted>`
  959. Application settings icon file on iPad and iPhone (2x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  960. .. rst-class:: classref-item-separator
  961. ----
  962. .. _class_EditorExportPlatformIOS_property_icons/settings_87x87:
  963. .. rst-class:: classref-property
  964. :ref:`String<class_String>` **icons/settings_87x87** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/settings_87x87>`
  965. Application settings icon file on iPhone (3x DPI). 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>`__.
  966. .. rst-class:: classref-item-separator
  967. ----
  968. .. _class_EditorExportPlatformIOS_property_icons/settings_87x87_dark:
  969. .. rst-class:: classref-property
  970. :ref:`String<class_String>` **icons/settings_87x87_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/settings_87x87_dark>`
  971. Application settings icon file on iPhone (3x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  972. .. rst-class:: classref-item-separator
  973. ----
  974. .. _class_EditorExportPlatformIOS_property_icons/settings_87x87_tinted:
  975. .. rst-class:: classref-property
  976. :ref:`String<class_String>` **icons/settings_87x87_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/settings_87x87_tinted>`
  977. Application settings icon file on iPhone (3x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  978. .. rst-class:: classref-item-separator
  979. ----
  980. .. _class_EditorExportPlatformIOS_property_icons/spotlight_80x80:
  981. .. rst-class:: classref-property
  982. :ref:`String<class_String>` **icons/spotlight_80x80** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/spotlight_80x80>`
  983. Spotlight icon file on iPad and iPhone (2x DPI). 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>`__.
  984. .. rst-class:: classref-item-separator
  985. ----
  986. .. _class_EditorExportPlatformIOS_property_icons/spotlight_80x80_dark:
  987. .. rst-class:: classref-property
  988. :ref:`String<class_String>` **icons/spotlight_80x80_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/spotlight_80x80_dark>`
  989. Spotlight icon file on iPad and iPhone (2x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  990. .. rst-class:: classref-item-separator
  991. ----
  992. .. _class_EditorExportPlatformIOS_property_icons/spotlight_80x80_tinted:
  993. .. rst-class:: classref-property
  994. :ref:`String<class_String>` **icons/spotlight_80x80_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/spotlight_80x80_tinted>`
  995. Spotlight icon file on iPad and iPhone (2x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  996. .. rst-class:: classref-item-separator
  997. ----
  998. .. _class_EditorExportPlatformIOS_property_icons/spotlight_120x120:
  999. .. rst-class:: classref-property
  1000. :ref:`String<class_String>` **icons/spotlight_120x120** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/spotlight_120x120>`
  1001. Spotlight icon file on iPad and iPhone (3x DPI). 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>`__.
  1002. .. rst-class:: classref-item-separator
  1003. ----
  1004. .. _class_EditorExportPlatformIOS_property_icons/spotlight_120x120_dark:
  1005. .. rst-class:: classref-property
  1006. :ref:`String<class_String>` **icons/spotlight_120x120_dark** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/spotlight_120x120_dark>`
  1007. Spotlight icon file on iPad and iPhone (3x DPI), dark version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  1008. .. rst-class:: classref-item-separator
  1009. ----
  1010. .. _class_EditorExportPlatformIOS_property_icons/spotlight_120x120_tinted:
  1011. .. rst-class:: classref-property
  1012. :ref:`String<class_String>` **icons/spotlight_120x120_tinted** :ref:`🔗<class_EditorExportPlatformIOS_property_icons/spotlight_120x120_tinted>`
  1013. Spotlight icon file on iPad and iPhone (3x DPI), tinted version. See `App icons <https://developer.apple.com/design/human-interface-guidelines/foundations/app-icons>`__.
  1014. .. rst-class:: classref-item-separator
  1015. ----
  1016. .. _class_EditorExportPlatformIOS_property_privacy/active_keyboard_access_reasons:
  1017. .. rst-class:: classref-property
  1018. :ref:`int<class_int>` **privacy/active_keyboard_access_reasons** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/active_keyboard_access_reasons>`
  1019. 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>`__.
  1020. .. rst-class:: classref-item-separator
  1021. ----
  1022. .. _class_EditorExportPlatformIOS_property_privacy/camera_usage_description:
  1023. .. rst-class:: classref-property
  1024. :ref:`String<class_String>` **privacy/camera_usage_description** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/camera_usage_description>`
  1025. A message displayed when requesting access to the device's camera (in English).
  1026. .. rst-class:: classref-item-separator
  1027. ----
  1028. .. _class_EditorExportPlatformIOS_property_privacy/camera_usage_description_localized:
  1029. .. rst-class:: classref-property
  1030. :ref:`Dictionary<class_Dictionary>` **privacy/camera_usage_description_localized** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/camera_usage_description_localized>`
  1031. A message displayed when requesting access to the device's camera (localized).
  1032. .. rst-class:: classref-item-separator
  1033. ----
  1034. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/advertising_data/collected:
  1035. .. rst-class:: classref-property
  1036. :ref:`bool<class_bool>` **privacy/collected_data/advertising_data/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/advertising_data/collected>`
  1037. Indicates whether your app collects advertising data.
  1038. .. rst-class:: classref-item-separator
  1039. ----
  1040. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/advertising_data/collection_purposes:
  1041. .. rst-class:: classref-property
  1042. :ref:`int<class_int>` **privacy/collected_data/advertising_data/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/advertising_data/collection_purposes>`
  1043. 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>`__.
  1044. .. rst-class:: classref-item-separator
  1045. ----
  1046. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/advertising_data/linked_to_user:
  1047. .. rst-class:: classref-property
  1048. :ref:`bool<class_bool>` **privacy/collected_data/advertising_data/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/advertising_data/linked_to_user>`
  1049. Indicates whether your app links advertising data to the user's identity.
  1050. .. rst-class:: classref-item-separator
  1051. ----
  1052. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/advertising_data/used_for_tracking:
  1053. .. rst-class:: classref-property
  1054. :ref:`bool<class_bool>` **privacy/collected_data/advertising_data/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/advertising_data/used_for_tracking>`
  1055. Indicates whether your app uses advertising data for tracking.
  1056. .. rst-class:: classref-item-separator
  1057. ----
  1058. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/audio_data/collected:
  1059. .. rst-class:: classref-property
  1060. :ref:`bool<class_bool>` **privacy/collected_data/audio_data/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/audio_data/collected>`
  1061. Indicates whether your app collects audio data.
  1062. .. rst-class:: classref-item-separator
  1063. ----
  1064. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/audio_data/collection_purposes:
  1065. .. rst-class:: classref-property
  1066. :ref:`int<class_int>` **privacy/collected_data/audio_data/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/audio_data/collection_purposes>`
  1067. 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>`__.
  1068. .. rst-class:: classref-item-separator
  1069. ----
  1070. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/audio_data/linked_to_user:
  1071. .. rst-class:: classref-property
  1072. :ref:`bool<class_bool>` **privacy/collected_data/audio_data/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/audio_data/linked_to_user>`
  1073. Indicates whether your app links audio data to the user's identity.
  1074. .. rst-class:: classref-item-separator
  1075. ----
  1076. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/audio_data/used_for_tracking:
  1077. .. rst-class:: classref-property
  1078. :ref:`bool<class_bool>` **privacy/collected_data/audio_data/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/audio_data/used_for_tracking>`
  1079. Indicates whether your app uses audio data for tracking.
  1080. .. rst-class:: classref-item-separator
  1081. ----
  1082. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/browsing_history/collected:
  1083. .. rst-class:: classref-property
  1084. :ref:`bool<class_bool>` **privacy/collected_data/browsing_history/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/browsing_history/collected>`
  1085. Indicates whether your app collects browsing history.
  1086. .. rst-class:: classref-item-separator
  1087. ----
  1088. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/browsing_history/collection_purposes:
  1089. .. rst-class:: classref-property
  1090. :ref:`int<class_int>` **privacy/collected_data/browsing_history/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/browsing_history/collection_purposes>`
  1091. 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>`__.
  1092. .. rst-class:: classref-item-separator
  1093. ----
  1094. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/browsing_history/linked_to_user:
  1095. .. rst-class:: classref-property
  1096. :ref:`bool<class_bool>` **privacy/collected_data/browsing_history/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/browsing_history/linked_to_user>`
  1097. Indicates whether your app links browsing history to the user's identity.
  1098. .. rst-class:: classref-item-separator
  1099. ----
  1100. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/browsing_history/used_for_tracking:
  1101. .. rst-class:: classref-property
  1102. :ref:`bool<class_bool>` **privacy/collected_data/browsing_history/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/browsing_history/used_for_tracking>`
  1103. Indicates whether your app uses browsing history for tracking.
  1104. .. rst-class:: classref-item-separator
  1105. ----
  1106. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/coarse_location/collected:
  1107. .. rst-class:: classref-property
  1108. :ref:`bool<class_bool>` **privacy/collected_data/coarse_location/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/coarse_location/collected>`
  1109. Indicates whether your app collects coarse location data.
  1110. .. rst-class:: classref-item-separator
  1111. ----
  1112. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/coarse_location/collection_purposes:
  1113. .. rst-class:: classref-property
  1114. :ref:`int<class_int>` **privacy/collected_data/coarse_location/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/coarse_location/collection_purposes>`
  1115. 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>`__.
  1116. .. rst-class:: classref-item-separator
  1117. ----
  1118. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/coarse_location/linked_to_user:
  1119. .. rst-class:: classref-property
  1120. :ref:`bool<class_bool>` **privacy/collected_data/coarse_location/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/coarse_location/linked_to_user>`
  1121. Indicates whether your app links coarse location data to the user's identity.
  1122. .. rst-class:: classref-item-separator
  1123. ----
  1124. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/coarse_location/used_for_tracking:
  1125. .. rst-class:: classref-property
  1126. :ref:`bool<class_bool>` **privacy/collected_data/coarse_location/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/coarse_location/used_for_tracking>`
  1127. Indicates whether your app uses coarse location data for tracking.
  1128. .. rst-class:: classref-item-separator
  1129. ----
  1130. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/contacts/collected:
  1131. .. rst-class:: classref-property
  1132. :ref:`bool<class_bool>` **privacy/collected_data/contacts/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/contacts/collected>`
  1133. Indicates whether your app collects contacts.
  1134. .. rst-class:: classref-item-separator
  1135. ----
  1136. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/contacts/collection_purposes:
  1137. .. rst-class:: classref-property
  1138. :ref:`int<class_int>` **privacy/collected_data/contacts/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/contacts/collection_purposes>`
  1139. 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>`__.
  1140. .. rst-class:: classref-item-separator
  1141. ----
  1142. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/contacts/linked_to_user:
  1143. .. rst-class:: classref-property
  1144. :ref:`bool<class_bool>` **privacy/collected_data/contacts/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/contacts/linked_to_user>`
  1145. Indicates whether your app links contacts to the user's identity.
  1146. .. rst-class:: classref-item-separator
  1147. ----
  1148. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/contacts/used_for_tracking:
  1149. .. rst-class:: classref-property
  1150. :ref:`bool<class_bool>` **privacy/collected_data/contacts/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/contacts/used_for_tracking>`
  1151. Indicates whether your app uses contacts for tracking.
  1152. .. rst-class:: classref-item-separator
  1153. ----
  1154. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/crash_data/collected:
  1155. .. rst-class:: classref-property
  1156. :ref:`bool<class_bool>` **privacy/collected_data/crash_data/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/crash_data/collected>`
  1157. Indicates whether your app collects crash data.
  1158. .. rst-class:: classref-item-separator
  1159. ----
  1160. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/crash_data/collection_purposes:
  1161. .. rst-class:: classref-property
  1162. :ref:`int<class_int>` **privacy/collected_data/crash_data/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/crash_data/collection_purposes>`
  1163. 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>`__.
  1164. .. rst-class:: classref-item-separator
  1165. ----
  1166. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/crash_data/linked_to_user:
  1167. .. rst-class:: classref-property
  1168. :ref:`bool<class_bool>` **privacy/collected_data/crash_data/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/crash_data/linked_to_user>`
  1169. Indicates whether your app links crash data to the user's identity.
  1170. .. rst-class:: classref-item-separator
  1171. ----
  1172. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/crash_data/used_for_tracking:
  1173. .. rst-class:: classref-property
  1174. :ref:`bool<class_bool>` **privacy/collected_data/crash_data/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/crash_data/used_for_tracking>`
  1175. Indicates whether your app uses crash data for tracking.
  1176. .. rst-class:: classref-item-separator
  1177. ----
  1178. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/credit_info/collected:
  1179. .. rst-class:: classref-property
  1180. :ref:`bool<class_bool>` **privacy/collected_data/credit_info/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/credit_info/collected>`
  1181. Indicates whether your app collects credit information.
  1182. .. rst-class:: classref-item-separator
  1183. ----
  1184. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/credit_info/collection_purposes:
  1185. .. rst-class:: classref-property
  1186. :ref:`int<class_int>` **privacy/collected_data/credit_info/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/credit_info/collection_purposes>`
  1187. 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>`__.
  1188. .. rst-class:: classref-item-separator
  1189. ----
  1190. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/credit_info/linked_to_user:
  1191. .. rst-class:: classref-property
  1192. :ref:`bool<class_bool>` **privacy/collected_data/credit_info/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/credit_info/linked_to_user>`
  1193. Indicates whether your app links credit information to the user's identity.
  1194. .. rst-class:: classref-item-separator
  1195. ----
  1196. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/credit_info/used_for_tracking:
  1197. .. rst-class:: classref-property
  1198. :ref:`bool<class_bool>` **privacy/collected_data/credit_info/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/credit_info/used_for_tracking>`
  1199. Indicates whether your app uses credit information for tracking.
  1200. .. rst-class:: classref-item-separator
  1201. ----
  1202. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/customer_support/collected:
  1203. .. rst-class:: classref-property
  1204. :ref:`bool<class_bool>` **privacy/collected_data/customer_support/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/customer_support/collected>`
  1205. Indicates whether your app collects customer support data.
  1206. .. rst-class:: classref-item-separator
  1207. ----
  1208. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/customer_support/collection_purposes:
  1209. .. rst-class:: classref-property
  1210. :ref:`int<class_int>` **privacy/collected_data/customer_support/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/customer_support/collection_purposes>`
  1211. 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>`__.
  1212. .. rst-class:: classref-item-separator
  1213. ----
  1214. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/customer_support/linked_to_user:
  1215. .. rst-class:: classref-property
  1216. :ref:`bool<class_bool>` **privacy/collected_data/customer_support/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/customer_support/linked_to_user>`
  1217. Indicates whether your app links customer support data to the user's identity.
  1218. .. rst-class:: classref-item-separator
  1219. ----
  1220. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/customer_support/used_for_tracking:
  1221. .. rst-class:: classref-property
  1222. :ref:`bool<class_bool>` **privacy/collected_data/customer_support/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/customer_support/used_for_tracking>`
  1223. Indicates whether your app uses customer support data for tracking.
  1224. .. rst-class:: classref-item-separator
  1225. ----
  1226. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/device_id/collected:
  1227. .. rst-class:: classref-property
  1228. :ref:`bool<class_bool>` **privacy/collected_data/device_id/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/device_id/collected>`
  1229. Indicates whether your app collects device IDs.
  1230. .. rst-class:: classref-item-separator
  1231. ----
  1232. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/device_id/collection_purposes:
  1233. .. rst-class:: classref-property
  1234. :ref:`int<class_int>` **privacy/collected_data/device_id/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/device_id/collection_purposes>`
  1235. 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>`__.
  1236. .. rst-class:: classref-item-separator
  1237. ----
  1238. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/device_id/linked_to_user:
  1239. .. rst-class:: classref-property
  1240. :ref:`bool<class_bool>` **privacy/collected_data/device_id/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/device_id/linked_to_user>`
  1241. Indicates whether your app links device IDs to the user's identity.
  1242. .. rst-class:: classref-item-separator
  1243. ----
  1244. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/device_id/used_for_tracking:
  1245. .. rst-class:: classref-property
  1246. :ref:`bool<class_bool>` **privacy/collected_data/device_id/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/device_id/used_for_tracking>`
  1247. Indicates whether your app uses device IDs for tracking.
  1248. .. rst-class:: classref-item-separator
  1249. ----
  1250. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/email_address/collected:
  1251. .. rst-class:: classref-property
  1252. :ref:`bool<class_bool>` **privacy/collected_data/email_address/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/email_address/collected>`
  1253. Indicates whether your app collects email address.
  1254. .. rst-class:: classref-item-separator
  1255. ----
  1256. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/email_address/collection_purposes:
  1257. .. rst-class:: classref-property
  1258. :ref:`int<class_int>` **privacy/collected_data/email_address/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/email_address/collection_purposes>`
  1259. 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>`__.
  1260. .. rst-class:: classref-item-separator
  1261. ----
  1262. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/email_address/linked_to_user:
  1263. .. rst-class:: classref-property
  1264. :ref:`bool<class_bool>` **privacy/collected_data/email_address/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/email_address/linked_to_user>`
  1265. Indicates whether your app links email address to the user's identity.
  1266. .. rst-class:: classref-item-separator
  1267. ----
  1268. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/email_address/used_for_tracking:
  1269. .. rst-class:: classref-property
  1270. :ref:`bool<class_bool>` **privacy/collected_data/email_address/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/email_address/used_for_tracking>`
  1271. Indicates whether your app uses email address for tracking.
  1272. .. rst-class:: classref-item-separator
  1273. ----
  1274. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/emails_or_text_messages/collected:
  1275. .. rst-class:: classref-property
  1276. :ref:`bool<class_bool>` **privacy/collected_data/emails_or_text_messages/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/emails_or_text_messages/collected>`
  1277. Indicates whether your app collects emails or text messages.
  1278. .. rst-class:: classref-item-separator
  1279. ----
  1280. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/emails_or_text_messages/collection_purposes:
  1281. .. rst-class:: classref-property
  1282. :ref:`int<class_int>` **privacy/collected_data/emails_or_text_messages/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/emails_or_text_messages/collection_purposes>`
  1283. 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>`__.
  1284. .. rst-class:: classref-item-separator
  1285. ----
  1286. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/emails_or_text_messages/linked_to_user:
  1287. .. rst-class:: classref-property
  1288. :ref:`bool<class_bool>` **privacy/collected_data/emails_or_text_messages/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/emails_or_text_messages/linked_to_user>`
  1289. Indicates whether your app links emails or text messages to the user's identity.
  1290. .. rst-class:: classref-item-separator
  1291. ----
  1292. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/emails_or_text_messages/used_for_tracking:
  1293. .. rst-class:: classref-property
  1294. :ref:`bool<class_bool>` **privacy/collected_data/emails_or_text_messages/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/emails_or_text_messages/used_for_tracking>`
  1295. Indicates whether your app uses emails or text messages for tracking.
  1296. .. rst-class:: classref-item-separator
  1297. ----
  1298. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/environment_scanning/collected:
  1299. .. rst-class:: classref-property
  1300. :ref:`bool<class_bool>` **privacy/collected_data/environment_scanning/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/environment_scanning/collected>`
  1301. Indicates whether your app collects environment scanning data.
  1302. .. rst-class:: classref-item-separator
  1303. ----
  1304. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/environment_scanning/collection_purposes:
  1305. .. rst-class:: classref-property
  1306. :ref:`int<class_int>` **privacy/collected_data/environment_scanning/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/environment_scanning/collection_purposes>`
  1307. 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>`__.
  1308. .. rst-class:: classref-item-separator
  1309. ----
  1310. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/environment_scanning/linked_to_user:
  1311. .. rst-class:: classref-property
  1312. :ref:`bool<class_bool>` **privacy/collected_data/environment_scanning/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/environment_scanning/linked_to_user>`
  1313. Indicates whether your app links environment scanning data to the user's identity.
  1314. .. rst-class:: classref-item-separator
  1315. ----
  1316. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/environment_scanning/used_for_tracking:
  1317. .. rst-class:: classref-property
  1318. :ref:`bool<class_bool>` **privacy/collected_data/environment_scanning/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/environment_scanning/used_for_tracking>`
  1319. Indicates whether your app uses environment scanning data for tracking.
  1320. .. rst-class:: classref-item-separator
  1321. ----
  1322. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/fitness/collected:
  1323. .. rst-class:: classref-property
  1324. :ref:`bool<class_bool>` **privacy/collected_data/fitness/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/fitness/collected>`
  1325. Indicates whether your app collects fitness and exercise data.
  1326. .. rst-class:: classref-item-separator
  1327. ----
  1328. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/fitness/collection_purposes:
  1329. .. rst-class:: classref-property
  1330. :ref:`int<class_int>` **privacy/collected_data/fitness/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/fitness/collection_purposes>`
  1331. 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>`__.
  1332. .. rst-class:: classref-item-separator
  1333. ----
  1334. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/fitness/linked_to_user:
  1335. .. rst-class:: classref-property
  1336. :ref:`bool<class_bool>` **privacy/collected_data/fitness/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/fitness/linked_to_user>`
  1337. Indicates whether your app links fitness and exercise data to the user's identity.
  1338. .. rst-class:: classref-item-separator
  1339. ----
  1340. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/fitness/used_for_tracking:
  1341. .. rst-class:: classref-property
  1342. :ref:`bool<class_bool>` **privacy/collected_data/fitness/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/fitness/used_for_tracking>`
  1343. Indicates whether your app uses fitness and exercise data for tracking.
  1344. .. rst-class:: classref-item-separator
  1345. ----
  1346. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/gameplay_content/collected:
  1347. .. rst-class:: classref-property
  1348. :ref:`bool<class_bool>` **privacy/collected_data/gameplay_content/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/gameplay_content/collected>`
  1349. Indicates whether your app collects gameplay content.
  1350. .. rst-class:: classref-item-separator
  1351. ----
  1352. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/gameplay_content/collection_purposes:
  1353. .. rst-class:: classref-property
  1354. :ref:`int<class_int>` **privacy/collected_data/gameplay_content/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/gameplay_content/collection_purposes>`
  1355. 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>`__.
  1356. .. rst-class:: classref-item-separator
  1357. ----
  1358. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/gameplay_content/linked_to_user:
  1359. .. rst-class:: classref-property
  1360. :ref:`bool<class_bool>` **privacy/collected_data/gameplay_content/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/gameplay_content/linked_to_user>`
  1361. Indicates whether your app links gameplay content to the user's identity.
  1362. .. rst-class:: classref-item-separator
  1363. ----
  1364. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/gameplay_content/used_for_tracking:
  1365. .. rst-class:: classref-property
  1366. :ref:`bool<class_bool>` **privacy/collected_data/gameplay_content/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/gameplay_content/used_for_tracking>`
  1367. Indicates whether your app uses gameplay content for tracking.
  1368. .. rst-class:: classref-item-separator
  1369. ----
  1370. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/hands/collected:
  1371. .. rst-class:: classref-property
  1372. :ref:`bool<class_bool>` **privacy/collected_data/hands/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/hands/collected>`
  1373. Indicates whether your app collects user's hand structure and hand movements.
  1374. .. rst-class:: classref-item-separator
  1375. ----
  1376. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/hands/collection_purposes:
  1377. .. rst-class:: classref-property
  1378. :ref:`int<class_int>` **privacy/collected_data/hands/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/hands/collection_purposes>`
  1379. 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>`__.
  1380. .. rst-class:: classref-item-separator
  1381. ----
  1382. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/hands/linked_to_user:
  1383. .. rst-class:: classref-property
  1384. :ref:`bool<class_bool>` **privacy/collected_data/hands/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/hands/linked_to_user>`
  1385. Indicates whether your app links user's hand structure and hand movements to the user's identity.
  1386. .. rst-class:: classref-item-separator
  1387. ----
  1388. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/hands/used_for_tracking:
  1389. .. rst-class:: classref-property
  1390. :ref:`bool<class_bool>` **privacy/collected_data/hands/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/hands/used_for_tracking>`
  1391. Indicates whether your app uses user's hand structure and hand movements for tracking.
  1392. .. rst-class:: classref-item-separator
  1393. ----
  1394. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/head/collected:
  1395. .. rst-class:: classref-property
  1396. :ref:`bool<class_bool>` **privacy/collected_data/head/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/head/collected>`
  1397. Indicates whether your app collects user's head movement.
  1398. .. rst-class:: classref-item-separator
  1399. ----
  1400. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/head/collection_purposes:
  1401. .. rst-class:: classref-property
  1402. :ref:`int<class_int>` **privacy/collected_data/head/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/head/collection_purposes>`
  1403. 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>`__.
  1404. .. rst-class:: classref-item-separator
  1405. ----
  1406. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/head/linked_to_user:
  1407. .. rst-class:: classref-property
  1408. :ref:`bool<class_bool>` **privacy/collected_data/head/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/head/linked_to_user>`
  1409. Indicates whether your app links user's head movement to the user's identity.
  1410. .. rst-class:: classref-item-separator
  1411. ----
  1412. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/head/used_for_tracking:
  1413. .. rst-class:: classref-property
  1414. :ref:`bool<class_bool>` **privacy/collected_data/head/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/head/used_for_tracking>`
  1415. Indicates whether your app uses user's head movement for tracking.
  1416. .. rst-class:: classref-item-separator
  1417. ----
  1418. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/health/collected:
  1419. .. rst-class:: classref-property
  1420. :ref:`bool<class_bool>` **privacy/collected_data/health/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/health/collected>`
  1421. Indicates whether your app collects health and medical data.
  1422. .. rst-class:: classref-item-separator
  1423. ----
  1424. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/health/collection_purposes:
  1425. .. rst-class:: classref-property
  1426. :ref:`int<class_int>` **privacy/collected_data/health/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/health/collection_purposes>`
  1427. 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>`__.
  1428. .. rst-class:: classref-item-separator
  1429. ----
  1430. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/health/linked_to_user:
  1431. .. rst-class:: classref-property
  1432. :ref:`bool<class_bool>` **privacy/collected_data/health/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/health/linked_to_user>`
  1433. Indicates whether your app links health and medical data to the user's identity.
  1434. .. rst-class:: classref-item-separator
  1435. ----
  1436. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/health/used_for_tracking:
  1437. .. rst-class:: classref-property
  1438. :ref:`bool<class_bool>` **privacy/collected_data/health/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/health/used_for_tracking>`
  1439. Indicates whether your app uses health and medical data for tracking.
  1440. .. rst-class:: classref-item-separator
  1441. ----
  1442. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/name/collected:
  1443. .. rst-class:: classref-property
  1444. :ref:`bool<class_bool>` **privacy/collected_data/name/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/name/collected>`
  1445. Indicates whether your app collects user's name.
  1446. .. rst-class:: classref-item-separator
  1447. ----
  1448. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/name/collection_purposes:
  1449. .. rst-class:: classref-property
  1450. :ref:`int<class_int>` **privacy/collected_data/name/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/name/collection_purposes>`
  1451. 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>`__.
  1452. .. rst-class:: classref-item-separator
  1453. ----
  1454. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/name/linked_to_user:
  1455. .. rst-class:: classref-property
  1456. :ref:`bool<class_bool>` **privacy/collected_data/name/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/name/linked_to_user>`
  1457. Indicates whether your app links user's name to the user's identity.
  1458. .. rst-class:: classref-item-separator
  1459. ----
  1460. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/name/used_for_tracking:
  1461. .. rst-class:: classref-property
  1462. :ref:`bool<class_bool>` **privacy/collected_data/name/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/name/used_for_tracking>`
  1463. Indicates whether your app uses user's name for tracking.
  1464. .. rst-class:: classref-item-separator
  1465. ----
  1466. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_contact_info/collected:
  1467. .. rst-class:: classref-property
  1468. :ref:`bool<class_bool>` **privacy/collected_data/other_contact_info/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_contact_info/collected>`
  1469. Indicates whether your app collects any other contact information.
  1470. .. rst-class:: classref-item-separator
  1471. ----
  1472. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_contact_info/collection_purposes:
  1473. .. rst-class:: classref-property
  1474. :ref:`int<class_int>` **privacy/collected_data/other_contact_info/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_contact_info/collection_purposes>`
  1475. 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>`__.
  1476. .. rst-class:: classref-item-separator
  1477. ----
  1478. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_contact_info/linked_to_user:
  1479. .. rst-class:: classref-property
  1480. :ref:`bool<class_bool>` **privacy/collected_data/other_contact_info/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_contact_info/linked_to_user>`
  1481. Indicates whether your app links any other contact information to the user's identity.
  1482. .. rst-class:: classref-item-separator
  1483. ----
  1484. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_contact_info/used_for_tracking:
  1485. .. rst-class:: classref-property
  1486. :ref:`bool<class_bool>` **privacy/collected_data/other_contact_info/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_contact_info/used_for_tracking>`
  1487. Indicates whether your app uses any other contact information for tracking.
  1488. .. rst-class:: classref-item-separator
  1489. ----
  1490. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_data_types/collected:
  1491. .. rst-class:: classref-property
  1492. :ref:`bool<class_bool>` **privacy/collected_data/other_data_types/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_data_types/collected>`
  1493. Indicates whether your app collects any other data.
  1494. .. rst-class:: classref-item-separator
  1495. ----
  1496. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_data_types/collection_purposes:
  1497. .. rst-class:: classref-property
  1498. :ref:`int<class_int>` **privacy/collected_data/other_data_types/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_data_types/collection_purposes>`
  1499. 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>`__.
  1500. .. rst-class:: classref-item-separator
  1501. ----
  1502. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_data_types/linked_to_user:
  1503. .. rst-class:: classref-property
  1504. :ref:`bool<class_bool>` **privacy/collected_data/other_data_types/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_data_types/linked_to_user>`
  1505. Indicates whether your app links any other data to the user's identity.
  1506. .. rst-class:: classref-item-separator
  1507. ----
  1508. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_data_types/used_for_tracking:
  1509. .. rst-class:: classref-property
  1510. :ref:`bool<class_bool>` **privacy/collected_data/other_data_types/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_data_types/used_for_tracking>`
  1511. Indicates whether your app uses any other data for tracking.
  1512. .. rst-class:: classref-item-separator
  1513. ----
  1514. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_diagnostic_data/collected:
  1515. .. rst-class:: classref-property
  1516. :ref:`bool<class_bool>` **privacy/collected_data/other_diagnostic_data/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_diagnostic_data/collected>`
  1517. Indicates whether your app collects any other diagnostic data.
  1518. .. rst-class:: classref-item-separator
  1519. ----
  1520. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_diagnostic_data/collection_purposes:
  1521. .. rst-class:: classref-property
  1522. :ref:`int<class_int>` **privacy/collected_data/other_diagnostic_data/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_diagnostic_data/collection_purposes>`
  1523. 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>`__.
  1524. .. rst-class:: classref-item-separator
  1525. ----
  1526. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_diagnostic_data/linked_to_user:
  1527. .. rst-class:: classref-property
  1528. :ref:`bool<class_bool>` **privacy/collected_data/other_diagnostic_data/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_diagnostic_data/linked_to_user>`
  1529. Indicates whether your app links any other diagnostic data to the user's identity.
  1530. .. rst-class:: classref-item-separator
  1531. ----
  1532. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_diagnostic_data/used_for_tracking:
  1533. .. rst-class:: classref-property
  1534. :ref:`bool<class_bool>` **privacy/collected_data/other_diagnostic_data/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_diagnostic_data/used_for_tracking>`
  1535. Indicates whether your app uses any other diagnostic data for tracking.
  1536. .. rst-class:: classref-item-separator
  1537. ----
  1538. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_financial_info/collected:
  1539. .. rst-class:: classref-property
  1540. :ref:`bool<class_bool>` **privacy/collected_data/other_financial_info/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_financial_info/collected>`
  1541. Indicates whether your app collects any other financial information.
  1542. .. rst-class:: classref-item-separator
  1543. ----
  1544. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_financial_info/collection_purposes:
  1545. .. rst-class:: classref-property
  1546. :ref:`int<class_int>` **privacy/collected_data/other_financial_info/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_financial_info/collection_purposes>`
  1547. 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>`__.
  1548. .. rst-class:: classref-item-separator
  1549. ----
  1550. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_financial_info/linked_to_user:
  1551. .. rst-class:: classref-property
  1552. :ref:`bool<class_bool>` **privacy/collected_data/other_financial_info/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_financial_info/linked_to_user>`
  1553. Indicates whether your app links any other financial information to the user's identity.
  1554. .. rst-class:: classref-item-separator
  1555. ----
  1556. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_financial_info/used_for_tracking:
  1557. .. rst-class:: classref-property
  1558. :ref:`bool<class_bool>` **privacy/collected_data/other_financial_info/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_financial_info/used_for_tracking>`
  1559. Indicates whether your app uses any other financial information for tracking.
  1560. .. rst-class:: classref-item-separator
  1561. ----
  1562. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_usage_data/collected:
  1563. .. rst-class:: classref-property
  1564. :ref:`bool<class_bool>` **privacy/collected_data/other_usage_data/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_usage_data/collected>`
  1565. Indicates whether your app collects any other usage data.
  1566. .. rst-class:: classref-item-separator
  1567. ----
  1568. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_usage_data/collection_purposes:
  1569. .. rst-class:: classref-property
  1570. :ref:`int<class_int>` **privacy/collected_data/other_usage_data/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_usage_data/collection_purposes>`
  1571. 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>`__.
  1572. .. rst-class:: classref-item-separator
  1573. ----
  1574. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_usage_data/linked_to_user:
  1575. .. rst-class:: classref-property
  1576. :ref:`bool<class_bool>` **privacy/collected_data/other_usage_data/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_usage_data/linked_to_user>`
  1577. Indicates whether your app links any other usage data to the user's identity.
  1578. .. rst-class:: classref-item-separator
  1579. ----
  1580. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_usage_data/used_for_tracking:
  1581. .. rst-class:: classref-property
  1582. :ref:`bool<class_bool>` **privacy/collected_data/other_usage_data/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_usage_data/used_for_tracking>`
  1583. Indicates whether your app uses any other usage data for tracking.
  1584. .. rst-class:: classref-item-separator
  1585. ----
  1586. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_user_content/collected:
  1587. .. rst-class:: classref-property
  1588. :ref:`bool<class_bool>` **privacy/collected_data/other_user_content/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_user_content/collected>`
  1589. Indicates whether your app collects any other user generated content.
  1590. .. rst-class:: classref-item-separator
  1591. ----
  1592. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_user_content/collection_purposes:
  1593. .. rst-class:: classref-property
  1594. :ref:`int<class_int>` **privacy/collected_data/other_user_content/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_user_content/collection_purposes>`
  1595. 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>`__.
  1596. .. rst-class:: classref-item-separator
  1597. ----
  1598. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_user_content/linked_to_user:
  1599. .. rst-class:: classref-property
  1600. :ref:`bool<class_bool>` **privacy/collected_data/other_user_content/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_user_content/linked_to_user>`
  1601. Indicates whether your app links any other user generated content to the user's identity.
  1602. .. rst-class:: classref-item-separator
  1603. ----
  1604. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/other_user_content/used_for_tracking:
  1605. .. rst-class:: classref-property
  1606. :ref:`bool<class_bool>` **privacy/collected_data/other_user_content/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/other_user_content/used_for_tracking>`
  1607. Indicates whether your app uses any other user generated content for tracking.
  1608. .. rst-class:: classref-item-separator
  1609. ----
  1610. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/payment_info/collected:
  1611. .. rst-class:: classref-property
  1612. :ref:`bool<class_bool>` **privacy/collected_data/payment_info/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/payment_info/collected>`
  1613. Indicates whether your app collects payment information.
  1614. .. rst-class:: classref-item-separator
  1615. ----
  1616. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/payment_info/collection_purposes:
  1617. .. rst-class:: classref-property
  1618. :ref:`int<class_int>` **privacy/collected_data/payment_info/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/payment_info/collection_purposes>`
  1619. 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>`__.
  1620. .. rst-class:: classref-item-separator
  1621. ----
  1622. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/payment_info/linked_to_user:
  1623. .. rst-class:: classref-property
  1624. :ref:`bool<class_bool>` **privacy/collected_data/payment_info/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/payment_info/linked_to_user>`
  1625. Indicates whether your app links payment information to the user's identity.
  1626. .. rst-class:: classref-item-separator
  1627. ----
  1628. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/payment_info/used_for_tracking:
  1629. .. rst-class:: classref-property
  1630. :ref:`bool<class_bool>` **privacy/collected_data/payment_info/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/payment_info/used_for_tracking>`
  1631. Indicates whether your app uses payment information for tracking.
  1632. .. rst-class:: classref-item-separator
  1633. ----
  1634. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/performance_data/collected:
  1635. .. rst-class:: classref-property
  1636. :ref:`bool<class_bool>` **privacy/collected_data/performance_data/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/performance_data/collected>`
  1637. Indicates whether your app collects performance data.
  1638. .. rst-class:: classref-item-separator
  1639. ----
  1640. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/performance_data/collection_purposes:
  1641. .. rst-class:: classref-property
  1642. :ref:`int<class_int>` **privacy/collected_data/performance_data/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/performance_data/collection_purposes>`
  1643. 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>`__.
  1644. .. rst-class:: classref-item-separator
  1645. ----
  1646. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/performance_data/linked_to_user:
  1647. .. rst-class:: classref-property
  1648. :ref:`bool<class_bool>` **privacy/collected_data/performance_data/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/performance_data/linked_to_user>`
  1649. Indicates whether your app links performance data to the user's identity.
  1650. .. rst-class:: classref-item-separator
  1651. ----
  1652. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/performance_data/used_for_tracking:
  1653. .. rst-class:: classref-property
  1654. :ref:`bool<class_bool>` **privacy/collected_data/performance_data/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/performance_data/used_for_tracking>`
  1655. Indicates whether your app uses performance data for tracking.
  1656. .. rst-class:: classref-item-separator
  1657. ----
  1658. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/phone_number/collected:
  1659. .. rst-class:: classref-property
  1660. :ref:`bool<class_bool>` **privacy/collected_data/phone_number/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/phone_number/collected>`
  1661. Indicates whether your app collects phone number.
  1662. .. rst-class:: classref-item-separator
  1663. ----
  1664. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/phone_number/collection_purposes:
  1665. .. rst-class:: classref-property
  1666. :ref:`int<class_int>` **privacy/collected_data/phone_number/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/phone_number/collection_purposes>`
  1667. 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>`__.
  1668. .. rst-class:: classref-item-separator
  1669. ----
  1670. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/phone_number/linked_to_user:
  1671. .. rst-class:: classref-property
  1672. :ref:`bool<class_bool>` **privacy/collected_data/phone_number/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/phone_number/linked_to_user>`
  1673. Indicates whether your app links phone number to the user's identity.
  1674. .. rst-class:: classref-item-separator
  1675. ----
  1676. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/phone_number/used_for_tracking:
  1677. .. rst-class:: classref-property
  1678. :ref:`bool<class_bool>` **privacy/collected_data/phone_number/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/phone_number/used_for_tracking>`
  1679. Indicates whether your app uses phone number for tracking.
  1680. .. rst-class:: classref-item-separator
  1681. ----
  1682. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/photos_or_videos/collected:
  1683. .. rst-class:: classref-property
  1684. :ref:`bool<class_bool>` **privacy/collected_data/photos_or_videos/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/photos_or_videos/collected>`
  1685. Indicates whether your app collects photos or videos.
  1686. .. rst-class:: classref-item-separator
  1687. ----
  1688. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/photos_or_videos/collection_purposes:
  1689. .. rst-class:: classref-property
  1690. :ref:`int<class_int>` **privacy/collected_data/photos_or_videos/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/photos_or_videos/collection_purposes>`
  1691. 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>`__.
  1692. .. rst-class:: classref-item-separator
  1693. ----
  1694. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/photos_or_videos/linked_to_user:
  1695. .. rst-class:: classref-property
  1696. :ref:`bool<class_bool>` **privacy/collected_data/photos_or_videos/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/photos_or_videos/linked_to_user>`
  1697. Indicates whether your app links photos or videos to the user's identity.
  1698. .. rst-class:: classref-item-separator
  1699. ----
  1700. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/photos_or_videos/used_for_tracking:
  1701. .. rst-class:: classref-property
  1702. :ref:`bool<class_bool>` **privacy/collected_data/photos_or_videos/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/photos_or_videos/used_for_tracking>`
  1703. Indicates whether your app uses photos or videos for tracking.
  1704. .. rst-class:: classref-item-separator
  1705. ----
  1706. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/physical_address/collected:
  1707. .. rst-class:: classref-property
  1708. :ref:`bool<class_bool>` **privacy/collected_data/physical_address/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/physical_address/collected>`
  1709. Indicates whether your app collects physical address.
  1710. .. rst-class:: classref-item-separator
  1711. ----
  1712. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/physical_address/collection_purposes:
  1713. .. rst-class:: classref-property
  1714. :ref:`int<class_int>` **privacy/collected_data/physical_address/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/physical_address/collection_purposes>`
  1715. 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>`__.
  1716. .. rst-class:: classref-item-separator
  1717. ----
  1718. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/physical_address/linked_to_user:
  1719. .. rst-class:: classref-property
  1720. :ref:`bool<class_bool>` **privacy/collected_data/physical_address/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/physical_address/linked_to_user>`
  1721. Indicates whether your app links physical address to the user's identity.
  1722. .. rst-class:: classref-item-separator
  1723. ----
  1724. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/physical_address/used_for_tracking:
  1725. .. rst-class:: classref-property
  1726. :ref:`bool<class_bool>` **privacy/collected_data/physical_address/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/physical_address/used_for_tracking>`
  1727. Indicates whether your app uses physical address for tracking.
  1728. .. rst-class:: classref-item-separator
  1729. ----
  1730. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/precise_location/collected:
  1731. .. rst-class:: classref-property
  1732. :ref:`bool<class_bool>` **privacy/collected_data/precise_location/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/precise_location/collected>`
  1733. Indicates whether your app collects precise location data.
  1734. .. rst-class:: classref-item-separator
  1735. ----
  1736. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/precise_location/collection_purposes:
  1737. .. rst-class:: classref-property
  1738. :ref:`int<class_int>` **privacy/collected_data/precise_location/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/precise_location/collection_purposes>`
  1739. 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>`__.
  1740. .. rst-class:: classref-item-separator
  1741. ----
  1742. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/precise_location/linked_to_user:
  1743. .. rst-class:: classref-property
  1744. :ref:`bool<class_bool>` **privacy/collected_data/precise_location/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/precise_location/linked_to_user>`
  1745. Indicates whether your app links precise location data to the user's identity.
  1746. .. rst-class:: classref-item-separator
  1747. ----
  1748. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/precise_location/used_for_tracking:
  1749. .. rst-class:: classref-property
  1750. :ref:`bool<class_bool>` **privacy/collected_data/precise_location/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/precise_location/used_for_tracking>`
  1751. Indicates whether your app uses precise location data for tracking.
  1752. .. rst-class:: classref-item-separator
  1753. ----
  1754. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/product_interaction/collected:
  1755. .. rst-class:: classref-property
  1756. :ref:`bool<class_bool>` **privacy/collected_data/product_interaction/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/product_interaction/collected>`
  1757. Indicates whether your app collects product interaction data.
  1758. .. rst-class:: classref-item-separator
  1759. ----
  1760. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/product_interaction/collection_purposes:
  1761. .. rst-class:: classref-property
  1762. :ref:`int<class_int>` **privacy/collected_data/product_interaction/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/product_interaction/collection_purposes>`
  1763. 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>`__.
  1764. .. rst-class:: classref-item-separator
  1765. ----
  1766. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/product_interaction/linked_to_user:
  1767. .. rst-class:: classref-property
  1768. :ref:`bool<class_bool>` **privacy/collected_data/product_interaction/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/product_interaction/linked_to_user>`
  1769. Indicates whether your app links product interaction data to the user's identity.
  1770. .. rst-class:: classref-item-separator
  1771. ----
  1772. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/product_interaction/used_for_tracking:
  1773. .. rst-class:: classref-property
  1774. :ref:`bool<class_bool>` **privacy/collected_data/product_interaction/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/product_interaction/used_for_tracking>`
  1775. Indicates whether your app uses product interaction data for tracking.
  1776. .. rst-class:: classref-item-separator
  1777. ----
  1778. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/purchase_history/collected:
  1779. .. rst-class:: classref-property
  1780. :ref:`bool<class_bool>` **privacy/collected_data/purchase_history/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/purchase_history/collected>`
  1781. Indicates whether your app collects purchase history.
  1782. .. rst-class:: classref-item-separator
  1783. ----
  1784. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/purchase_history/collection_purposes:
  1785. .. rst-class:: classref-property
  1786. :ref:`int<class_int>` **privacy/collected_data/purchase_history/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/purchase_history/collection_purposes>`
  1787. 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>`__.
  1788. .. rst-class:: classref-item-separator
  1789. ----
  1790. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/purchase_history/linked_to_user:
  1791. .. rst-class:: classref-property
  1792. :ref:`bool<class_bool>` **privacy/collected_data/purchase_history/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/purchase_history/linked_to_user>`
  1793. Indicates whether your app links purchase history to the user's identity.
  1794. .. rst-class:: classref-item-separator
  1795. ----
  1796. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/purchase_history/used_for_tracking:
  1797. .. rst-class:: classref-property
  1798. :ref:`bool<class_bool>` **privacy/collected_data/purchase_history/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/purchase_history/used_for_tracking>`
  1799. Indicates whether your app uses purchase history for tracking.
  1800. .. rst-class:: classref-item-separator
  1801. ----
  1802. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/search_hhistory/collected:
  1803. .. rst-class:: classref-property
  1804. :ref:`bool<class_bool>` **privacy/collected_data/search_hhistory/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/search_hhistory/collected>`
  1805. Indicates whether your app collects search history.
  1806. .. rst-class:: classref-item-separator
  1807. ----
  1808. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/search_hhistory/collection_purposes:
  1809. .. rst-class:: classref-property
  1810. :ref:`int<class_int>` **privacy/collected_data/search_hhistory/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/search_hhistory/collection_purposes>`
  1811. 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>`__.
  1812. .. rst-class:: classref-item-separator
  1813. ----
  1814. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/search_hhistory/linked_to_user:
  1815. .. rst-class:: classref-property
  1816. :ref:`bool<class_bool>` **privacy/collected_data/search_hhistory/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/search_hhistory/linked_to_user>`
  1817. Indicates whether your app links search history to the user's identity.
  1818. .. rst-class:: classref-item-separator
  1819. ----
  1820. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/search_hhistory/used_for_tracking:
  1821. .. rst-class:: classref-property
  1822. :ref:`bool<class_bool>` **privacy/collected_data/search_hhistory/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/search_hhistory/used_for_tracking>`
  1823. Indicates whether your app uses search history for tracking.
  1824. .. rst-class:: classref-item-separator
  1825. ----
  1826. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/sensitive_info/collected:
  1827. .. rst-class:: classref-property
  1828. :ref:`bool<class_bool>` **privacy/collected_data/sensitive_info/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/sensitive_info/collected>`
  1829. Indicates whether your app collects sensitive user information.
  1830. .. rst-class:: classref-item-separator
  1831. ----
  1832. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/sensitive_info/collection_purposes:
  1833. .. rst-class:: classref-property
  1834. :ref:`int<class_int>` **privacy/collected_data/sensitive_info/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/sensitive_info/collection_purposes>`
  1835. 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>`__.
  1836. .. rst-class:: classref-item-separator
  1837. ----
  1838. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/sensitive_info/linked_to_user:
  1839. .. rst-class:: classref-property
  1840. :ref:`bool<class_bool>` **privacy/collected_data/sensitive_info/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/sensitive_info/linked_to_user>`
  1841. Indicates whether your app links sensitive user information to the user's identity.
  1842. .. rst-class:: classref-item-separator
  1843. ----
  1844. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/sensitive_info/used_for_tracking:
  1845. .. rst-class:: classref-property
  1846. :ref:`bool<class_bool>` **privacy/collected_data/sensitive_info/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/sensitive_info/used_for_tracking>`
  1847. Indicates whether your app uses sensitive user information for tracking.
  1848. .. rst-class:: classref-item-separator
  1849. ----
  1850. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/user_id/collected:
  1851. .. rst-class:: classref-property
  1852. :ref:`bool<class_bool>` **privacy/collected_data/user_id/collected** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/user_id/collected>`
  1853. Indicates whether your app collects user IDs.
  1854. .. rst-class:: classref-item-separator
  1855. ----
  1856. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/user_id/collection_purposes:
  1857. .. rst-class:: classref-property
  1858. :ref:`int<class_int>` **privacy/collected_data/user_id/collection_purposes** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/user_id/collection_purposes>`
  1859. 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>`__.
  1860. .. rst-class:: classref-item-separator
  1861. ----
  1862. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/user_id/linked_to_user:
  1863. .. rst-class:: classref-property
  1864. :ref:`bool<class_bool>` **privacy/collected_data/user_id/linked_to_user** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/user_id/linked_to_user>`
  1865. Indicates whether your app links user IDs to the user's identity.
  1866. .. rst-class:: classref-item-separator
  1867. ----
  1868. .. _class_EditorExportPlatformIOS_property_privacy/collected_data/user_id/used_for_tracking:
  1869. .. rst-class:: classref-property
  1870. :ref:`bool<class_bool>` **privacy/collected_data/user_id/used_for_tracking** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/collected_data/user_id/used_for_tracking>`
  1871. Indicates whether your app uses user IDs for tracking.
  1872. .. rst-class:: classref-item-separator
  1873. ----
  1874. .. _class_EditorExportPlatformIOS_property_privacy/disk_space_access_reasons:
  1875. .. rst-class:: classref-property
  1876. :ref:`int<class_int>` **privacy/disk_space_access_reasons** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/disk_space_access_reasons>`
  1877. 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>`__.
  1878. .. rst-class:: classref-item-separator
  1879. ----
  1880. .. _class_EditorExportPlatformIOS_property_privacy/file_timestamp_access_reasons:
  1881. .. rst-class:: classref-property
  1882. :ref:`int<class_int>` **privacy/file_timestamp_access_reasons** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/file_timestamp_access_reasons>`
  1883. 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>`__.
  1884. .. rst-class:: classref-item-separator
  1885. ----
  1886. .. _class_EditorExportPlatformIOS_property_privacy/microphone_usage_description:
  1887. .. rst-class:: classref-property
  1888. :ref:`String<class_String>` **privacy/microphone_usage_description** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/microphone_usage_description>`
  1889. A message displayed when requesting access to the device's microphone (in English).
  1890. .. rst-class:: classref-item-separator
  1891. ----
  1892. .. _class_EditorExportPlatformIOS_property_privacy/microphone_usage_description_localized:
  1893. .. rst-class:: classref-property
  1894. :ref:`Dictionary<class_Dictionary>` **privacy/microphone_usage_description_localized** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/microphone_usage_description_localized>`
  1895. A message displayed when requesting access to the device's microphone (localized).
  1896. .. rst-class:: classref-item-separator
  1897. ----
  1898. .. _class_EditorExportPlatformIOS_property_privacy/photolibrary_usage_description:
  1899. .. rst-class:: classref-property
  1900. :ref:`String<class_String>` **privacy/photolibrary_usage_description** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/photolibrary_usage_description>`
  1901. A message displayed when requesting access to the user's photo library (in English).
  1902. .. rst-class:: classref-item-separator
  1903. ----
  1904. .. _class_EditorExportPlatformIOS_property_privacy/photolibrary_usage_description_localized:
  1905. .. rst-class:: classref-property
  1906. :ref:`Dictionary<class_Dictionary>` **privacy/photolibrary_usage_description_localized** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/photolibrary_usage_description_localized>`
  1907. A message displayed when requesting access to the user's photo library (localized).
  1908. .. rst-class:: classref-item-separator
  1909. ----
  1910. .. _class_EditorExportPlatformIOS_property_privacy/system_boot_time_access_reasons:
  1911. .. rst-class:: classref-property
  1912. :ref:`int<class_int>` **privacy/system_boot_time_access_reasons** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/system_boot_time_access_reasons>`
  1913. 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>`__.
  1914. .. rst-class:: classref-item-separator
  1915. ----
  1916. .. _class_EditorExportPlatformIOS_property_privacy/tracking_domains:
  1917. .. rst-class:: classref-property
  1918. :ref:`PackedStringArray<class_PackedStringArray>` **privacy/tracking_domains** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/tracking_domains>`
  1919. 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>`__.
  1920. **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.
  1921. .. rst-class:: classref-item-separator
  1922. ----
  1923. .. _class_EditorExportPlatformIOS_property_privacy/tracking_enabled:
  1924. .. rst-class:: classref-property
  1925. :ref:`bool<class_bool>` **privacy/tracking_enabled** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/tracking_enabled>`
  1926. Indicates whether your app uses data for tracking. See `Privacy manifest files <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files>`__.
  1927. .. rst-class:: classref-item-separator
  1928. ----
  1929. .. _class_EditorExportPlatformIOS_property_privacy/user_defaults_access_reasons:
  1930. .. rst-class:: classref-property
  1931. :ref:`int<class_int>` **privacy/user_defaults_access_reasons** :ref:`🔗<class_EditorExportPlatformIOS_property_privacy/user_defaults_access_reasons>`
  1932. 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>`__.
  1933. .. rst-class:: classref-item-separator
  1934. ----
  1935. .. _class_EditorExportPlatformIOS_property_storyboard/custom_bg_color:
  1936. .. rst-class:: classref-property
  1937. :ref:`Color<class_Color>` **storyboard/custom_bg_color** :ref:`🔗<class_EditorExportPlatformIOS_property_storyboard/custom_bg_color>`
  1938. A custom background color of the storyboard launch screen.
  1939. .. rst-class:: classref-item-separator
  1940. ----
  1941. .. _class_EditorExportPlatformIOS_property_storyboard/custom_image@2x:
  1942. .. rst-class:: classref-property
  1943. :ref:`String<class_String>` **storyboard/custom_image@2x** :ref:`🔗<class_EditorExportPlatformIOS_property_storyboard/custom_image@2x>`
  1944. Application launch screen image file (2x DPI). If left empty, it will fallback to :ref:`ProjectSettings.application/boot_splash/image<class_ProjectSettings_property_application/boot_splash/image>`.
  1945. .. rst-class:: classref-item-separator
  1946. ----
  1947. .. _class_EditorExportPlatformIOS_property_storyboard/custom_image@3x:
  1948. .. rst-class:: classref-property
  1949. :ref:`String<class_String>` **storyboard/custom_image@3x** :ref:`🔗<class_EditorExportPlatformIOS_property_storyboard/custom_image@3x>`
  1950. Application launch screen image file (3x DPI). If left empty, it will fallback to :ref:`ProjectSettings.application/boot_splash/image<class_ProjectSettings_property_application/boot_splash/image>`.
  1951. .. rst-class:: classref-item-separator
  1952. ----
  1953. .. _class_EditorExportPlatformIOS_property_storyboard/image_scale_mode:
  1954. .. rst-class:: classref-property
  1955. :ref:`int<class_int>` **storyboard/image_scale_mode** :ref:`🔗<class_EditorExportPlatformIOS_property_storyboard/image_scale_mode>`
  1956. Launch screen image scaling mode.
  1957. .. rst-class:: classref-item-separator
  1958. ----
  1959. .. _class_EditorExportPlatformIOS_property_storyboard/use_custom_bg_color:
  1960. .. rst-class:: classref-property
  1961. :ref:`bool<class_bool>` **storyboard/use_custom_bg_color** :ref:`🔗<class_EditorExportPlatformIOS_property_storyboard/use_custom_bg_color>`
  1962. If ``true``, :ref:`storyboard/custom_bg_color<class_EditorExportPlatformIOS_property_storyboard/custom_bg_color>` is used as a launch screen background color, otherwise ``application/boot_splash/bg_color`` project setting is used.
  1963. .. rst-class:: classref-item-separator
  1964. ----
  1965. .. _class_EditorExportPlatformIOS_property_user_data/accessible_from_files_app:
  1966. .. rst-class:: classref-property
  1967. :ref:`bool<class_bool>` **user_data/accessible_from_files_app** :ref:`🔗<class_EditorExportPlatformIOS_property_user_data/accessible_from_files_app>`
  1968. If ``true``, the app "Documents" folder can be accessed via "Files" app. See `LSSupportsOpeningDocumentsInPlace <https://developer.apple.com/documentation/bundleresources/information_property_list/lssupportsopeningdocumentsinplace>`__.
  1969. .. rst-class:: classref-item-separator
  1970. ----
  1971. .. _class_EditorExportPlatformIOS_property_user_data/accessible_from_itunes_sharing:
  1972. .. rst-class:: classref-property
  1973. :ref:`bool<class_bool>` **user_data/accessible_from_itunes_sharing** :ref:`🔗<class_EditorExportPlatformIOS_property_user_data/accessible_from_itunes_sharing>`
  1974. 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>`__.
  1975. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  1976. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  1977. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  1978. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  1979. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  1980. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  1981. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  1982. .. |void| replace:: :abbr:`void (No return value.)`