project.pbxproj 251 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 52;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  10. 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  11. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  12. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C33C48123E2C475005F963B /* NotificationService.swift */; };
  13. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  14. 2CB7D1CA23E2EDCB00376EF9 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  15. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3704EB2923D5A58400455C5B /* NCMenu.storyboard */; };
  16. 370D26AF248A3D7A00121797 /* NCCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */; };
  17. 371B5A2E23D0B04500FAFAE9 /* NCMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 371B5A2D23D0B04500FAFAE9 /* NCMenu.swift */; };
  18. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */; };
  19. 8491B1CD273BBA82001C8C5B /* UIViewController+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8491B1CC273BBA82001C8C5B /* UIViewController+Menu.swift */; };
  20. AF22B206277B4E4C00DAB0CC /* NCCreateFormUploadConflict.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */; };
  21. AF22B207277B4E4C00DAB0CC /* NCCreateFormUploadConflict.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */; };
  22. AF22B208277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */; };
  23. AF22B209277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */; };
  24. AF22B20C277C6F4D00DAB0CC /* NCShareCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF22B20B277C6F4D00DAB0CC /* NCShareCell.swift */; };
  25. AF22B217277D196700DAB0CC /* NCShareExtension+DataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF22B215277D196700DAB0CC /* NCShareExtension+DataSource.swift */; };
  26. AF22B218277D196700DAB0CC /* NCShareExtension+Files.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF22B216277D196700DAB0CC /* NCShareExtension+Files.swift */; };
  27. AF2D7C7C2742556F00ADF566 /* NCShareLinkCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF2D7C7B2742556F00ADF566 /* NCShareLinkCell.swift */; };
  28. AF2D7C7E2742559100ADF566 /* NCShareUserCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF2D7C7D2742559100ADF566 /* NCShareUserCell.swift */; };
  29. AF3FDCC22796ECC300710F60 /* NCTrash+CollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF3FDCC12796ECC300710F60 /* NCTrash+CollectionView.swift */; };
  30. AF3FDCC32796F3FB00710F60 /* NCTrashListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4821903F850088454D /* NCTrashListCell.swift */; };
  31. AF4BF614275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  32. AF4BF615275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  33. AF4BF616275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  34. AF4BF617275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  35. AF4BF61927562A4B0081CEEF /* NCManageDatabse+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabse+Metadata.swift */; };
  36. AF4BF61A27562A4B0081CEEF /* NCManageDatabse+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabse+Metadata.swift */; };
  37. AF4BF61B27562A4B0081CEEF /* NCManageDatabse+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabse+Metadata.swift */; };
  38. AF4BF61C27562A4B0081CEEF /* NCManageDatabse+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabse+Metadata.swift */; };
  39. AF4BF61E27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  40. AF4BF61F27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  41. AF4BF62027562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  42. AF4BF62127562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  43. AF730AFA27843E4C00B7520E /* NCShareExtension+NCDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF730AF927843E4C00B7520E /* NCShareExtension+NCDelegate.swift */; };
  44. AF7E504E27A2D8FF00B5E4AF /* UIBarButton+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF7E504D27A2D8FF00B5E4AF /* UIBarButton+Extension.swift */; };
  45. AF7E505027A2D92300B5E4AF /* NCSelectableNavigationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF7E504F27A2D92300B5E4AF /* NCSelectableNavigationView.swift */; };
  46. AF817EF1274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  47. AF817EF2274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  48. AF817EF3274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  49. AF817EF4274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  50. AF8ED1FC2757821000B8DBC4 /* NextcloudTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF8ED1FB2757821000B8DBC4 /* NextcloudTests.swift */; };
  51. AF8ED2032757822700B8DBC4 /* NCGlobalTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF8ED2022757822700B8DBC4 /* NCGlobalTests.swift */; };
  52. AF935067276B84E700BD078F /* NCMenu+FloatingPanel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF935066276B84E700BD078F /* NCMenu+FloatingPanel.swift */; };
  53. AFD33240276A02C100F5AE02 /* UIApplication+Orientation.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFD3323F276A02C000F5AE02 /* UIApplication+Orientation.swift */; };
  54. D575039F27146F93008DC9DC /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extensions.swift */; };
  55. D5B6AA7827200C7200D49C24 /* NCActivityTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5B6AA7727200C7200D49C24 /* NCActivityTableViewCell.swift */; };
  56. F700222C1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  57. F700222D1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  58. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F700510022DF63AC003A3356 /* NCShare.storyboard */; };
  59. F700510522DF6A89003A3356 /* NCShare.swift in Sources */ = {isa = PBXBuildFile; fileRef = F700510422DF6A89003A3356 /* NCShare.swift */; };
  60. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */; };
  61. F702F2CD25EE5B4F008F8E80 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CC25EE5B4F008F8E80 /* AppDelegate.swift */; };
  62. F702F2CF25EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  63. F702F2D025EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  64. F702F2D125EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  65. F702F2D225EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  66. F702F2E625EE5C86008F8E80 /* NCAudioRecorderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2E425EE5C82008F8E80 /* NCAudioRecorderViewController.swift */; };
  67. F702F2E725EE5C86008F8E80 /* NCAudioRecorderViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F702F2E525EE5C82008F8E80 /* NCAudioRecorderViewController.storyboard */; };
  68. F702F2F125EE5CDB008F8E80 /* NCLogin.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F702F2F025EE5CDA008F8E80 /* NCLogin.storyboard */; };
  69. F702F2F725EE5CED008F8E80 /* NCLogin.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2F625EE5CEC008F8E80 /* NCLogin.swift */; };
  70. F702F30125EE5D2C008F8E80 /* NYMnemonic.m in Sources */ = {isa = PBXBuildFile; fileRef = F702F2FD25EE5D2C008F8E80 /* NYMnemonic.m */; };
  71. F702F30225EE5D2C008F8E80 /* english.txt in Resources */ = {isa = PBXBuildFile; fileRef = F702F2FF25EE5D2C008F8E80 /* english.txt */; };
  72. F702F30825EE5D47008F8E80 /* NCPopupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */; };
  73. F70460522499061800BB98A7 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
  74. F70460532499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
  75. F70460542499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
  76. F704B5E32430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */; };
  77. F704B5E52430AA8000632F5F /* NCCreateFormUploadConflict.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */; };
  78. F704B5E72430C06700632F5F /* NCCreateFormUploadConflictCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */; };
  79. F704B5E92430C0B800632F5F /* NCCreateFormUploadConflictCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */; };
  80. F70753EB2542A99800972D44 /* NCViewerMediaPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70753EA2542A99800972D44 /* NCViewerMediaPage.swift */; };
  81. F70753F12542A9A200972D44 /* NCViewerMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70753F02542A9A200972D44 /* NCViewerMedia.swift */; };
  82. F70753F72542A9C000972D44 /* NCViewerMediaPage.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70753F62542A9C000972D44 /* NCViewerMediaPage.storyboard */; };
  83. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */ = {isa = PBXBuildFile; fileRef = F707C26421A2DC5200F6181E /* NCStoreReview.swift */; };
  84. F70968A424212C4E00ED60E5 /* NCLivePhoto.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */; };
  85. F70A58BE24D0349500DED00D /* NCCapabilitiesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70A58BD24D0349500DED00D /* NCCapabilitiesViewController.swift */; };
  86. F70A58C024D0545100DED00D /* NCCapabilitiesViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70A58BF24D0545100DED00D /* NCCapabilitiesViewController.storyboard */; };
  87. F70B866D2642A21300ED5349 /* NCBackgroundImageColor.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70B866B2642A21300ED5349 /* NCBackgroundImageColor.storyboard */; };
  88. F70B866E2642A21300ED5349 /* NCBackgroundImageColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70B866C2642A21300ED5349 /* NCBackgroundImageColor.swift */; };
  89. F70B86752642CE3B00ED5349 /* FirebaseCrashlytics in Frameworks */ = {isa = PBXBuildFile; productRef = F70B86742642CE3B00ED5349 /* FirebaseCrashlytics */; };
  90. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  91. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  92. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  93. F70CEF5623E9C7E50007035B /* UIColor+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extensions.swift */; };
  94. F70D7C3725FFBF82002B9E34 /* NCCollectionViewCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D7C3525FFBF81002B9E34 /* NCCollectionViewCommon.swift */; };
  95. F70D87CF25EE6E58008CBBBD /* NCRenameFile.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */; };
  96. F70D87D025EE6E58008CBBBD /* NCRenameFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */; };
  97. F70D8D8124A4A9BF000A5756 /* NCNetworkingProcessUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D8D8024A4A9BF000A5756 /* NCNetworkingProcessUpload.swift */; };
  98. F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F42405770F00A6033D /* NCViewerPDF.swift */; };
  99. F710D2022405826100A6033D /* NCViewer+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D2012405826100A6033D /* NCViewer+Menu.swift */; };
  100. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */; };
  101. F710FC7A277B7D0000AA9FBF /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC79277B7D0000AA9FBF /* Realm */; };
  102. F710FC7C277B7D0000AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC7B277B7D0000AA9FBF /* RealmSwift */; };
  103. F710FC7E277B7D2600AA9FBF /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC7D277B7D2600AA9FBF /* Realm */; };
  104. F710FC80277B7D2700AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC7F277B7D2700AA9FBF /* RealmSwift */; };
  105. F710FC82277B7D3500AA9FBF /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC81277B7D3500AA9FBF /* Realm */; };
  106. F710FC84277B7D3500AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC83277B7D3500AA9FBF /* RealmSwift */; };
  107. F710FC86277B7D3F00AA9FBF /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC85277B7D3F00AA9FBF /* Realm */; };
  108. F710FC88277B7D3F00AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC87277B7D3F00AA9FBF /* RealmSwift */; };
  109. F7134186259747BA00768D21 /* NCPushNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = F7134185259747BA00768D21 /* NCPushNotification.m */; };
  110. F713FF002472764100214AF6 /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */; };
  111. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  112. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  113. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  114. F714803B262EBE3900693E51 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F714803A262EBE3900693E51 /* MainInterface.storyboard */; };
  115. F7148041262EBE4000693E51 /* NCShareExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7148040262EBE4000693E51 /* NCShareExtension.swift */; };
  116. F714804F262ED4F900693E51 /* NCGridCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4521903D010088454D /* NCGridCell.xib */; };
  117. F7148054262ED51000693E51 /* NCListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4321903CF20088454D /* NCListCell.xib */; };
  118. F7148059262ED52200693E51 /* NCSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */; };
  119. F714805E262ED52900693E51 /* NCSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD53219047D40088454D /* NCSectionFooter.xib */; };
  120. F7148063262ED66200693E51 /* NCEmptyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7239876253D86D300257F49 /* NCEmptyView.xib */; };
  121. F716B75F26F09DF600D37EFC /* NCKTVHTTPCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = F716B75E26F09DF600D37EFC /* NCKTVHTTPCache.swift */; };
  122. F717402D24F699A5000C87D5 /* NCFavorite.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F717402B24F699A5000C87D5 /* NCFavorite.storyboard */; };
  123. F717402E24F699A5000C87D5 /* NCFavorite.swift in Sources */ = {isa = PBXBuildFile; fileRef = F717402C24F699A5000C87D5 /* NCFavorite.swift */; };
  124. F718C24E254D507B00C5C256 /* NCViewerMediaDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F718C24D254D507B00C5C256 /* NCViewerMediaDetailView.swift */; };
  125. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7226EDB1EE4089300EBECB1 /* Main.storyboard */; };
  126. F7233B3A27835FA400F40A43 /* ChromaColorPicker in Frameworks */ = {isa = PBXBuildFile; productRef = F7233B3927835FA400F40A43 /* ChromaColorPicker */; };
  127. F723985C253C95CE00257F49 /* NCViewerRichdocument.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F723985B253C95CE00257F49 /* NCViewerRichdocument.storyboard */; };
  128. F7239871253D86B600257F49 /* NCEmptyDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7239870253D86B600257F49 /* NCEmptyDataSet.swift */; };
  129. F7239877253D86D300257F49 /* NCEmptyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7239876253D86D300257F49 /* NCEmptyView.xib */; };
  130. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */; };
  131. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */; };
  132. F72928A0253B0937009CA4FD /* NCMainNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F729289F253B0937009CA4FD /* NCMainNavigationController.swift */; };
  133. F72A47EC2487B06B005AD489 /* NCOperationQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72A47EB2487B06B005AD489 /* NCOperationQueue.swift */; };
  134. F72CD01227A7E92400E59476 /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F72CD01127A7E92400E59476 /* JGProgressHUD */; };
  135. F72CD63A25C19EBF00F46F9A /* NCAutoUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72CD63925C19EBF00F46F9A /* NCAutoUpload.swift */; };
  136. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  137. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */; };
  138. F72D7EB7263B1207000B3DFC /* MarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72D7EB6263B1207000B3DFC /* MarkdownKit */; };
  139. F72DA9B425F53E4E00B87DB1 /* SwiftRichString in Frameworks */ = {isa = PBXBuildFile; productRef = F72DA9B325F53E4E00B87DB1 /* SwiftRichString */; };
  140. F733598125C1C188002ABA72 /* NCAskAuthorization.swift in Sources */ = {isa = PBXBuildFile; fileRef = F733598025C1C188002ABA72 /* NCAskAuthorization.swift */; };
  141. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */; };
  142. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7381EDA218218C9000B1560 /* NCOffline.swift */; };
  143. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7381EDE218218C9000B1560 /* NCOffline.storyboard */; };
  144. F738D4902756740100CD1D38 /* NCLoginNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F738D48F2756740100CD1D38 /* NCLoginNavigationController.swift */; };
  145. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */; };
  146. F73ADD1C265546890069EA0D /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F73ADD1B265546890069EA0D /* SwiftEntryKit */; };
  147. F73ADD2126554F8E0069EA0D /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F73ADD2026554F8E0069EA0D /* SwiftEntryKit */; };
  148. F73ADD2226554FD10069EA0D /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  149. F73ADD2426554FE20069EA0D /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F73ADD2326554FE20069EA0D /* SwiftEntryKit */; };
  150. F73B422B2476764F00A30FD3 /* NCNotification.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73B42292476764F00A30FD3 /* NCNotification.storyboard */; };
  151. F73B422C2476764F00A30FD3 /* NCNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73B422A2476764F00A30FD3 /* NCNotification.swift */; };
  152. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */; };
  153. F73D11FA253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73D11F9253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard */; };
  154. F73D5E47246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  155. F73D5E48246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  156. F73D5E49246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  157. F73D5E4A246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  158. F73F537F1E929C8500F8678D /* NCMore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73F537E1E929C8500F8678D /* NCMore.swift */; };
  159. F7417DB3216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */; };
  160. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  161. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  162. F7434B3820E2400600417916 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  163. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F745B252222D88AE00346520 /* NCLoginQRCode.swift */; };
  164. F746EC4E273906B80052598D /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
  165. F746EC4F273906B90052598D /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
  166. F746EC50273906BA0052598D /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
  167. F746EC51273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
  168. F746EC52273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
  169. F746EC53273906C50052598D /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
  170. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */; };
  171. F749C10B23C4A5340027D966 /* NCIntroCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */; };
  172. F749C10C23C4A5340027D966 /* NCIntroViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749C10823C4A5330027D966 /* NCIntroViewController.swift */; };
  173. F749C10D23C4A5340027D966 /* NCIntro.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F749C10923C4A5330027D966 /* NCIntro.storyboard */; };
  174. F749C10E23C4A5340027D966 /* NCIntroCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */; };
  175. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  176. F74AF3A4247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  177. F74AF3A5247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  178. F74AF3A6247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  179. F74C0436253F1CDC009762AB /* NCShares.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74C0434253F1CDC009762AB /* NCShares.swift */; };
  180. F74C0437253F1CDC009762AB /* NCShares.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F74C0435253F1CDC009762AB /* NCShares.storyboard */; };
  181. F74DE14325135B6800917068 /* NCTransfers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74DE14125135B6800917068 /* NCTransfers.swift */; };
  182. F74DE14425135B6800917068 /* NCTransfers.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F74DE14225135B6800917068 /* NCTransfers.storyboard */; };
  183. F74E7720277A2EF40013B958 /* XLForm in Frameworks */ = {isa = PBXBuildFile; productRef = F74E771F277A2EF40013B958 /* XLForm */; };
  184. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7501C302212E57400FB1415 /* NCMedia.storyboard */; };
  185. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7501C312212E57400FB1415 /* NCMedia.swift */; };
  186. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F755BD9A20594AC7008C5FBB /* NCService.swift */; };
  187. F7581D1A25EFDA61004DC699 /* NCLoginWeb+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7581D1925EFDA60004DC699 /* NCLoginWeb+Menu.swift */; };
  188. F7581D2425EFDDDF004DC699 /* NCMedia+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7581D2325EFDDDF004DC699 /* NCMedia+Menu.swift */; };
  189. F758A01227A7F03E0069468B /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F758A01127A7F03E0069468B /* JGProgressHUD */; };
  190. F758B45A212C564000515F55 /* NCScan.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F758B457212C564000515F55 /* NCScan.storyboard */; };
  191. F758B45E212C569D00515F55 /* NCScanCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45D212C569C00515F55 /* NCScanCell.swift */; };
  192. F758B460212C56A400515F55 /* NCScanCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45F212C56A400515F55 /* NCScanCollectionView.swift */; };
  193. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  194. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  195. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */; };
  196. F75B0ABD244C4DBB00E58DCA /* NCFunctionCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75B0ABC244C4DBB00E58DCA /* NCFunctionCenter.swift */; };
  197. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */; };
  198. F75D19E325EFE09000D74598 /* NCTrash+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75D19E225EFE09000D74598 /* NCTrash+Menu.swift */; };
  199. F75E57BD25BF0EC1002B72C2 /* SVGKit in Frameworks */ = {isa = PBXBuildFile; productRef = F75E57BC25BF0EC1002B72C2 /* SVGKit */; };
  200. F75E57BF25BF0EC8002B72C2 /* SVGKit in Frameworks */ = {isa = PBXBuildFile; productRef = F75E57BE25BF0EC8002B72C2 /* SVGKit */; };
  201. F75E57C125BF0ECD002B72C2 /* SVGKit in Frameworks */ = {isa = PBXBuildFile; productRef = F75E57C025BF0ECD002B72C2 /* SVGKit */; };
  202. F75E57C325BF0ED2002B72C2 /* SVGKit in Frameworks */ = {isa = PBXBuildFile; productRef = F75E57C225BF0ED2002B72C2 /* SVGKit */; };
  203. F75EAED826D2552E00F4320E /* MarqueeLabel in Frameworks */ = {isa = PBXBuildFile; productRef = F75EAED726D2552E00F4320E /* MarqueeLabel */; };
  204. F760329F252F0F8E0015A421 /* NCTransferCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760329D252F0F8E0015A421 /* NCTransferCell.swift */; };
  205. F76032A0252F0F8E0015A421 /* NCTransferCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760329E252F0F8E0015A421 /* NCTransferCell.xib */; };
  206. F7632FBF21832F8700721B71 /* NCTrashSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */; };
  207. F7632FC1218353AA00721B71 /* NCTrashSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */; };
  208. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */; };
  209. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */; };
  210. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  211. F765F73125237E3F00391DBE /* NCRecent.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765F72F25237E3F00391DBE /* NCRecent.swift */; };
  212. F765F73225237E3F00391DBE /* NCRecent.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F765F73025237E3F00391DBE /* NCRecent.storyboard */; };
  213. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EC22C901F5007ED366 /* FileProviderDomain.swift */; };
  214. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EF22C90433007ED366 /* FileProviderUtility.swift */; };
  215. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */; };
  216. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453B22E9CFFF000A798A /* NCShareUserCell.xib */; };
  217. F769453E22E9E97E000A798A /* NCShareUserMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */; };
  218. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769453F22E9F077000A798A /* NCSharePaging.swift */; };
  219. F769454222E9F0EE000A798A /* NCShareLinkMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */; };
  220. F769454422E9F142000A798A /* NCShareUserMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454322E9F142000A798A /* NCShareUserMenuView.swift */; };
  221. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454522E9F1B0000A798A /* NCShareCommon.swift */; };
  222. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454722E9F20D000A798A /* NCShareNetworking.swift */; };
  223. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  224. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  225. F76D3CF12428B40E005DFA87 /* NCViewerPDFSearch.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */; };
  226. F76D3CF32428B94E005DFA87 /* NCViewerPDFSearchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */; };
  227. F76D3CF52428D0C1005DFA87 /* NCViewerPDF.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */; };
  228. F76DA93F277B75870082465B /* KTVCocoaHTTPServer.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70B867E2642CF5400ED5349 /* KTVCocoaHTTPServer.xcframework */; };
  229. F76DA940277B75870082465B /* KTVCocoaHTTPServer.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F70B867E2642CF5400ED5349 /* KTVCocoaHTTPServer.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  230. F76DA941277B75870082465B /* KTVHTTPCache.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86792642CF5300ED5349 /* KTVHTTPCache.xcframework */; };
  231. F76DA942277B75870082465B /* KTVHTTPCache.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86792642CF5300ED5349 /* KTVHTTPCache.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  232. F76DA95B277B75A90082465B /* TOPasscodeViewController.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */; };
  233. F76DA95C277B75A90082465B /* TOPasscodeViewController.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  234. F76DA963277B760E0082465B /* Queuer in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA962277B760E0082465B /* Queuer */; };
  235. F76DA966277B76F30082465B /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA965277B76F30082465B /* UICKeyChainStore */; };
  236. F76DA969277B77EA0082465B /* DropDown in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA968277B77EA0082465B /* DropDown */; };
  237. F76DA96C277B78400082465B /* FSCalendar in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA96B277B78400082465B /* FSCalendar */; };
  238. F76DA96F277B78AE0082465B /* TLPhotoPicker in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA96E277B78AE0082465B /* TLPhotoPicker */; };
  239. F7707687263A853700A1BA94 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  240. F7707689263A896A00A1BA94 /* UIImage+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extensions.swift */; };
  241. F770768A263A8A2500A1BA94 /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  242. F770768E263A8C3400A1BA94 /* FloatingPanel in Frameworks */ = {isa = PBXBuildFile; productRef = F770768D263A8C3400A1BA94 /* FloatingPanel */; };
  243. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */; };
  244. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D420E2392D00AFB62D /* FileProviderItem.swift */; };
  245. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */; };
  246. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  247. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F220E239A600AFB62D /* FileProviderData.swift */; };
  248. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */; };
  249. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */; };
  250. F7725A60251F33BB00D125E0 /* NCFiles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7725A5E251F33BB00D125E0 /* NCFiles.swift */; };
  251. F7725A61251F33BB00D125E0 /* NCFiles.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7725A5F251F33BB00D125E0 /* NCFiles.storyboard */; };
  252. F774264A22EB4D0000B23912 /* NCShareUserDropDownCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */; };
  253. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F322281649000D5EB0 /* NCGridMediaCell.swift */; };
  254. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F77444F422281649000D5EB0 /* NCGridMediaCell.xib */; };
  255. F77444F8222816D5000D5EB0 /* NCPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F7222816D5000D5EB0 /* NCPickerViewController.swift */; };
  256. F77910A525DD517B00CEDB9E /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F77910A425DD517B00CEDB9E /* Settings.bundle */; };
  257. F77910AB25DD53C700CEDB9E /* NCSettingsBundleHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77910AA25DD53C700CEDB9E /* NCSettingsBundleHelper.swift */; };
  258. F77A697D250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77A697C250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift */; };
  259. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  260. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */; };
  261. F77B0E5F1D118A16002130FE /* NCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* NCSettings.m */; };
  262. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
  263. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
  264. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */ = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */; };
  265. F77B0F631D118A16002130FE /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  266. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  267. F77EFC0C26D6751F00806ED6 /* NCShareQuickStatusMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77EFC0B26D6751F00806ED6 /* NCShareQuickStatusMenu.swift */; };
  268. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  269. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  270. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  271. F782FDC424E6933900666099 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  272. F785EE9D246196DF00B3F945 /* NCNetworkingE2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */; };
  273. F785EE9E2461A09900B3F945 /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  274. F785EEA42461A4A600B3F945 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  275. F785EEA52461A4CF00B3F945 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  276. F785EEA62461A4FB00B3F945 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  277. F786D58D253454BF00E3DD7B /* NCCommunication in Frameworks */ = {isa = PBXBuildFile; productRef = F786D58C253454BF00E3DD7B /* NCCommunication */; };
  278. F786D593253454CE00E3DD7B /* NCCommunication in Frameworks */ = {isa = PBXBuildFile; productRef = F786D592253454CE00E3DD7B /* NCCommunication */; };
  279. F786D595253454D300E3DD7B /* NCCommunication in Frameworks */ = {isa = PBXBuildFile; productRef = F786D594253454D300E3DD7B /* NCCommunication */; };
  280. F786D597253454D800E3DD7B /* NCCommunication in Frameworks */ = {isa = PBXBuildFile; productRef = F786D596253454D800E3DD7B /* NCCommunication */; };
  281. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F787704E22E7019900F287A9 /* NCShareLinkCell.xib */; };
  282. F788ECC7263AAAFA00ADC67F /* MarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = F788ECC6263AAAFA00ADC67F /* MarkdownKit */; };
  283. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */; };
  284. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */; };
  285. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD3F21903CC20088454D /* NCGridCell.swift */; };
  286. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4121903CE00088454D /* NCListCell.swift */; };
  287. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4321903CF20088454D /* NCListCell.xib */; };
  288. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4521903D010088454D /* NCGridCell.xib */; };
  289. F78ACD4A21903F850088454D /* NCTrashListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4821903F850088454D /* NCTrashListCell.swift */; };
  290. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4921903F850088454D /* NCTrashListCell.xib */; };
  291. F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */; };
  292. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD53219047D40088454D /* NCSectionFooter.xib */; };
  293. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */; };
  294. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78F74332163757000C2ADAD /* NCTrash.storyboard */; };
  295. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78F74352163781100C2ADAD /* NCTrash.swift */; };
  296. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */; };
  297. F79728D422F96F2E003CACA7 /* NCShareLinkFolderMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */; };
  298. F79728D622F9A0B1003CACA7 /* NCShareUserFolderMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */; };
  299. F798F0E225880608000DAFFD /* UIColor+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extensions.swift */; };
  300. F798F0E725880609000DAFFD /* UIColor+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extensions.swift */; };
  301. F798F0EC2588060A000DAFFD /* UIColor+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extensions.swift */; };
  302. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */; };
  303. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79A65C52191D95E00FF6DCC /* NCSelect.swift */; };
  304. F79B646026CA661600838ACA /* UIControl+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extensions.swift */; };
  305. F79B646126CA661600838ACA /* UIControl+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extensions.swift */; };
  306. F79B646226CA661600838ACA /* UIControl+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extensions.swift */; };
  307. F79B646326CA661600838ACA /* UIControl+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extensions.swift */; };
  308. F79B869B265E19D40085C0E0 /* NSMutableAttributedString+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B869A265E19D40085C0E0 /* NSMutableAttributedString+Extensions.swift */; };
  309. F79EC77F26316193004E59D6 /* NCRenameFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */; };
  310. F79EC784263161BA004E59D6 /* NCRenameFile.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */; };
  311. F79EC78926316AC4004E59D6 /* NCPopupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */; };
  312. F79EDAA326B004980007D134 /* NCPlayerToolBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79EDA9F26B004980007D134 /* NCPlayerToolBar.swift */; };
  313. F79EDAA526B004980007D134 /* NCPlayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79EDAA126B004980007D134 /* NCPlayer.swift */; };
  314. F7A0D1352591FBC5008F8A13 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extensions.swift */; };
  315. F7A0D1362591FBC5008F8A13 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extensions.swift */; };
  316. F7A0D1372591FBC5008F8A13 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extensions.swift */; };
  317. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */; };
  318. F7A76DC8256A71CD00119AB3 /* UIImage+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extensions.swift */; };
  319. F7A76DCD256A71CE00119AB3 /* UIImage+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extensions.swift */; };
  320. F7A80BCA252624C100C7CD01 /* NCFileViewInFolder.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7A80BC8252624C100C7CD01 /* NCFileViewInFolder.storyboard */; };
  321. F7A80BCB252624C100C7CD01 /* NCFileViewInFolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A80BC9252624C100C7CD01 /* NCFileViewInFolder.swift */; };
  322. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */; };
  323. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */; };
  324. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */; };
  325. F7B7504B2397D38F004E13EC /* UIImage+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extensions.swift */; };
  326. F7B8B83025681C3400967775 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = F7B8B82F25681C3400967775 /* GoogleService-Info.plist */; };
  327. F7B8CD91261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
  328. F7B8CD96261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
  329. F7B8CD9B261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
  330. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  331. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  332. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  333. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  334. F7BB7E4727A18C56009B9F29 /* Parchment in Frameworks */ = {isa = PBXBuildFile; productRef = F7BB7E4627A18C56009B9F29 /* Parchment */; };
  335. F7BC287E26663F6C004D46C5 /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
  336. F7BC288026663F85004D46C5 /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
  337. F7BD71E62636EAFC00643C34 /* NCNetworkingE2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */; };
  338. F7C1EEA525053A9C00866ACC /* NCDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C1EEA425053A9C00866ACC /* NCDataSource.swift */; };
  339. F7C7B489245EBA4100D93E60 /* NCViewerQuickLook.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */; };
  340. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C9555221F0C4CA0024296E /* NCActivity.storyboard */; };
  341. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9555421F0C5470024296E /* NCActivity.swift */; };
  342. F7CA212D25F1333300826ABB /* NCAccountRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CA212B25F1333200826ABB /* NCAccountRequest.swift */; };
  343. F7CA212E25F1333300826ABB /* NCAccountRequest.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */; };
  344. F7CB689A2541676B0050EC94 /* NCMore.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CB68992541676B0050EC94 /* NCMore.storyboard */; };
  345. F7CB68A0254169530050EC94 /* NCSettings.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CB689F254169530050EC94 /* NCSettings.storyboard */; };
  346. F7CBC31C24F78E79004D3812 /* NCSortMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CBC31B24F78E79004D3812 /* NCSortMenu.swift */; };
  347. F7D0F33E264144FC0097D4A3 /* Background.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7D0F33D264144FC0097D4A3 /* Background.xcassets */; };
  348. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */; };
  349. F7D57C8626317BDA00DE301D /* NCAccountRequest.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */; };
  350. F7D57C8B26317BDE00DE301D /* NCAccountRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CA212B25F1333200826ABB /* NCAccountRequest.swift */; };
  351. F7D96FCC246ED7E200536D73 /* NCNetworkingCheckRemoteUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */; };
  352. F7DBC37C23325E02001A85BA /* NCAppConfigView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */; };
  353. F7DFAA8A22E22EF100FC4527 /* NCShareLinkMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */; };
  354. F7DFB7F0219C5B8000680748 /* NCCreateFormUploadAssets.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */; };
  355. F7DFB7F4219C5CA800680748 /* NCCreateFormUploadScanDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */; };
  356. F7E0CDCF265CE8610044854E /* NCUserStatus.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7E0CDCE265CE8610044854E /* NCUserStatus.storyboard */; };
  357. F7E4D9C422ED929B003675FD /* NCShareCommentsCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E4D9C322ED929B003675FD /* NCShareCommentsCell.swift */; };
  358. F7E572FD278F146C00F8C99E /* OpenSSL.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86802642CF5400ED5349 /* OpenSSL.xcframework */; };
  359. F7E572FE278F146C00F8C99E /* OpenSSL.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86802642CF5400ED5349 /* OpenSSL.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  360. F7E57302278F14FF00F8C99E /* OpenSSL.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86802642CF5400ED5349 /* OpenSSL.xcframework */; };
  361. F7EBCDCF277B81FF00A4EF67 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDCE277B81FF00A4EF67 /* UICKeyChainStore */; };
  362. F7EBCDD1277B820D00A4EF67 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDD0277B820D00A4EF67 /* UICKeyChainStore */; };
  363. F7EBCDD3277B821700A4EF67 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDD2277B821700A4EF67 /* UICKeyChainStore */; };
  364. F7EBCDD5277B82DE00A4EF67 /* Queuer in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDD4277B82DE00A4EF67 /* Queuer */; };
  365. F7EBCDD7277B834400A4EF67 /* Queuer in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDD6277B834400A4EF67 /* Queuer */; };
  366. F7EBCDD9277B834F00A4EF67 /* Queuer in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDD8277B834F00A4EF67 /* Queuer */; };
  367. F7ED547C25EEA65400956C55 /* QRCodeReader in Frameworks */ = {isa = PBXBuildFile; productRef = F7ED547B25EEA65400956C55 /* QRCodeReader */; };
  368. F7EDE4CC262D7B6F00414FE6 /* NCEmptyDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7239870253D86B600257F49 /* NCEmptyDataSet.swift */; };
  369. F7EDE4D1262D7B8400414FE6 /* NCDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C1EEA425053A9C00866ACC /* NCDataSource.swift */; };
  370. F7EDE4D6262D7B9600414FE6 /* NCListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4121903CE00088454D /* NCListCell.swift */; };
  371. F7EDE4DB262D7BA200414FE6 /* NCCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */; };
  372. F7EDE4E0262D7BAF00414FE6 /* NCGridCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD3F21903CC20088454D /* NCGridCell.swift */; };
  373. F7EDE4E5262D7BBE00414FE6 /* NCSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */; };
  374. F7EDE509262DA9D600414FE6 /* NCSelectCommandViewSelect.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EDE508262DA9D600414FE6 /* NCSelectCommandViewSelect.xib */; };
  375. F7EDE514262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EDE513262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib */; };
  376. F7EDE51B262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EDE51A262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib */; };
  377. F7EFA47825ADBA500083159A /* NCViewerProviderContextMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EFA47725ADBA500083159A /* NCViewerProviderContextMenu.swift */; };
  378. F7EFC0C6256BC77700461AAD /* NCMoreUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EFC0C5256BC77700461AAD /* NCMoreUserCell.xib */; };
  379. F7EFC0CD256BF8DD00461AAD /* NCUserStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EFC0CC256BF8DD00461AAD /* NCUserStatus.swift */; };
  380. F7F1E54C2492369A00E42386 /* NCMediaCommandView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7F1E54B2492369A00E42386 /* NCMediaCommandView.xib */; };
  381. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  382. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  383. F7F9D1BB25397CE000D9BFF5 /* NCViewer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F9D1BA25397CE000D9BFF5 /* NCViewer.swift */; };
  384. /* End PBXBuildFile section */
  385. /* Begin PBXContainerItemProxy section */
  386. 2C33C48423E2C475005F963B /* PBXContainerItemProxy */ = {
  387. isa = PBXContainerItemProxy;
  388. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  389. proxyType = 1;
  390. remoteGlobalIDString = 2C33C47E23E2C475005F963B;
  391. remoteInfo = "Notification Service Extension";
  392. };
  393. AF8ED1FD2757821000B8DBC4 /* PBXContainerItemProxy */ = {
  394. isa = PBXContainerItemProxy;
  395. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  396. proxyType = 1;
  397. remoteGlobalIDString = F77B0DEB1D118A16002130FE;
  398. remoteInfo = Nextcloud;
  399. };
  400. F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */ = {
  401. isa = PBXContainerItemProxy;
  402. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  403. proxyType = 1;
  404. remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
  405. remoteInfo = "Share Ext Nextcloud";
  406. };
  407. F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */ = {
  408. isa = PBXContainerItemProxy;
  409. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  410. proxyType = 1;
  411. remoteGlobalIDString = F771E3CF20E2392D00AFB62D;
  412. remoteInfo = "File Provider Extension";
  413. };
  414. /* End PBXContainerItemProxy section */
  415. /* Begin PBXCopyFilesBuildPhase section */
  416. F76DA934277B75710082465B /* Embed Frameworks */ = {
  417. isa = PBXCopyFilesBuildPhase;
  418. buildActionMask = 2147483647;
  419. dstPath = "";
  420. dstSubfolderSpec = 10;
  421. files = (
  422. F76DA942277B75870082465B /* KTVHTTPCache.xcframework in Embed Frameworks */,
  423. F76DA95C277B75A90082465B /* TOPasscodeViewController.xcframework in Embed Frameworks */,
  424. F7E572FE278F146C00F8C99E /* OpenSSL.xcframework in Embed Frameworks */,
  425. F76DA940277B75870082465B /* KTVCocoaHTTPServer.xcframework in Embed Frameworks */,
  426. );
  427. name = "Embed Frameworks";
  428. runOnlyForDeploymentPostprocessing = 0;
  429. };
  430. F77B0F981D118A16002130FE /* Embed App Extensions */ = {
  431. isa = PBXCopyFilesBuildPhase;
  432. buildActionMask = 2147483647;
  433. dstPath = "";
  434. dstSubfolderSpec = 13;
  435. files = (
  436. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */,
  437. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */,
  438. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed App Extensions */,
  439. );
  440. name = "Embed App Extensions";
  441. runOnlyForDeploymentPostprocessing = 0;
  442. };
  443. /* End PBXCopyFilesBuildPhase section */
  444. /* Begin PBXFileReference section */
  445. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  446. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  447. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  448. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  449. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  450. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Notification Service Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  451. 2C33C48123E2C475005F963B /* NotificationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = "<group>"; };
  452. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Notification_Service_Extension-Bridging-Header.h"; sourceTree = "<group>"; };
  453. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCMenu.storyboard; sourceTree = "<group>"; };
  454. 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCellProtocol.swift; sourceTree = "<group>"; };
  455. 371B5A2D23D0B04500FAFAE9 /* NCMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenu.swift; sourceTree = "<group>"; };
  456. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FloatingPanel.framework; path = Carthage/Build/iOS/FloatingPanel.framework; sourceTree = "<group>"; };
  457. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Menu.swift"; sourceTree = "<group>"; };
  458. 8491B1CC273BBA82001C8C5B /* UIViewController+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIViewController+Menu.swift"; sourceTree = "<group>"; };
  459. AF22B20B277C6F4D00DAB0CC /* NCShareCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCell.swift; sourceTree = "<group>"; };
  460. AF22B215277D196700DAB0CC /* NCShareExtension+DataSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCShareExtension+DataSource.swift"; sourceTree = "<group>"; };
  461. AF22B216277D196700DAB0CC /* NCShareExtension+Files.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCShareExtension+Files.swift"; sourceTree = "<group>"; };
  462. AF2D7C7B2742556F00ADF566 /* NCShareLinkCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareLinkCell.swift; sourceTree = "<group>"; };
  463. AF2D7C7D2742559100ADF566 /* NCShareUserCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareUserCell.swift; sourceTree = "<group>"; };
  464. AF3FDCC12796ECC300710F60 /* NCTrash+CollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCTrash+CollectionView.swift"; sourceTree = "<group>"; };
  465. AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Account.swift"; sourceTree = "<group>"; };
  466. AF4BF61827562A4B0081CEEF /* NCManageDatabse+Metadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabse+Metadata.swift"; sourceTree = "<group>"; };
  467. AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Activity.swift"; sourceTree = "<group>"; };
  468. AF730AF927843E4C00B7520E /* NCShareExtension+NCDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShareExtension+NCDelegate.swift"; sourceTree = "<group>"; };
  469. AF7E504D27A2D8FF00B5E4AF /* UIBarButton+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIBarButton+Extension.swift"; sourceTree = "<group>"; };
  470. AF7E504F27A2D92300B5E4AF /* NCSelectableNavigationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSelectableNavigationView.swift; sourceTree = "<group>"; };
  471. AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUserBaseUrl.swift; sourceTree = "<group>"; };
  472. AF8ED1F92757821000B8DBC4 /* NextcloudTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NextcloudTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  473. AF8ED1FB2757821000B8DBC4 /* NextcloudTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NextcloudTests.swift; sourceTree = "<group>"; };
  474. AF8ED2022757822700B8DBC4 /* NCGlobalTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCGlobalTests.swift; sourceTree = "<group>"; };
  475. AF935066276B84E700BD078F /* NCMenu+FloatingPanel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCMenu+FloatingPanel.swift"; sourceTree = "<group>"; };
  476. AFD3323F276A02C000F5AE02 /* UIApplication+Orientation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIApplication+Orientation.swift"; sourceTree = "<group>"; };
  477. D5B6AA7727200C7200D49C24 /* NCActivityTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivityTableViewCell.swift; sourceTree = "<group>"; };
  478. F700222B1EC479840080073F /* Custom.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Custom.xcassets; sourceTree = "<group>"; };
  479. F700510022DF63AC003A3356 /* NCShare.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCShare.storyboard; sourceTree = "<group>"; };
  480. F700510222DF6897003A3356 /* Parchment.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Parchment.framework; path = Carthage/Build/iOS/Parchment.framework; sourceTree = "<group>"; };
  481. F700510422DF6A89003A3356 /* NCShare.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShare.swift; sourceTree = "<group>"; };
  482. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadVoiceNote.swift; sourceTree = "<group>"; };
  483. F702864D27735D1400ADA8BE /* libavdevice.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavdevice.xcframework; path = ffmpeg/libavdevice.xcframework; sourceTree = "<group>"; };
  484. F702864E27735D1400ADA8BE /* ffmpegkit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = ffmpegkit.xcframework; path = ffmpeg/ffmpegkit.xcframework; sourceTree = "<group>"; };
  485. F702864F27735D1500ADA8BE /* libnettle.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libnettle.xcframework; path = ffmpeg/libnettle.xcframework; sourceTree = "<group>"; };
  486. F702865027735D1500ADA8BE /* libswscale.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libswscale.xcframework; path = ffmpeg/libswscale.xcframework; sourceTree = "<group>"; };
  487. F702865127735D1500ADA8BE /* gmp.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = gmp.xcframework; path = ffmpeg/gmp.xcframework; sourceTree = "<group>"; };
  488. F702865227735D1500ADA8BE /* libavcodec.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavcodec.xcframework; path = ffmpeg/libavcodec.xcframework; sourceTree = "<group>"; };
  489. F702865327735D1500ADA8BE /* libavutil.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavutil.xcframework; path = ffmpeg/libavutil.xcframework; sourceTree = "<group>"; };
  490. F702865427735D1500ADA8BE /* openh264.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = openh264.xcframework; path = ffmpeg/openh264.xcframework; sourceTree = "<group>"; };
  491. F702865527735D1600ADA8BE /* libavfilter.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavfilter.xcframework; path = ffmpeg/libavfilter.xcframework; sourceTree = "<group>"; };
  492. F702865627735D1600ADA8BE /* libhogweed.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libhogweed.xcframework; path = ffmpeg/libhogweed.xcframework; sourceTree = "<group>"; };
  493. F702865727735D1600ADA8BE /* x264.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = x264.xcframework; path = ffmpeg/x264.xcframework; sourceTree = "<group>"; };
  494. F702865827735D1600ADA8BE /* libavformat.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavformat.xcframework; path = ffmpeg/libavformat.xcframework; sourceTree = "<group>"; };
  495. F702865927735D1600ADA8BE /* libswresample.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libswresample.xcframework; path = ffmpeg/libswresample.xcframework; sourceTree = "<group>"; };
  496. F702865A27735D1700ADA8BE /* gnutls.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = gnutls.xcframework; path = ffmpeg/gnutls.xcframework; sourceTree = "<group>"; };
  497. F702867E2773609C00ADA8BE /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
  498. F702F2CC25EE5B4F008F8E80 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  499. F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGlobal.swift; sourceTree = "<group>"; };
  500. F702F2E425EE5C82008F8E80 /* NCAudioRecorderViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAudioRecorderViewController.swift; sourceTree = "<group>"; };
  501. F702F2E525EE5C82008F8E80 /* NCAudioRecorderViewController.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCAudioRecorderViewController.storyboard; sourceTree = "<group>"; };
  502. F702F2F025EE5CDA008F8E80 /* NCLogin.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCLogin.storyboard; sourceTree = "<group>"; };
  503. F702F2F625EE5CEC008F8E80 /* NCLogin.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCLogin.swift; sourceTree = "<group>"; };
  504. F702F2FD25EE5D2C008F8E80 /* NYMnemonic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NYMnemonic.m; sourceTree = "<group>"; };
  505. F702F2FF25EE5D2C008F8E80 /* english.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = english.txt; sourceTree = "<group>"; };
  506. F702F30025EE5D2C008F8E80 /* NYMnemonic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NYMnemonic.h; sourceTree = "<group>"; };
  507. F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPopupViewController.swift; sourceTree = "<group>"; };
  508. F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NotificationCenter+MainThread.swift"; sourceTree = "<group>"; };
  509. F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCCreateFormUploadConflict.storyboard; sourceTree = "<group>"; };
  510. F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadConflict.swift; sourceTree = "<group>"; };
  511. F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCCreateFormUploadConflictCell.xib; sourceTree = "<group>"; };
  512. F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadConflictCell.swift; sourceTree = "<group>"; };
  513. F7053E3C1C639DF500741EA5 /* CCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
  514. F7053E3D1C639DF500741EA5 /* CCUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
  515. F7063DEC2199E55F003F38DA /* SVGKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SVGKit.framework; path = Carthage/Build/iOS/SVGKit.framework; sourceTree = "<group>"; };
  516. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjack.framework; path = Carthage/Build/iOS/CocoaLumberjack.framework; sourceTree = "<group>"; };
  517. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjackSwift.framework; path = Carthage/Build/iOS/CocoaLumberjackSwift.framework; sourceTree = "<group>"; };
  518. F70753EA2542A99800972D44 /* NCViewerMediaPage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerMediaPage.swift; sourceTree = "<group>"; };
  519. F70753F02542A9A200972D44 /* NCViewerMedia.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerMedia.swift; sourceTree = "<group>"; };
  520. F70753F62542A9C000972D44 /* NCViewerMediaPage.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerMediaPage.storyboard; sourceTree = "<group>"; };
  521. F707C26421A2DC5200F6181E /* NCStoreReview.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCStoreReview.swift; sourceTree = "<group>"; };
  522. F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCLivePhoto.swift; sourceTree = "<group>"; };
  523. F70A07C8205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  524. F70A58BD24D0349500DED00D /* NCCapabilitiesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCapabilitiesViewController.swift; sourceTree = "<group>"; };
  525. F70A58BF24D0545100DED00D /* NCCapabilitiesViewController.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCCapabilitiesViewController.storyboard; sourceTree = "<group>"; };
  526. F70B866B2642A21300ED5349 /* NCBackgroundImageColor.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCBackgroundImageColor.storyboard; sourceTree = "<group>"; };
  527. F70B866C2642A21300ED5349 /* NCBackgroundImageColor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBackgroundImageColor.swift; sourceTree = "<group>"; };
  528. F70B866F2642CA9500ED5349 /* ChromaColorPicker.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = ChromaColorPicker.xcframework; path = Carthage/Build/ChromaColorPicker.xcframework; sourceTree = "<group>"; };
  529. F70B86792642CF5300ED5349 /* KTVHTTPCache.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = KTVHTTPCache.xcframework; path = Carthage/Build/KTVHTTPCache.xcframework; sourceTree = "<group>"; };
  530. F70B867A2642CF5300ED5349 /* TLPhotoPicker.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = TLPhotoPicker.xcframework; path = Carthage/Build/TLPhotoPicker.xcframework; sourceTree = "<group>"; };
  531. F70B867B2642CF5300ED5349 /* XLForm.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = XLForm.xcframework; path = Carthage/Build/XLForm.xcframework; sourceTree = "<group>"; };
  532. F70B867C2642CF5300ED5349 /* Queuer.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Queuer.xcframework; path = Carthage/Build/Queuer.xcframework; sourceTree = "<group>"; };
  533. F70B867D2642CF5400ED5349 /* UICKeyChainStore.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = UICKeyChainStore.xcframework; path = Carthage/Build/UICKeyChainStore.xcframework; sourceTree = "<group>"; };
  534. F70B867E2642CF5400ED5349 /* KTVCocoaHTTPServer.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = KTVCocoaHTTPServer.xcframework; path = Carthage/Build/KTVCocoaHTTPServer.xcframework; sourceTree = "<group>"; };
  535. F70B867F2642CF5400ED5349 /* QuickLayout.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = QuickLayout.xcframework; path = Carthage/Build/QuickLayout.xcframework; sourceTree = "<group>"; };
  536. F70B86802642CF5400ED5349 /* OpenSSL.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = OpenSSL.xcframework; path = Carthage/Build/OpenSSL.xcframework; sourceTree = "<group>"; };
  537. F70B86812642CF5500ED5349 /* SwiftEntryKit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = SwiftEntryKit.xcframework; path = Carthage/Build/SwiftEntryKit.xcframework; sourceTree = "<group>"; };
  538. F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = TOPasscodeViewController.xcframework; path = Carthage/Build/TOPasscodeViewController.xcframework; sourceTree = "<group>"; };
  539. F70B86832642CF5500ED5349 /* FSCalendar.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = FSCalendar.xcframework; path = Carthage/Build/FSCalendar.xcframework; sourceTree = "<group>"; };
  540. F70B86842642CF5500ED5349 /* DropDown.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = DropDown.xcframework; path = Carthage/Build/DropDown.xcframework; sourceTree = "<group>"; };
  541. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtility.swift; sourceTree = "<group>"; };
  542. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCEndToEndEncryption.h; sourceTree = "<group>"; };
  543. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCEndToEndEncryption.m; sourceTree = "<group>"; };
  544. F70CEF5523E9C7E50007035B /* UIColor+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+Extensions.swift"; sourceTree = "<group>"; };
  545. F70D7C3525FFBF81002B9E34 /* NCCollectionViewCommon.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCollectionViewCommon.swift; sourceTree = "<group>"; };
  546. F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCRenameFile.storyboard; sourceTree = "<group>"; };
  547. F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCRenameFile.swift; sourceTree = "<group>"; };
  548. F70D8D8024A4A9BF000A5756 /* NCNetworkingProcessUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingProcessUpload.swift; sourceTree = "<group>"; };
  549. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ZIPFoundation.framework; path = Carthage/Build/iOS/ZIPFoundation.framework; sourceTree = "<group>"; };
  550. F710C5EF2471A6D1009AD8B7 /* Sentry.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sentry.framework; path = Carthage/Build/iOS/Sentry.framework; sourceTree = "<group>"; };
  551. F710D1F42405770F00A6033D /* NCViewerPDF.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerPDF.swift; sourceTree = "<group>"; };
  552. F710D2012405826100A6033D /* NCViewer+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCViewer+Menu.swift"; sourceTree = "<group>"; };
  553. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ImagesIntro.xcassets; sourceTree = "<group>"; };
  554. F7134184259747BA00768D21 /* NCPushNotification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCPushNotification.h; sourceTree = "<group>"; };
  555. F7134185259747BA00768D21 /* NCPushNotification.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCPushNotification.m; sourceTree = "<group>"; };
  556. F713FEFE2472764000214AF6 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
  557. F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
  558. F714803A262EBE3900693E51 /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  559. F7148040262EBE4000693E51 /* NCShareExtension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareExtension.swift; sourceTree = "<group>"; };
  560. F7148046262EBE4B00693E51 /* Share-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Share-Bridging-Header.h"; sourceTree = "<group>"; };
  561. F7151A811D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  562. F7169A301EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  563. F7169A4C1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  564. F716B75E26F09DF600D37EFC /* NCKTVHTTPCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCKTVHTTPCache.swift; sourceTree = "<group>"; };
  565. F716FE7723795E5000FABE50 /* NCCommunication.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = NCCommunication.framework; path = Carthage/Build/iOS/NCCommunication.framework; sourceTree = "<group>"; };
  566. F717402B24F699A5000C87D5 /* NCFavorite.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCFavorite.storyboard; sourceTree = "<group>"; };
  567. F717402C24F699A5000C87D5 /* NCFavorite.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCFavorite.swift; sourceTree = "<group>"; };
  568. F7176DAE256672630017E83C /* FirebaseCrashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCrashlytics.framework; path = Carthage/Build/iOS/FirebaseCrashlytics.framework; sourceTree = "<group>"; };
  569. F7176DAF256672630017E83C /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCoreDiagnostics.framework; path = Carthage/Build/iOS/FirebaseCoreDiagnostics.framework; sourceTree = "<group>"; };
  570. F7176DB0256672630017E83C /* GoogleDataTransport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleDataTransport.framework; path = Carthage/Build/iOS/GoogleDataTransport.framework; sourceTree = "<group>"; };
  571. F7176DB1256672630017E83C /* FirebaseInstallations.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseInstallations.framework; path = Carthage/Build/iOS/FirebaseInstallations.framework; sourceTree = "<group>"; };
  572. F7176DB2256672630017E83C /* PromisesObjC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PromisesObjC.framework; path = Carthage/Build/iOS/PromisesObjC.framework; sourceTree = "<group>"; };
  573. F7176DB3256672630017E83C /* GoogleUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleUtilities.framework; path = Carthage/Build/iOS/GoogleUtilities.framework; sourceTree = "<group>"; };
  574. F7176DB4256672630017E83C /* nanopb.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = nanopb.framework; path = Carthage/Build/iOS/nanopb.framework; sourceTree = "<group>"; };
  575. F7176DB5256672640017E83C /* Protobuf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Protobuf.framework; path = Carthage/Build/iOS/Protobuf.framework; sourceTree = "<group>"; };
  576. F7176DB6256672640017E83C /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCore.framework; path = Carthage/Build/iOS/FirebaseCore.framework; sourceTree = "<group>"; };
  577. F7176DB7256672640017E83C /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Carthage/Build/iOS/FirebaseAnalytics.framework; sourceTree = "<group>"; };
  578. F7176DB8256672640017E83C /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Carthage/Build/iOS/GoogleAppMeasurement.framework; sourceTree = "<group>"; };
  579. F7176DB9256672640017E83C /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Carthage/Build/iOS/FIRAnalyticsConnector.framework; sourceTree = "<group>"; };
  580. F7176DDA256672D90017E83C /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
  581. F718C24D254D507B00C5C256 /* NCViewerMediaDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerMediaDetailView.swift; sourceTree = "<group>"; };
  582. F7226EDB1EE4089300EBECB1 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  583. F723985B253C95CE00257F49 /* NCViewerRichdocument.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerRichdocument.storyboard; sourceTree = "<group>"; };
  584. F7239870253D86B600257F49 /* NCEmptyDataSet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEmptyDataSet.swift; sourceTree = "<group>"; };
  585. F7239876253D86D300257F49 /* NCEmptyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCEmptyView.xib; sourceTree = "<group>"; };
  586. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareCommentsCell.xib; sourceTree = "<group>"; };
  587. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AFNetworking.framework; path = Carthage/Build/iOS/AFNetworking.framework; sourceTree = "<group>"; };
  588. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCEndToEndInitialize.swift; sourceTree = "<group>"; };
  589. F728B2BB23E83AD200E12DA0 /* Notification_Service_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Notification_Service_Extension.plist; sourceTree = "<group>"; };
  590. F728B2BC23E83AD200E12DA0 /* Notification_Service_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Notification_Service_Extension.entitlements; sourceTree = "<group>"; };
  591. F729289F253B0937009CA4FD /* NCMainNavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainNavigationController.swift; sourceTree = "<group>"; };
  592. F72A47EB2487B06B005AD489 /* NCOperationQueue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCOperationQueue.swift; sourceTree = "<group>"; };
  593. F72CD63925C19EBF00F46F9A /* NCAutoUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAutoUpload.swift; sourceTree = "<group>"; };
  594. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCPushNotificationEncryption.m; sourceTree = "<group>"; };
  595. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCPushNotificationEncryption.h; sourceTree = "<group>"; };
  596. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerNextcloudText.swift; sourceTree = "<group>"; };
  597. F72E0B9C21AD60BC00898D7B /* WeScan.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WeScan.framework; path = Carthage/Build/iOS/WeScan.framework; sourceTree = "<group>"; };
  598. F7320934201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  599. F732093B201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Localizable.strings"; sourceTree = "<group>"; };
  600. F733598025C1C188002ABA72 /* NCAskAuthorization.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAskAuthorization.swift; sourceTree = "<group>"; };
  601. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TLPhotoPicker.framework; path = Carthage/Build/iOS/TLPhotoPicker.framework; sourceTree = "<group>"; };
  602. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
  603. F736B551234DCF57008A5C9F /* Alamofire.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Alamofire.framework; path = Carthage/Build/iOS/Alamofire.framework; sourceTree = "<group>"; };
  604. F7381EDA218218C9000B1560 /* NCOffline.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCOffline.swift; sourceTree = "<group>"; };
  605. F7381EDE218218C9000B1560 /* NCOffline.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCOffline.storyboard; sourceTree = "<group>"; };
  606. F738D48F2756740100CD1D38 /* NCLoginNavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginNavigationController.swift; sourceTree = "<group>"; };
  607. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCManageEndToEndEncryption.h; sourceTree = "<group>"; };
  608. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCManageEndToEndEncryption.m; sourceTree = "<group>"; };
  609. F73B42292476764F00A30FD3 /* NCNotification.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = NCNotification.storyboard; path = Notification/NCNotification.storyboard; sourceTree = "<group>"; };
  610. F73B422A2476764F00A30FD3 /* NCNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = NCNotification.swift; path = Notification/NCNotification.swift; sourceTree = "<group>"; };
  611. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCShareHeaderView.xib; sourceTree = "<group>"; };
  612. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCBridgeSwift.h; sourceTree = "<group>"; };
  613. F73D11F9253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerNextcloudText.storyboard; sourceTree = "<group>"; };
  614. F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCElementsJSON.swift; sourceTree = "<group>"; };
  615. F73F537E1E929C8500F8678D /* NCMore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMore.swift; sourceTree = "<group>"; };
  616. F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrashSectionHeaderFooter.swift; sourceTree = "<group>"; };
  617. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  618. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtension-Bridging-Header.h"; sourceTree = "<group>"; };
  619. F745B250222D871800346520 /* QRCodeReader.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QRCodeReader.framework; path = Carthage/Build/iOS/QRCodeReader.framework; sourceTree = "<group>"; };
  620. F745B252222D88AE00346520 /* NCLoginQRCode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginQRCode.swift; sourceTree = "<group>"; };
  621. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadVoiceNote.storyboard; sourceTree = "<group>"; };
  622. F7496B81208F5651004B299C /* iOSClient.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = iOSClient.plist; sourceTree = "<group>"; };
  623. F7496B83208F5652004B299C /* Share.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Share.plist; sourceTree = "<group>"; };
  624. F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroCollectionViewCell.swift; sourceTree = "<group>"; };
  625. F749C10823C4A5330027D966 /* NCIntroViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroViewController.swift; sourceTree = "<group>"; };
  626. F749C10923C4A5330027D966 /* NCIntro.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCIntro.storyboard; sourceTree = "<group>"; };
  627. F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCIntroCollectionViewCell.xib; sourceTree = "<group>"; };
  628. F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtilityFileSystem.swift; sourceTree = "<group>"; };
  629. F74AFCE822E8B024003DE61F /* FSCalendar.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FSCalendar.framework; path = Carthage/Build/iOS/FSCalendar.framework; sourceTree = "<group>"; };
  630. F74C0434253F1CDC009762AB /* NCShares.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShares.swift; sourceTree = "<group>"; };
  631. F74C0435253F1CDC009762AB /* NCShares.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCShares.storyboard; sourceTree = "<group>"; };
  632. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenSSL.framework; path = Carthage/Build/iOS/OpenSSL.framework; sourceTree = "<group>"; };
  633. F74DE14125135B6800917068 /* NCTransfers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCTransfers.swift; sourceTree = "<group>"; };
  634. F74DE14225135B6800917068 /* NCTransfers.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCTransfers.storyboard; sourceTree = "<group>"; };
  635. F7501C302212E57400FB1415 /* NCMedia.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCMedia.storyboard; sourceTree = "<group>"; };
  636. F7501C312212E57400FB1415 /* NCMedia.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMedia.swift; sourceTree = "<group>"; };
  637. F75153232226920200323DDC /* FastScroll.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FastScroll.framework; path = Carthage/Build/iOS/FastScroll.framework; sourceTree = "<group>"; };
  638. F753701822723D620041C76C /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
  639. F753701922723E0D0041C76C /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  640. F753701A22723EC80041C76C /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  641. F755BD9A20594AC7008C5FBB /* NCService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCService.swift; sourceTree = "<group>"; };
  642. F7581D1925EFDA60004DC699 /* NCLoginWeb+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCLoginWeb+Menu.swift"; sourceTree = "<group>"; };
  643. F7581D2325EFDDDF004DC699 /* NCMedia+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCMedia+Menu.swift"; sourceTree = "<group>"; };
  644. F758B457212C564000515F55 /* NCScan.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCScan.storyboard; sourceTree = "<group>"; };
  645. F758B45D212C569C00515F55 /* NCScanCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCScanCell.swift; sourceTree = "<group>"; };
  646. F758B45F212C56A400515F55 /* NCScanCollectionView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCScanCollectionView.swift; sourceTree = "<group>"; };
  647. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworking.swift; sourceTree = "<group>"; };
  648. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageAutoUploadFileName.swift; sourceTree = "<group>"; };
  649. F75B0ABC244C4DBB00E58DCA /* NCFunctionCenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCFunctionCenter.swift; sourceTree = "<group>"; };
  650. F75B91E21ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  651. F75B91F71ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  652. F75B923D1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  653. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRichWorkspaceCommon.swift; sourceTree = "<group>"; };
  654. F75D19E225EFE09000D74598 /* NCTrash+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCTrash+Menu.swift"; sourceTree = "<group>"; };
  655. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  656. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
  657. F760329D252F0F8E0015A421 /* NCTransferCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = NCTransferCell.swift; path = iOSClient/Transfers/NCTransferCell.swift; sourceTree = SOURCE_ROOT; };
  658. F760329E252F0F8E0015A421 /* NCTransferCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = NCTransferCell.xib; path = iOSClient/Transfers/NCTransferCell.xib; sourceTree = SOURCE_ROOT; };
  659. F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCTrashSectionHeaderMenu.xib; sourceTree = "<group>"; };
  660. F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCTrashSectionFooter.xib; sourceTree = "<group>"; };
  661. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadDocuments.storyboard; sourceTree = "<group>"; };
  662. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadDocuments.swift; sourceTree = "<group>"; };
  663. F765608623BF806C00765969 /* QuickLayout.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLayout.framework; path = Carthage/Build/iOS/QuickLayout.framework; sourceTree = "<group>"; };
  664. F765608A23BF80A400765969 /* SwiftEntryKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftEntryKit.framework; path = Carthage/Build/iOS/SwiftEntryKit.framework; sourceTree = "<group>"; };
  665. F765608E23BF813500765969 /* NCContentPresenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCContentPresenter.swift; sourceTree = "<group>"; };
  666. F765F72F25237E3F00391DBE /* NCRecent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCRecent.swift; sourceTree = "<group>"; };
  667. F765F73025237E3F00391DBE /* NCRecent.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCRecent.storyboard; sourceTree = "<group>"; };
  668. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderDomain.swift; sourceTree = "<group>"; };
  669. F76673EF22C90433007ED366 /* FileProviderUtility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderUtility.swift; sourceTree = "<group>"; };
  670. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainTabBar.swift; sourceTree = "<group>"; };
  671. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserCell.xib; sourceTree = "<group>"; };
  672. F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserMenuView.xib; sourceTree = "<group>"; };
  673. F769453F22E9F077000A798A /* NCSharePaging.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSharePaging.swift; sourceTree = "<group>"; };
  674. F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareLinkMenuView.swift; sourceTree = "<group>"; };
  675. F769454322E9F142000A798A /* NCShareUserMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareUserMenuView.swift; sourceTree = "<group>"; };
  676. F769454522E9F1B0000A798A /* NCShareCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCommon.swift; sourceTree = "<group>"; };
  677. F769454722E9F20D000A798A /* NCShareNetworking.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareNetworking.swift; sourceTree = "<group>"; };
  678. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBrand.swift; sourceTree = "<group>"; };
  679. F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerPDFSearch.swift; sourceTree = "<group>"; };
  680. F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCViewerPDFSearchCell.xib; sourceTree = "<group>"; };
  681. F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCViewerPDF.storyboard; sourceTree = "<group>"; };
  682. F76E71E42244DF6900690001 /* Zip.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Zip.framework; path = Carthage/Build/iOS/Zip.framework; sourceTree = "<group>"; };
  683. F76FDEAA24859C3D0095B6C2 /* Queuer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Queuer.framework; path = Carthage/Build/iOS/Queuer.framework; sourceTree = "<group>"; };
  684. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  685. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderExtension.swift; sourceTree = "<group>"; };
  686. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderItem.swift; sourceTree = "<group>"; };
  687. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderEnumerator.swift; sourceTree = "<group>"; };
  688. F771E3F220E239A600AFB62D /* FileProviderData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderData.swift; sourceTree = "<group>"; };
  689. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Actions.swift"; sourceTree = "<group>"; };
  690. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Thumbnail.swift"; sourceTree = "<group>"; };
  691. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = File_Provider_Extension.entitlements; sourceTree = "<group>"; };
  692. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = File_Provider_Extension.plist; sourceTree = "<group>"; };
  693. F7725A5E251F33BB00D125E0 /* NCFiles.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCFiles.swift; sourceTree = "<group>"; };
  694. F7725A5F251F33BB00D125E0 /* NCFiles.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCFiles.storyboard; sourceTree = "<group>"; };
  695. F774264022EB3F7300B23912 /* DropDown.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropDown.framework; path = Carthage/Build/iOS/DropDown.framework; sourceTree = "<group>"; };
  696. F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserDropDownCell.xib; sourceTree = "<group>"; };
  697. F77438EB1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  698. F77438F21FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  699. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Localizable.strings"; sourceTree = "<group>"; };
  700. F77439001FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
  701. F77439071FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Localizable.strings"; sourceTree = "<group>"; };
  702. F774390E1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  703. F77439151FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  704. F774391C1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  705. F77439231FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Localizable.strings"; sourceTree = "<group>"; };
  706. F774392A1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  707. F77439311FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Localizable.strings"; sourceTree = "<group>"; };
  708. F77439381FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Localizable.strings"; sourceTree = "<group>"; };
  709. F774393F1FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Localizable.strings"; sourceTree = "<group>"; };
  710. F77439461FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  711. F774394D1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  712. F77439541FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  713. F774395B1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Localizable.strings"; sourceTree = "<group>"; };
  714. F77439621FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  715. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGridMediaCell.swift; sourceTree = "<group>"; };
  716. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCGridMediaCell.xib; sourceTree = "<group>"; };
  717. F77444F7222816D5000D5EB0 /* NCPickerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPickerViewController.swift; sourceTree = "<group>"; };
  718. F77910A425DD517B00CEDB9E /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Settings.bundle; sourceTree = "<group>"; };
  719. F77910AA25DD53C700CEDB9E /* NCSettingsBundleHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSettingsBundleHelper.swift; sourceTree = "<group>"; };
  720. F77A697C250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCCollectionViewCommon+Menu.swift"; sourceTree = "<group>"; };
  721. F77EFC0B26D6751F00806ED6 /* NCShareQuickStatusMenu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareQuickStatusMenu.swift; sourceTree = "<group>"; };
  722. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+MainThread.h"; sourceTree = "<group>"; };
  723. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+MainThread.m"; sourceTree = "<group>"; };
  724. F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EE.swift; sourceTree = "<group>"; };
  725. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkCell.xib; sourceTree = "<group>"; };
  726. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspaceWebView.swift; sourceTree = "<group>"; };
  727. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspace.swift; sourceTree = "<group>"; };
  728. F78AA20521F783E900D0F205 /* SwiftRichString.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftRichString.framework; path = Carthage/Build/iOS/SwiftRichString.framework; sourceTree = "<group>"; };
  729. F78ACD3F21903CC20088454D /* NCGridCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCGridCell.swift; sourceTree = "<group>"; };
  730. F78ACD4121903CE00088454D /* NCListCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCListCell.swift; sourceTree = "<group>"; };
  731. F78ACD4321903CF20088454D /* NCListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCListCell.xib; sourceTree = "<group>"; };
  732. F78ACD4521903D010088454D /* NCGridCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCGridCell.xib; sourceTree = "<group>"; };
  733. F78ACD4821903F850088454D /* NCTrashListCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCTrashListCell.swift; sourceTree = "<group>"; };
  734. F78ACD4921903F850088454D /* NCTrashListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCTrashListCell.xib; sourceTree = "<group>"; };
  735. F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSectionHeaderFooter.swift; sourceTree = "<group>"; };
  736. F78ACD53219047D40088454D /* NCSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionFooter.xib; sourceTree = "<group>"; };
  737. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionHeaderMenu.xib; sourceTree = "<group>"; };
  738. F78D6F461F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
  739. F78D6F4D1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  740. F78D6F541F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  741. F78F74332163757000C2ADAD /* NCTrash.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCTrash.storyboard; sourceTree = "<group>"; };
  742. F78F74352163781100C2ADAD /* NCTrash.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrash.swift; sourceTree = "<group>"; };
  743. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichdocument.swift; sourceTree = "<group>"; };
  744. F79018A424092EF4007C9B6D /* ATGMediaBrowser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ATGMediaBrowser.framework; path = Carthage/Build/iOS/ATGMediaBrowser.framework; sourceTree = "<group>"; };
  745. F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkFolderMenuView.xib; sourceTree = "<group>"; };
  746. F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserFolderMenuView.xib; sourceTree = "<group>"; };
  747. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UICKeyChainStore.framework; path = Carthage/Build/iOS/UICKeyChainStore.framework; sourceTree = "<group>"; };
  748. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sheeeeeeeeet.framework; path = Carthage/Build/iOS/Sheeeeeeeeet.framework; sourceTree = "<group>"; };
  749. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCSelect.storyboard; sourceTree = "<group>"; };
  750. F79A65C52191D95E00FF6DCC /* NCSelect.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSelect.swift; sourceTree = "<group>"; };
  751. F79B645F26CA661600838ACA /* UIControl+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIControl+Extensions.swift"; sourceTree = "<group>"; };
  752. F79B869A265E19D40085C0E0 /* NSMutableAttributedString+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSMutableAttributedString+Extensions.swift"; sourceTree = "<group>"; };
  753. F79BCEEA270B49C800B5B71F /* SwiftUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftUI.framework; path = System/Library/Frameworks/SwiftUI.framework; sourceTree = SDKROOT; };
  754. F79EDA9F26B004980007D134 /* NCPlayerToolBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPlayerToolBar.swift; sourceTree = "<group>"; };
  755. F79EDAA126B004980007D134 /* NCPlayer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPlayer.swift; sourceTree = "<group>"; };
  756. F7A0D1342591FBC5008F8A13 /* String+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extensions.swift"; sourceTree = "<group>"; };
  757. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAdvanced.h; sourceTree = "<group>"; };
  758. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAdvanced.m; sourceTree = "<group>"; };
  759. F7A80BC8252624C100C7CD01 /* NCFileViewInFolder.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCFileViewInFolder.storyboard; sourceTree = "<group>"; };
  760. F7A80BC9252624C100C7CD01 /* NCFileViewInFolder.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCFileViewInFolder.swift; sourceTree = "<group>"; };
  761. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
  762. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
  763. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
  764. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
  765. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
  766. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAutoUpload.h; sourceTree = "<group>"; };
  767. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAutoUpload.m; sourceTree = "<group>"; };
  768. F7ACE4301BAC0268006C0017 /* NCSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSettings.h; sourceTree = "<group>"; };
  769. F7ACE4311BAC0268006C0017 /* NCSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSettings.m; sourceTree = "<group>"; };
  770. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginWeb.swift; sourceTree = "<group>"; };
  771. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCBrowserWeb.swift; sourceTree = "<group>"; };
  772. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCBrowserWeb.storyboard; sourceTree = "<group>"; };
  773. F7AF7632246BEDFE00B86E3C /* TOPasscodeViewController.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TOPasscodeViewController.framework; path = Carthage/Build/iOS/TOPasscodeViewController.framework; sourceTree = "<group>"; };
  774. F7B1076C25D3CF2800E72DE2 /* BackgroundTasks.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BackgroundTasks.framework; path = System/Library/Frameworks/BackgroundTasks.framework; sourceTree = SDKROOT; };
  775. F7B1A7761EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  776. F7B7504A2397D38E004E13EC /* UIImage+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+Extensions.swift"; sourceTree = "<group>"; };
  777. F7B8B82F25681C3400967775 /* GoogleService-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "GoogleService-Info.plist"; sourceTree = SOURCE_ROOT; };
  778. F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingChunkedUpload.swift; sourceTree = "<group>"; };
  779. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDatabase.swift; sourceTree = "<group>"; };
  780. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageDatabase.swift; sourceTree = "<group>"; };
  781. F7BB04851FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Localizable.strings"; sourceTree = "<group>"; };
  782. F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewCertificateDetails.storyboard; sourceTree = "<group>"; };
  783. F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewCertificateDetails.swift; sourceTree = "<group>"; };
  784. F7C1EEA425053A9C00866ACC /* NCDataSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCDataSource.swift; sourceTree = "<group>"; };
  785. F7C40BE221998C050004137E /* PDFGenerator.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PDFGenerator.framework; path = Carthage/Build/iOS/PDFGenerator.framework; sourceTree = "<group>"; };
  786. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MGSwipeTableCell.framework; path = Carthage/Build/iOS/MGSwipeTableCell.framework; sourceTree = "<group>"; };
  787. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DZNEmptyDataSet.framework; path = Carthage/Build/iOS/DZNEmptyDataSet.framework; sourceTree = "<group>"; };
  788. F7C40BE8219991A60004137E /* EAIntroView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EAIntroView.framework; path = Carthage/Build/iOS/EAIntroView.framework; sourceTree = "<group>"; };
  789. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EARestrictedScrollView.framework; path = Carthage/Build/iOS/EARestrictedScrollView.framework; sourceTree = "<group>"; };
  790. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JDStatusBarNotification.framework; path = Carthage/Build/iOS/JDStatusBarNotification.framework; sourceTree = "<group>"; };
  791. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVCocoaHTTPServer.framework; path = Carthage/Build/iOS/KTVCocoaHTTPServer.framework; sourceTree = "<group>"; };
  792. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVHTTPCache.framework; path = Carthage/Build/iOS/KTVHTTPCache.framework; sourceTree = "<group>"; };
  793. F7C40BF22199978B0004137E /* MBProgressHUD.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MBProgressHUD.framework; path = Carthage/Build/iOS/MBProgressHUD.framework; sourceTree = "<group>"; };
  794. F7C40C0F2199BA5D0004137E /* Realm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Realm.framework; path = Carthage/Build/iOS/Realm.framework; sourceTree = "<group>"; };
  795. F7C40C112199BA620004137E /* RealmSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RealmSwift.framework; path = Carthage/Build/iOS/RealmSwift.framework; sourceTree = "<group>"; };
  796. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = iOSClient.entitlements; sourceTree = "<group>"; };
  797. F7C742D01E7BD35B00D9C973 /* Share.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Share.entitlements; sourceTree = "<group>"; };
  798. F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerQuickLook.swift; sourceTree = "<group>"; };
  799. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCActivity.storyboard; sourceTree = "<group>"; };
  800. F7C9555421F0C5470024296E /* NCActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivity.swift; sourceTree = "<group>"; };
  801. F7CA212B25F1333200826ABB /* NCAccountRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAccountRequest.swift; sourceTree = "<group>"; };
  802. F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCAccountRequest.storyboard; sourceTree = "<group>"; };
  803. F7CB68992541676B0050EC94 /* NCMore.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCMore.storyboard; sourceTree = "<group>"; };
  804. F7CB689F254169530050EC94 /* NCSettings.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCSettings.storyboard; sourceTree = "<group>"; };
  805. F7CBC31B24F78E79004D3812 /* NCSortMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSortMenu.swift; sourceTree = "<group>"; };
  806. F7CC04E61F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  807. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
  808. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  809. F7D0F33D264144FC0097D4A3 /* Background.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Background.xcassets; sourceTree = "<group>"; };
  810. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
  811. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerRichWorkspace.storyboard; sourceTree = "<group>"; };
  812. F7D2C772246470CA008513AE /* XLForm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XLForm.framework; path = Carthage/Build/iOS/XLForm.framework; sourceTree = "<group>"; };
  813. F7D532461F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Localizable.strings; sourceTree = "<group>"; };
  814. F7D5324D1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  815. F7D532541F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Localizable.strings"; sourceTree = "<group>"; };
  816. F7D5328F1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
  817. F7D532A41F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  818. F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworkingCheckRemoteUser.swift; sourceTree = "<group>"; };
  819. F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAppConfigView.swift; sourceTree = "<group>"; };
  820. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MarkdownKit.framework; path = Carthage/Build/iOS/MarkdownKit.framework; sourceTree = "<group>"; };
  821. F7DE9AB01F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  822. F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkMenuView.xib; sourceTree = "<group>"; };
  823. F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadAssets.swift; sourceTree = "<group>"; };
  824. F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadScanDocument.swift; sourceTree = "<group>"; };
  825. F7E0CDCE265CE8610044854E /* NCUserStatus.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCUserStatus.storyboard; sourceTree = "<group>"; };
  826. F7E45E6D21E75BF200579249 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/Localizable.strings"; sourceTree = "<group>"; };
  827. F7E4D9C322ED929B003675FD /* NCShareCommentsCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCommentsCell.swift; sourceTree = "<group>"; };
  828. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftyXMLParser.framework; path = Carthage/Build/iOS/SwiftyXMLParser.framework; sourceTree = "<group>"; };
  829. F7EDE508262DA9D600414FE6 /* NCSelectCommandViewSelect.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSelectCommandViewSelect.xib; sourceTree = "<group>"; };
  830. F7EDE513262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = "NCSelectCommandViewSelect+CreateFolder.xib"; sourceTree = "<group>"; };
  831. F7EDE51A262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSelectCommandViewCopyMove.xib; sourceTree = "<group>"; };
  832. F7EFA47725ADBA500083159A /* NCViewerProviderContextMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerProviderContextMenu.swift; sourceTree = "<group>"; };
  833. F7EFC0C5256BC77700461AAD /* NCMoreUserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCMoreUserCell.xib; sourceTree = "<group>"; };
  834. F7EFC0CC256BF8DD00461AAD /* NCUserStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUserStatus.swift; sourceTree = "<group>"; };
  835. F7F1E54B2492369A00E42386 /* NCMediaCommandView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCMediaCommandView.xib; sourceTree = "<group>"; };
  836. F7F35B592578FB63003F5589 /* CollaboraOnlineWebViewKeyboardManager.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CollaboraOnlineWebViewKeyboardManager.framework; path = Carthage/Build/iOS/CollaboraOnlineWebViewKeyboardManager.framework; sourceTree = "<group>"; };
  837. F7F67BB81A24D27800EE80DA /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  838. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEndToEndMetadata.swift; sourceTree = "<group>"; };
  839. F7F9D1BA25397CE000D9BFF5 /* NCViewer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewer.swift; sourceTree = "<group>"; };
  840. F7FC7D551DC1F93800BB2C6A /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  841. /* End PBXFileReference section */
  842. /* Begin PBXFrameworksBuildPhase section */
  843. 2C33C47C23E2C475005F963B /* Frameworks */ = {
  844. isa = PBXFrameworksBuildPhase;
  845. buildActionMask = 2147483647;
  846. files = (
  847. F710FC88277B7D3F00AA9FBF /* RealmSwift in Frameworks */,
  848. F7EBCDD9277B834F00A4EF67 /* Queuer in Frameworks */,
  849. F710FC86277B7D3F00AA9FBF /* Realm in Frameworks */,
  850. F7EBCDD3277B821700A4EF67 /* UICKeyChainStore in Frameworks */,
  851. F75E57C325BF0ED2002B72C2 /* SVGKit in Frameworks */,
  852. F786D597253454D800E3DD7B /* NCCommunication in Frameworks */,
  853. );
  854. runOnlyForDeploymentPostprocessing = 0;
  855. };
  856. AF8ED1F62757821000B8DBC4 /* Frameworks */ = {
  857. isa = PBXFrameworksBuildPhase;
  858. buildActionMask = 2147483647;
  859. files = (
  860. );
  861. runOnlyForDeploymentPostprocessing = 0;
  862. };
  863. F7145A141D12E3B700CAFEEC /* Frameworks */ = {
  864. isa = PBXFrameworksBuildPhase;
  865. buildActionMask = 2147483647;
  866. files = (
  867. F7E57302278F14FF00F8C99E /* OpenSSL.xcframework in Frameworks */,
  868. F710FC80277B7D2700AA9FBF /* RealmSwift in Frameworks */,
  869. F72CD01227A7E92400E59476 /* JGProgressHUD in Frameworks */,
  870. F710FC7E277B7D2600AA9FBF /* Realm in Frameworks */,
  871. F73ADD2126554F8E0069EA0D /* SwiftEntryKit in Frameworks */,
  872. F7EBCDCF277B81FF00A4EF67 /* UICKeyChainStore in Frameworks */,
  873. F75E57BF25BF0EC8002B72C2 /* SVGKit in Frameworks */,
  874. F7EBCDD5277B82DE00A4EF67 /* Queuer in Frameworks */,
  875. F786D593253454CE00E3DD7B /* NCCommunication in Frameworks */,
  876. F72D7EB7263B1207000B3DFC /* MarkdownKit in Frameworks */,
  877. );
  878. runOnlyForDeploymentPostprocessing = 0;
  879. };
  880. F771E3CD20E2392D00AFB62D /* Frameworks */ = {
  881. isa = PBXFrameworksBuildPhase;
  882. buildActionMask = 2147483647;
  883. files = (
  884. F7EBCDD1277B820D00A4EF67 /* UICKeyChainStore in Frameworks */,
  885. F75E57C125BF0ECD002B72C2 /* SVGKit in Frameworks */,
  886. F7EBCDD7277B834400A4EF67 /* Queuer in Frameworks */,
  887. F73ADD2426554FE20069EA0D /* SwiftEntryKit in Frameworks */,
  888. F710FC82277B7D3500AA9FBF /* Realm in Frameworks */,
  889. F710FC84277B7D3500AA9FBF /* RealmSwift in Frameworks */,
  890. F786D595253454D300E3DD7B /* NCCommunication in Frameworks */,
  891. );
  892. runOnlyForDeploymentPostprocessing = 0;
  893. };
  894. F77B0EDC1D118A16002130FE /* Frameworks */ = {
  895. isa = PBXFrameworksBuildPhase;
  896. buildActionMask = 2147483647;
  897. files = (
  898. F76DA941277B75870082465B /* KTVHTTPCache.xcframework in Frameworks */,
  899. F7ED547C25EEA65400956C55 /* QRCodeReader in Frameworks */,
  900. F788ECC7263AAAFA00ADC67F /* MarkdownKit in Frameworks */,
  901. F7BB7E4727A18C56009B9F29 /* Parchment in Frameworks */,
  902. F7233B3A27835FA400F40A43 /* ChromaColorPicker in Frameworks */,
  903. F770768E263A8C3400A1BA94 /* FloatingPanel in Frameworks */,
  904. F710FC7C277B7D0000AA9FBF /* RealmSwift in Frameworks */,
  905. F7E572FD278F146C00F8C99E /* OpenSSL.xcframework in Frameworks */,
  906. F786D58D253454BF00E3DD7B /* NCCommunication in Frameworks */,
  907. F758A01227A7F03E0069468B /* JGProgressHUD in Frameworks */,
  908. F76DA96F277B78AE0082465B /* TLPhotoPicker in Frameworks */,
  909. F76DA966277B76F30082465B /* UICKeyChainStore in Frameworks */,
  910. F76DA95B277B75A90082465B /* TOPasscodeViewController.xcframework in Frameworks */,
  911. F76DA963277B760E0082465B /* Queuer in Frameworks */,
  912. F75E57BD25BF0EC1002B72C2 /* SVGKit in Frameworks */,
  913. F70B86752642CE3B00ED5349 /* FirebaseCrashlytics in Frameworks */,
  914. F76DA969277B77EA0082465B /* DropDown in Frameworks */,
  915. F75EAED826D2552E00F4320E /* MarqueeLabel in Frameworks */,
  916. F710FC7A277B7D0000AA9FBF /* Realm in Frameworks */,
  917. F72DA9B425F53E4E00B87DB1 /* SwiftRichString in Frameworks */,
  918. F74E7720277A2EF40013B958 /* XLForm in Frameworks */,
  919. F73ADD1C265546890069EA0D /* SwiftEntryKit in Frameworks */,
  920. F76DA96C277B78400082465B /* FSCalendar in Frameworks */,
  921. F76DA93F277B75870082465B /* KTVCocoaHTTPServer.xcframework in Frameworks */,
  922. );
  923. runOnlyForDeploymentPostprocessing = 0;
  924. };
  925. /* End PBXFrameworksBuildPhase section */
  926. /* Begin PBXGroup section */
  927. 2C33C48023E2C475005F963B /* Notification Service Extension */ = {
  928. isa = PBXGroup;
  929. children = (
  930. 2C33C48123E2C475005F963B /* NotificationService.swift */,
  931. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */,
  932. );
  933. path = "Notification Service Extension";
  934. sourceTree = "<group>";
  935. };
  936. 371B5A2F23D0B04B00FAFAE9 /* Menu */ = {
  937. isa = PBXGroup;
  938. children = (
  939. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */,
  940. 371B5A2D23D0B04500FAFAE9 /* NCMenu.swift */,
  941. AF935066276B84E700BD078F /* NCMenu+FloatingPanel.swift */,
  942. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */,
  943. 8491B1CC273BBA82001C8C5B /* UIViewController+Menu.swift */,
  944. F77A697C250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift */,
  945. F7581D1925EFDA60004DC699 /* NCLoginWeb+Menu.swift */,
  946. F7581D2325EFDDDF004DC699 /* NCMedia+Menu.swift */,
  947. F7CBC31B24F78E79004D3812 /* NCSortMenu.swift */,
  948. F75D19E225EFE09000D74598 /* NCTrash+Menu.swift */,
  949. F710D2012405826100A6033D /* NCViewer+Menu.swift */,
  950. );
  951. path = Menu;
  952. sourceTree = "<group>";
  953. };
  954. AF8ED1FA2757821000B8DBC4 /* NextcloudTests */ = {
  955. isa = PBXGroup;
  956. children = (
  957. AF8ED2022757822700B8DBC4 /* NCGlobalTests.swift */,
  958. AF8ED1FB2757821000B8DBC4 /* NextcloudTests.swift */,
  959. );
  960. path = NextcloudTests;
  961. sourceTree = "<group>";
  962. };
  963. F70211F31BAC56E9003FC03E /* Main */ = {
  964. isa = PBXGroup;
  965. children = (
  966. F702F2E325EE5C82008F8E80 /* AudioRecorder */,
  967. F7DFB7E9219C5A0500680748 /* Create cloud */,
  968. F78ACD50219046AC0088454D /* Section Header Footer */,
  969. F7603298252F0E550015A421 /* Collection Common */,
  970. F7CA213725F1372B00826ABB /* Account Request */,
  971. 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */,
  972. F7226EDB1EE4089300EBECB1 /* Main.storyboard */,
  973. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */,
  974. F729289F253B0937009CA4FD /* NCMainNavigationController.swift */,
  975. F75B0ABC244C4DBB00E58DCA /* NCFunctionCenter.swift */,
  976. F77444F7222816D5000D5EB0 /* NCPickerViewController.swift */,
  977. );
  978. path = Main;
  979. sourceTree = "<group>";
  980. };
  981. F702F2E325EE5C82008F8E80 /* AudioRecorder */ = {
  982. isa = PBXGroup;
  983. children = (
  984. F702F2E425EE5C82008F8E80 /* NCAudioRecorderViewController.swift */,
  985. F702F2E525EE5C82008F8E80 /* NCAudioRecorderViewController.storyboard */,
  986. );
  987. path = AudioRecorder;
  988. sourceTree = "<group>";
  989. };
  990. F702F2FC25EE5D2C008F8E80 /* NYMnemonic */ = {
  991. isa = PBXGroup;
  992. children = (
  993. F702F2FD25EE5D2C008F8E80 /* NYMnemonic.m */,
  994. F702F2FE25EE5D2C008F8E80 /* languages */,
  995. F702F30025EE5D2C008F8E80 /* NYMnemonic.h */,
  996. );
  997. path = NYMnemonic;
  998. sourceTree = "<group>";
  999. };
  1000. F702F2FE25EE5D2C008F8E80 /* languages */ = {
  1001. isa = PBXGroup;
  1002. children = (
  1003. F702F2FF25EE5D2C008F8E80 /* english.txt */,
  1004. );
  1005. path = languages;
  1006. sourceTree = "<group>";
  1007. };
  1008. F70B866A2642A21300ED5349 /* BackgroundImageColor */ = {
  1009. isa = PBXGroup;
  1010. children = (
  1011. F70B866B2642A21300ED5349 /* NCBackgroundImageColor.storyboard */,
  1012. F70B866C2642A21300ED5349 /* NCBackgroundImageColor.swift */,
  1013. );
  1014. path = BackgroundImageColor;
  1015. sourceTree = "<group>";
  1016. };
  1017. F70D87CC25EE6E58008CBBBD /* Rename file */ = {
  1018. isa = PBXGroup;
  1019. children = (
  1020. F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */,
  1021. F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */,
  1022. );
  1023. path = "Rename file";
  1024. sourceTree = "<group>";
  1025. };
  1026. F710E80C1EF95C9C00DC2427 /* Intro */ = {
  1027. isa = PBXGroup;
  1028. children = (
  1029. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */,
  1030. F749C10923C4A5330027D966 /* NCIntro.storyboard */,
  1031. F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */,
  1032. F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */,
  1033. F749C10823C4A5330027D966 /* NCIntroViewController.swift */,
  1034. );
  1035. path = Intro;
  1036. sourceTree = "<group>";
  1037. };
  1038. F713418B2597513800768D21 /* PushNotification */ = {
  1039. isa = PBXGroup;
  1040. children = (
  1041. F7134184259747BA00768D21 /* NCPushNotification.h */,
  1042. F7134185259747BA00768D21 /* NCPushNotification.m */,
  1043. );
  1044. path = PushNotification;
  1045. sourceTree = "<group>";
  1046. };
  1047. F7169A161EE590930086BD69 /* Shares */ = {
  1048. isa = PBXGroup;
  1049. children = (
  1050. F74C0435253F1CDC009762AB /* NCShares.storyboard */,
  1051. F74C0434253F1CDC009762AB /* NCShares.swift */,
  1052. );
  1053. path = Shares;
  1054. sourceTree = "<group>";
  1055. };
  1056. F720B5B72507B9A5008C94E5 /* Cell */ = {
  1057. isa = PBXGroup;
  1058. children = (
  1059. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */,
  1060. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */,
  1061. );
  1062. path = Cell;
  1063. sourceTree = "<group>";
  1064. };
  1065. F7239861253C95D500257F49 /* NCViewerRichdocument */ = {
  1066. isa = PBXGroup;
  1067. children = (
  1068. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */,
  1069. F723985B253C95CE00257F49 /* NCViewerRichdocument.storyboard */,
  1070. );
  1071. path = NCViewerRichdocument;
  1072. sourceTree = "<group>";
  1073. };
  1074. F723986A253C9C0E00257F49 /* NCViewerQuickLook */ = {
  1075. isa = PBXGroup;
  1076. children = (
  1077. F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */,
  1078. );
  1079. path = NCViewerQuickLook;
  1080. sourceTree = "<group>";
  1081. };
  1082. F723986F253D867900257F49 /* EmptyView */ = {
  1083. isa = PBXGroup;
  1084. children = (
  1085. F7239870253D86B600257F49 /* NCEmptyDataSet.swift */,
  1086. F7239876253D86D300257F49 /* NCEmptyView.xib */,
  1087. );
  1088. path = EmptyView;
  1089. sourceTree = "<group>";
  1090. };
  1091. F728CE741BF6322C00E69702 /* Share */ = {
  1092. isa = PBXGroup;
  1093. children = (
  1094. F700510022DF63AC003A3356 /* NCShare.storyboard */,
  1095. F700510422DF6A89003A3356 /* NCShare.swift */,
  1096. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */,
  1097. F7E4D9C322ED929B003675FD /* NCShareCommentsCell.swift */,
  1098. F769454522E9F1B0000A798A /* NCShareCommon.swift */,
  1099. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */,
  1100. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */,
  1101. AF2D7C7B2742556F00ADF566 /* NCShareLinkCell.swift */,
  1102. F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */,
  1103. F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */,
  1104. F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */,
  1105. F769454722E9F20D000A798A /* NCShareNetworking.swift */,
  1106. F769453F22E9F077000A798A /* NCSharePaging.swift */,
  1107. F77EFC0B26D6751F00806ED6 /* NCShareQuickStatusMenu.swift */,
  1108. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */,
  1109. AF2D7C7D2742559100ADF566 /* NCShareUserCell.swift */,
  1110. F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */,
  1111. F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */,
  1112. F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */,
  1113. F769454322E9F142000A798A /* NCShareUserMenuView.swift */,
  1114. );
  1115. path = Share;
  1116. sourceTree = "<group>";
  1117. };
  1118. F72B60941A24F04E004EF66F /* Localizations */ = {
  1119. isa = PBXGroup;
  1120. children = (
  1121. F7E70DE91A24DE4100E1B66A /* Localizable.strings */,
  1122. );
  1123. name = Localizations;
  1124. sourceTree = "<group>";
  1125. };
  1126. F7381ED9218218A4000B1560 /* Offline */ = {
  1127. isa = PBXGroup;
  1128. children = (
  1129. F7381EDE218218C9000B1560 /* NCOffline.storyboard */,
  1130. F7381EDA218218C9000B1560 /* NCOffline.swift */,
  1131. );
  1132. path = Offline;
  1133. sourceTree = "<group>";
  1134. };
  1135. F73D11FF253C5F5400DF9BEC /* NCViewerNextcloudText */ = {
  1136. isa = PBXGroup;
  1137. children = (
  1138. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */,
  1139. F73D11F9253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard */,
  1140. );
  1141. path = NCViewerNextcloudText;
  1142. sourceTree = "<group>";
  1143. };
  1144. F73FAEE224D2CA830090692E /* Diagnostics */ = {
  1145. isa = PBXGroup;
  1146. children = (
  1147. F70A58BF24D0545100DED00D /* NCCapabilitiesViewController.storyboard */,
  1148. F70A58BD24D0349500DED00D /* NCCapabilitiesViewController.swift */,
  1149. );
  1150. path = Diagnostics;
  1151. sourceTree = "<group>";
  1152. };
  1153. F74D3DB81BAC1941000BAE4B /* Networking */ = {
  1154. isa = PBXGroup;
  1155. children = (
  1156. F72CD63925C19EBF00F46F9A /* NCAutoUpload.swift */,
  1157. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */,
  1158. F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */,
  1159. F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */,
  1160. F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */,
  1161. F70D8D8024A4A9BF000A5756 /* NCNetworkingProcessUpload.swift */,
  1162. F72A47EB2487B06B005AD489 /* NCOperationQueue.swift */,
  1163. F755BD9A20594AC7008C5FBB /* NCService.swift */,
  1164. );
  1165. path = Networking;
  1166. sourceTree = "<group>";
  1167. };
  1168. F758B41E212C516300515F55 /* ScanDocument */ = {
  1169. isa = PBXGroup;
  1170. children = (
  1171. F758B457212C564000515F55 /* NCScan.storyboard */,
  1172. F758B45D212C569C00515F55 /* NCScanCell.swift */,
  1173. F758B45F212C56A400515F55 /* NCScanCollectionView.swift */,
  1174. );
  1175. path = ScanDocument;
  1176. sourceTree = "<group>";
  1177. };
  1178. F7603298252F0E550015A421 /* Collection Common */ = {
  1179. isa = PBXGroup;
  1180. children = (
  1181. F70D7C3525FFBF81002B9E34 /* NCCollectionViewCommon.swift */,
  1182. AF7E504F27A2D92300B5E4AF /* NCSelectableNavigationView.swift */,
  1183. F78ACD3F21903CC20088454D /* NCGridCell.swift */,
  1184. F78ACD4521903D010088454D /* NCGridCell.xib */,
  1185. F78ACD4121903CE00088454D /* NCListCell.swift */,
  1186. F78ACD4321903CF20088454D /* NCListCell.xib */,
  1187. );
  1188. path = "Collection Common";
  1189. sourceTree = "<group>";
  1190. };
  1191. F7632FC32183667400721B71 /* Section */ = {
  1192. isa = PBXGroup;
  1193. children = (
  1194. F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */,
  1195. F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */,
  1196. F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */,
  1197. );
  1198. path = Section;
  1199. sourceTree = "<group>";
  1200. };
  1201. F765F72E25237E3F00391DBE /* Recent */ = {
  1202. isa = PBXGroup;
  1203. children = (
  1204. F765F73025237E3F00391DBE /* NCRecent.storyboard */,
  1205. F765F72F25237E3F00391DBE /* NCRecent.swift */,
  1206. );
  1207. path = Recent;
  1208. sourceTree = "<group>";
  1209. };
  1210. F76D3CEF2428B3DD005DFA87 /* NCViewerPDF */ = {
  1211. isa = PBXGroup;
  1212. children = (
  1213. F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */,
  1214. F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */,
  1215. F710D1F42405770F00A6033D /* NCViewerPDF.swift */,
  1216. F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */,
  1217. );
  1218. path = NCViewerPDF;
  1219. sourceTree = "<group>";
  1220. };
  1221. F771E3D120E2392D00AFB62D /* File Provider Extension */ = {
  1222. isa = PBXGroup;
  1223. children = (
  1224. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */,
  1225. F771E3F220E239A600AFB62D /* FileProviderData.swift */,
  1226. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */,
  1227. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */,
  1228. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */,
  1229. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */,
  1230. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */,
  1231. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */,
  1232. F76673EF22C90433007ED366 /* FileProviderUtility.swift */,
  1233. );
  1234. path = "File Provider Extension";
  1235. sourceTree = "<group>";
  1236. };
  1237. F7725A5D251F33BB00D125E0 /* Files */ = {
  1238. isa = PBXGroup;
  1239. children = (
  1240. F7725A5F251F33BB00D125E0 /* NCFiles.storyboard */,
  1241. F7725A5E251F33BB00D125E0 /* NCFiles.swift */,
  1242. );
  1243. path = Files;
  1244. sourceTree = "<group>";
  1245. };
  1246. F78ACD4721903F850088454D /* Cell */ = {
  1247. isa = PBXGroup;
  1248. children = (
  1249. F78ACD4821903F850088454D /* NCTrashListCell.swift */,
  1250. F78ACD4921903F850088454D /* NCTrashListCell.xib */,
  1251. );
  1252. path = Cell;
  1253. sourceTree = "<group>";
  1254. };
  1255. F78ACD50219046AC0088454D /* Section Header Footer */ = {
  1256. isa = PBXGroup;
  1257. children = (
  1258. F78ACD53219047D40088454D /* NCSectionFooter.xib */,
  1259. F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */,
  1260. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */,
  1261. );
  1262. path = "Section Header Footer";
  1263. sourceTree = "<group>";
  1264. };
  1265. F78F74322163753B00C2ADAD /* Trash */ = {
  1266. isa = PBXGroup;
  1267. children = (
  1268. F78ACD4721903F850088454D /* Cell */,
  1269. F7632FC32183667400721B71 /* Section */,
  1270. F78F74332163757000C2ADAD /* NCTrash.storyboard */,
  1271. F78F74352163781100C2ADAD /* NCTrash.swift */,
  1272. AF3FDCC12796ECC300710F60 /* NCTrash+CollectionView.swift */,
  1273. );
  1274. path = Trash;
  1275. sourceTree = "<group>";
  1276. };
  1277. F79018B1240962C7007C9B6D /* NCViewerMedia */ = {
  1278. isa = PBXGroup;
  1279. children = (
  1280. F79EDA9E26B004980007D134 /* NCPlayer */,
  1281. F70753F62542A9C000972D44 /* NCViewerMediaPage.storyboard */,
  1282. F70753EA2542A99800972D44 /* NCViewerMediaPage.swift */,
  1283. F718C24D254D507B00C5C256 /* NCViewerMediaDetailView.swift */,
  1284. F70753F02542A9A200972D44 /* NCViewerMedia.swift */,
  1285. );
  1286. path = NCViewerMedia;
  1287. sourceTree = "<group>";
  1288. };
  1289. F79630EC215526B60015EEA5 /* Viewer */ = {
  1290. isa = PBXGroup;
  1291. children = (
  1292. F7F9D1BA25397CE000D9BFF5 /* NCViewer.swift */,
  1293. F7EFA47725ADBA500083159A /* NCViewerProviderContextMenu.swift */,
  1294. F79018B1240962C7007C9B6D /* NCViewerMedia */,
  1295. F723986A253C9C0E00257F49 /* NCViewerQuickLook */,
  1296. F76D3CEF2428B3DD005DFA87 /* NCViewerPDF */,
  1297. F73D11FF253C5F5400DF9BEC /* NCViewerNextcloudText */,
  1298. F7239861253C95D500257F49 /* NCViewerRichdocument */,
  1299. );
  1300. path = Viewer;
  1301. sourceTree = "<group>";
  1302. };
  1303. F79A65C12191D8DC00FF6DCC /* Select */ = {
  1304. isa = PBXGroup;
  1305. children = (
  1306. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */,
  1307. F79A65C52191D95E00FF6DCC /* NCSelect.swift */,
  1308. F7EDE51A262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib */,
  1309. F7EDE513262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib */,
  1310. F7EDE508262DA9D600414FE6 /* NCSelectCommandViewSelect.xib */,
  1311. );
  1312. path = Select;
  1313. sourceTree = "<group>";
  1314. };
  1315. F79EDA9E26B004980007D134 /* NCPlayer */ = {
  1316. isa = PBXGroup;
  1317. children = (
  1318. F79EDAA126B004980007D134 /* NCPlayer.swift */,
  1319. F79EDA9F26B004980007D134 /* NCPlayerToolBar.swift */,
  1320. F716B75E26F09DF600D37EFC /* NCKTVHTTPCache.swift */,
  1321. );
  1322. path = NCPlayer;
  1323. sourceTree = "<group>";
  1324. };
  1325. F7A0D14E259229FA008F8A13 /* Extensions */ = {
  1326. isa = PBXGroup;
  1327. children = (
  1328. F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */,
  1329. F79B869A265E19D40085C0E0 /* NSMutableAttributedString+Extensions.swift */,
  1330. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */,
  1331. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */,
  1332. F7A0D1342591FBC5008F8A13 /* String+Extensions.swift */,
  1333. F70CEF5523E9C7E50007035B /* UIColor+Extensions.swift */,
  1334. F79B645F26CA661600838ACA /* UIControl+Extensions.swift */,
  1335. AF7E504D27A2D8FF00B5E4AF /* UIBarButton+Extension.swift */,
  1336. F713FEFE2472764000214AF6 /* UIImage+animatedGIF.h */,
  1337. AFD3323F276A02C000F5AE02 /* UIApplication+Orientation.swift */,
  1338. F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */,
  1339. F7B7504A2397D38E004E13EC /* UIImage+Extensions.swift */,
  1340. );
  1341. path = Extensions;
  1342. sourceTree = "<group>";
  1343. };
  1344. F7A3214D1E9E2A070069AD1B /* Favorites */ = {
  1345. isa = PBXGroup;
  1346. children = (
  1347. F717402B24F699A5000C87D5 /* NCFavorite.storyboard */,
  1348. F717402C24F699A5000C87D5 /* NCFavorite.swift */,
  1349. );
  1350. path = Favorites;
  1351. sourceTree = "<group>";
  1352. };
  1353. F7A321621E9E37960069AD1B /* Activity */ = {
  1354. isa = PBXGroup;
  1355. children = (
  1356. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */,
  1357. F7C9555421F0C5470024296E /* NCActivity.swift */,
  1358. D5B6AA7727200C7200D49C24 /* NCActivityTableViewCell.swift */,
  1359. );
  1360. path = Activity;
  1361. sourceTree = "<group>";
  1362. };
  1363. F7A80BC7252624C100C7CD01 /* FileViewInFolder */ = {
  1364. isa = PBXGroup;
  1365. children = (
  1366. F7A80BC8252624C100C7CD01 /* NCFileViewInFolder.storyboard */,
  1367. F7A80BC9252624C100C7CD01 /* NCFileViewInFolder.swift */,
  1368. );
  1369. path = FileViewInFolder;
  1370. sourceTree = "<group>";
  1371. };
  1372. F7ACE4281BAC0268006C0017 /* Settings */ = {
  1373. isa = PBXGroup;
  1374. children = (
  1375. F77910A425DD517B00CEDB9E /* Settings.bundle */,
  1376. F77910AA25DD53C700CEDB9E /* NCSettingsBundleHelper.swift */,
  1377. F7CB689F254169530050EC94 /* NCSettings.storyboard */,
  1378. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */,
  1379. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */,
  1380. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */,
  1381. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */,
  1382. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */,
  1383. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */,
  1384. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */,
  1385. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */,
  1386. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */,
  1387. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */,
  1388. F7ACE4301BAC0268006C0017 /* NCSettings.h */,
  1389. F7ACE4311BAC0268006C0017 /* NCSettings.m */,
  1390. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */,
  1391. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */,
  1392. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */,
  1393. );
  1394. path = Settings;
  1395. sourceTree = "<group>";
  1396. };
  1397. F7AE00F6230E8191007ACF8A /* BrowserWeb */ = {
  1398. isa = PBXGroup;
  1399. children = (
  1400. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */,
  1401. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */,
  1402. );
  1403. path = BrowserWeb;
  1404. sourceTree = "<group>";
  1405. };
  1406. F7BAAD951ED5A63D00B7EAD4 /* Data */ = {
  1407. isa = PBXGroup;
  1408. children = (
  1409. F7C1EEA425053A9C00866ACC /* NCDataSource.swift */,
  1410. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */,
  1411. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */,
  1412. AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */,
  1413. AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */,
  1414. AF4BF61827562A4B0081CEEF /* NCManageDatabse+Metadata.swift */,
  1415. F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */,
  1416. );
  1417. path = Data;
  1418. sourceTree = "<group>";
  1419. };
  1420. F7BFFA621A24D7300044ED85 /* Login */ = {
  1421. isa = PBXGroup;
  1422. children = (
  1423. F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */,
  1424. F702F2F025EE5CDA008F8E80 /* NCLogin.storyboard */,
  1425. F702F2F625EE5CEC008F8E80 /* NCLogin.swift */,
  1426. F738D48F2756740100CD1D38 /* NCLoginNavigationController.swift */,
  1427. F745B252222D88AE00346520 /* NCLoginQRCode.swift */,
  1428. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */,
  1429. );
  1430. path = Login;
  1431. sourceTree = "<group>";
  1432. };
  1433. F7BFFA991A24D7BB0044ED85 /* Utility */ = {
  1434. isa = PBXGroup;
  1435. children = (
  1436. F7053E3C1C639DF500741EA5 /* CCUtility.h */,
  1437. F7053E3D1C639DF500741EA5 /* CCUtility.m */,
  1438. F733598025C1C188002ABA72 /* NCAskAuthorization.swift */,
  1439. F765608E23BF813500765969 /* NCContentPresenter.swift */,
  1440. F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */,
  1441. F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */,
  1442. F707C26421A2DC5200F6181E /* NCStoreReview.swift */,
  1443. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */,
  1444. AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */,
  1445. F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */,
  1446. F702F2FC25EE5D2C008F8E80 /* NYMnemonic */,
  1447. );
  1448. path = Utility;
  1449. sourceTree = "<group>";
  1450. };
  1451. F7C0F46D1C8880540059EC54 /* Share */ = {
  1452. isa = PBXGroup;
  1453. children = (
  1454. F714803A262EBE3900693E51 /* MainInterface.storyboard */,
  1455. F7148040262EBE4000693E51 /* NCShareExtension.swift */,
  1456. AF730AF927843E4C00B7520E /* NCShareExtension+NCDelegate.swift */,
  1457. AF22B215277D196700DAB0CC /* NCShareExtension+DataSource.swift */,
  1458. AF22B216277D196700DAB0CC /* NCShareExtension+Files.swift */,
  1459. AF22B20B277C6F4D00DAB0CC /* NCShareCell.swift */,
  1460. F7148046262EBE4B00693E51 /* Share-Bridging-Header.h */,
  1461. );
  1462. path = Share;
  1463. sourceTree = "<group>";
  1464. };
  1465. F7C1CDD91E6DFC6F005D92BE /* Brand */ = {
  1466. isa = PBXGroup;
  1467. children = (
  1468. F7C742D31E7BD36600D9C973 /* Supporting Files */,
  1469. F710E80C1EF95C9C00DC2427 /* Intro */,
  1470. F700222B1EC479840080073F /* Custom.xcassets */,
  1471. F7D0F33D264144FC0097D4A3 /* Background.xcassets */,
  1472. F7B8B82F25681C3400967775 /* GoogleService-Info.plist */,
  1473. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */,
  1474. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */,
  1475. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */,
  1476. );
  1477. path = Brand;
  1478. sourceTree = "<group>";
  1479. };
  1480. F7C5259A1E3B441D00FFE02C /* Notification */ = {
  1481. isa = PBXGroup;
  1482. children = (
  1483. F73B42292476764F00A30FD3 /* NCNotification.storyboard */,
  1484. F73B422A2476764F00A30FD3 /* NCNotification.swift */,
  1485. );
  1486. name = Notification;
  1487. sourceTree = "<group>";
  1488. };
  1489. F7C742D31E7BD36600D9C973 /* Supporting Files */ = {
  1490. isa = PBXGroup;
  1491. children = (
  1492. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */,
  1493. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */,
  1494. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */,
  1495. F7496B81208F5651004B299C /* iOSClient.plist */,
  1496. F728B2BC23E83AD200E12DA0 /* Notification_Service_Extension.entitlements */,
  1497. F728B2BB23E83AD200E12DA0 /* Notification_Service_Extension.plist */,
  1498. F7C742D01E7BD35B00D9C973 /* Share.entitlements */,
  1499. F7496B83208F5652004B299C /* Share.plist */,
  1500. );
  1501. name = "Supporting Files";
  1502. sourceTree = "<group>";
  1503. };
  1504. F7CA213725F1372B00826ABB /* Account Request */ = {
  1505. isa = PBXGroup;
  1506. children = (
  1507. F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */,
  1508. F7CA212B25F1333200826ABB /* NCAccountRequest.swift */,
  1509. );
  1510. path = "Account Request";
  1511. sourceTree = "<group>";
  1512. };
  1513. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */ = {
  1514. isa = PBXGroup;
  1515. children = (
  1516. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */,
  1517. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */,
  1518. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */,
  1519. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */,
  1520. );
  1521. path = RichWorkspace;
  1522. sourceTree = "<group>";
  1523. };
  1524. F7CB68942541670D0050EC94 /* More */ = {
  1525. isa = PBXGroup;
  1526. children = (
  1527. F7EFC0C5256BC77700461AAD /* NCMoreUserCell.xib */,
  1528. F7CB68992541676B0050EC94 /* NCMore.storyboard */,
  1529. F73F537E1E929C8500F8678D /* NCMore.swift */,
  1530. );
  1531. path = More;
  1532. sourceTree = "<group>";
  1533. };
  1534. F7DFB7E9219C5A0500680748 /* Create cloud */ = {
  1535. isa = PBXGroup;
  1536. children = (
  1537. F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */,
  1538. F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */,
  1539. F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */,
  1540. F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */,
  1541. F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */,
  1542. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */,
  1543. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */,
  1544. F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */,
  1545. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */,
  1546. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */,
  1547. );
  1548. path = "Create cloud";
  1549. sourceTree = "<group>";
  1550. };
  1551. F7E9C41320F4CA870040CF18 /* Transfers */ = {
  1552. isa = PBXGroup;
  1553. children = (
  1554. F760329D252F0F8E0015A421 /* NCTransferCell.swift */,
  1555. F760329E252F0F8E0015A421 /* NCTransferCell.xib */,
  1556. F74DE14225135B6800917068 /* NCTransfers.storyboard */,
  1557. F74DE14125135B6800917068 /* NCTransfers.swift */,
  1558. );
  1559. path = Transfers;
  1560. sourceTree = "<group>";
  1561. };
  1562. F7EC9CB921185F2000F1C5CE /* Media */ = {
  1563. isa = PBXGroup;
  1564. children = (
  1565. F720B5B72507B9A5008C94E5 /* Cell */,
  1566. F7501C302212E57400FB1415 /* NCMedia.storyboard */,
  1567. F7501C312212E57400FB1415 /* NCMedia.swift */,
  1568. F7F1E54B2492369A00E42386 /* NCMediaCommandView.xib */,
  1569. );
  1570. path = Media;
  1571. sourceTree = "<group>";
  1572. };
  1573. F7EFC0CB256BF89300461AAD /* UserStatus */ = {
  1574. isa = PBXGroup;
  1575. children = (
  1576. F7EFC0CC256BF8DD00461AAD /* NCUserStatus.swift */,
  1577. F7E0CDCE265CE8610044854E /* NCUserStatus.storyboard */,
  1578. );
  1579. path = UserStatus;
  1580. sourceTree = "<group>";
  1581. };
  1582. F7F67B9F1A24D27800EE80DA = {
  1583. isa = PBXGroup;
  1584. children = (
  1585. F7F67BAA1A24D27800EE80DA /* iOSClient */,
  1586. F7F67BAB1A24D27800EE80DA /* Supporting Files */,
  1587. F771E3D120E2392D00AFB62D /* File Provider Extension */,
  1588. F7C0F46D1C8880540059EC54 /* Share */,
  1589. 2C33C48023E2C475005F963B /* Notification Service Extension */,
  1590. AF8ED1FA2757821000B8DBC4 /* NextcloudTests */,
  1591. F7FC7D651DC1F98700BB2C6A /* Products */,
  1592. F7FC7D541DC1F93700BB2C6A /* Frameworks */,
  1593. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */,
  1594. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */,
  1595. AF8ED1F92757821000B8DBC4 /* NextcloudTests.xctest */,
  1596. );
  1597. sourceTree = "<group>";
  1598. };
  1599. F7F67BAA1A24D27800EE80DA /* iOSClient */ = {
  1600. isa = PBXGroup;
  1601. children = (
  1602. F702F2CC25EE5B4F008F8E80 /* AppDelegate.swift */,
  1603. F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */,
  1604. F7F67BB81A24D27800EE80DA /* Images.xcassets */,
  1605. F7C1CDD91E6DFC6F005D92BE /* Brand */,
  1606. F70211F31BAC56E9003FC03E /* Main */,
  1607. F7A321621E9E37960069AD1B /* Activity */,
  1608. F70B866A2642A21300ED5349 /* BackgroundImageColor */,
  1609. F7AE00F6230E8191007ACF8A /* BrowserWeb */,
  1610. F7BAAD951ED5A63D00B7EAD4 /* Data */,
  1611. F73FAEE224D2CA830090692E /* Diagnostics */,
  1612. F723986F253D867900257F49 /* EmptyView */,
  1613. F7A3214D1E9E2A070069AD1B /* Favorites */,
  1614. F7725A5D251F33BB00D125E0 /* Files */,
  1615. F7A80BC7252624C100C7CD01 /* FileViewInFolder */,
  1616. F7BFFA621A24D7300044ED85 /* Login */,
  1617. F7EC9CB921185F2000F1C5CE /* Media */,
  1618. 371B5A2F23D0B04B00FAFAE9 /* Menu */,
  1619. F7CB68942541670D0050EC94 /* More */,
  1620. F74D3DB81BAC1941000BAE4B /* Networking */,
  1621. F7C5259A1E3B441D00FFE02C /* Notification */,
  1622. F7381ED9218218A4000B1560 /* Offline */,
  1623. F713418B2597513800768D21 /* PushNotification */,
  1624. F765F72E25237E3F00391DBE /* Recent */,
  1625. F70D87CC25EE6E58008CBBBD /* Rename file */,
  1626. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */,
  1627. F758B41E212C516300515F55 /* ScanDocument */,
  1628. F7FE125B1BAC03FB0041924B /* Security */,
  1629. F79A65C12191D8DC00FF6DCC /* Select */,
  1630. F7ACE4281BAC0268006C0017 /* Settings */,
  1631. F728CE741BF6322C00E69702 /* Share */,
  1632. F7169A161EE590930086BD69 /* Shares */,
  1633. F7E9C41320F4CA870040CF18 /* Transfers */,
  1634. F78F74322163753B00C2ADAD /* Trash */,
  1635. F7EFC0CB256BF89300461AAD /* UserStatus */,
  1636. F7A0D14E259229FA008F8A13 /* Extensions */,
  1637. F7BFFA991A24D7BB0044ED85 /* Utility */,
  1638. F79630EC215526B60015EEA5 /* Viewer */,
  1639. );
  1640. path = iOSClient;
  1641. sourceTree = "<group>";
  1642. };
  1643. F7F67BAB1A24D27800EE80DA /* Supporting Files */ = {
  1644. isa = PBXGroup;
  1645. children = (
  1646. F72B60941A24F04E004EF66F /* Localizations */,
  1647. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */,
  1648. );
  1649. name = "Supporting Files";
  1650. path = iOSClient;
  1651. sourceTree = "<group>";
  1652. };
  1653. F7FC7D541DC1F93700BB2C6A /* Frameworks */ = {
  1654. isa = PBXGroup;
  1655. children = (
  1656. F702867E2773609C00ADA8BE /* libiconv.tbd */,
  1657. F702864E27735D1400ADA8BE /* ffmpegkit.xcframework */,
  1658. F702865127735D1500ADA8BE /* gmp.xcframework */,
  1659. F702865A27735D1700ADA8BE /* gnutls.xcframework */,
  1660. F702865227735D1500ADA8BE /* libavcodec.xcframework */,
  1661. F702864D27735D1400ADA8BE /* libavdevice.xcframework */,
  1662. F702865527735D1600ADA8BE /* libavfilter.xcframework */,
  1663. F702865827735D1600ADA8BE /* libavformat.xcframework */,
  1664. F702865327735D1500ADA8BE /* libavutil.xcframework */,
  1665. F702865627735D1600ADA8BE /* libhogweed.xcframework */,
  1666. F702864F27735D1500ADA8BE /* libnettle.xcframework */,
  1667. F702865927735D1600ADA8BE /* libswresample.xcframework */,
  1668. F702865027735D1500ADA8BE /* libswscale.xcframework */,
  1669. F702865427735D1500ADA8BE /* openh264.xcframework */,
  1670. F702865727735D1600ADA8BE /* x264.xcframework */,
  1671. F79BCEEA270B49C800B5B71F /* SwiftUI.framework */,
  1672. F70B86842642CF5500ED5349 /* DropDown.xcframework */,
  1673. F70B86832642CF5500ED5349 /* FSCalendar.xcframework */,
  1674. F70B867E2642CF5400ED5349 /* KTVCocoaHTTPServer.xcframework */,
  1675. F70B86792642CF5300ED5349 /* KTVHTTPCache.xcframework */,
  1676. F70B86802642CF5400ED5349 /* OpenSSL.xcframework */,
  1677. F70B867C2642CF5300ED5349 /* Queuer.xcframework */,
  1678. F70B867F2642CF5400ED5349 /* QuickLayout.xcframework */,
  1679. F70B86812642CF5500ED5349 /* SwiftEntryKit.xcframework */,
  1680. F70B867A2642CF5300ED5349 /* TLPhotoPicker.xcframework */,
  1681. F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */,
  1682. F70B867D2642CF5400ED5349 /* UICKeyChainStore.xcframework */,
  1683. F70B867B2642CF5300ED5349 /* XLForm.xcframework */,
  1684. F70B866F2642CA9500ED5349 /* ChromaColorPicker.xcframework */,
  1685. F7B1076C25D3CF2800E72DE2 /* BackgroundTasks.framework */,
  1686. F7F35B592578FB63003F5589 /* CollaboraOnlineWebViewKeyboardManager.framework */,
  1687. F7176DDA256672D90017E83C /* libsqlite3.tbd */,
  1688. F7176DB9256672640017E83C /* FIRAnalyticsConnector.framework */,
  1689. F7176DB7256672640017E83C /* FirebaseAnalytics.framework */,
  1690. F7176DB6256672640017E83C /* FirebaseCore.framework */,
  1691. F7176DAF256672630017E83C /* FirebaseCoreDiagnostics.framework */,
  1692. F7176DAE256672630017E83C /* FirebaseCrashlytics.framework */,
  1693. F7176DB1256672630017E83C /* FirebaseInstallations.framework */,
  1694. F7176DB8256672640017E83C /* GoogleAppMeasurement.framework */,
  1695. F7176DB0256672630017E83C /* GoogleDataTransport.framework */,
  1696. F7176DB3256672630017E83C /* GoogleUtilities.framework */,
  1697. F7176DB4256672630017E83C /* nanopb.framework */,
  1698. F7176DB2256672630017E83C /* PromisesObjC.framework */,
  1699. F7176DB5256672640017E83C /* Protobuf.framework */,
  1700. F76FDEAA24859C3D0095B6C2 /* Queuer.framework */,
  1701. F710C5EF2471A6D1009AD8B7 /* Sentry.framework */,
  1702. F7AF7632246BEDFE00B86E3C /* TOPasscodeViewController.framework */,
  1703. F7D2C772246470CA008513AE /* XLForm.framework */,
  1704. F79018A424092EF4007C9B6D /* ATGMediaBrowser.framework */,
  1705. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */,
  1706. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */,
  1707. F765608A23BF80A400765969 /* SwiftEntryKit.framework */,
  1708. F765608623BF806C00765969 /* QuickLayout.framework */,
  1709. F716FE7723795E5000FABE50 /* NCCommunication.framework */,
  1710. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */,
  1711. F736B551234DCF57008A5C9F /* Alamofire.framework */,
  1712. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */,
  1713. F774264022EB3F7300B23912 /* DropDown.framework */,
  1714. F74AFCE822E8B024003DE61F /* FSCalendar.framework */,
  1715. F700510222DF6897003A3356 /* Parchment.framework */,
  1716. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */,
  1717. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */,
  1718. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */,
  1719. F76E71E42244DF6900690001 /* Zip.framework */,
  1720. F745B250222D871800346520 /* QRCodeReader.framework */,
  1721. F75153232226920200323DDC /* FastScroll.framework */,
  1722. F78AA20521F783E900D0F205 /* SwiftRichString.framework */,
  1723. F72E0B9C21AD60BC00898D7B /* WeScan.framework */,
  1724. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */,
  1725. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */,
  1726. F7063DEC2199E55F003F38DA /* SVGKit.framework */,
  1727. F7C40C112199BA620004137E /* RealmSwift.framework */,
  1728. F7C40C0F2199BA5D0004137E /* Realm.framework */,
  1729. F7C40BF22199978B0004137E /* MBProgressHUD.framework */,
  1730. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */,
  1731. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */,
  1732. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */,
  1733. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */,
  1734. F7C40BE8219991A60004137E /* EAIntroView.framework */,
  1735. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */,
  1736. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */,
  1737. F7C40BE221998C050004137E /* PDFGenerator.framework */,
  1738. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */,
  1739. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */,
  1740. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */,
  1741. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */,
  1742. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */,
  1743. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */,
  1744. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */,
  1745. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */,
  1746. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */,
  1747. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */,
  1748. F7FC7D551DC1F93800BB2C6A /* libz.tbd */,
  1749. );
  1750. name = Frameworks;
  1751. sourceTree = "<group>";
  1752. };
  1753. F7FC7D651DC1F98700BB2C6A /* Products */ = {
  1754. isa = PBXGroup;
  1755. children = (
  1756. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */,
  1757. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */,
  1758. );
  1759. name = Products;
  1760. sourceTree = "<group>";
  1761. };
  1762. F7FE125B1BAC03FB0041924B /* Security */ = {
  1763. isa = PBXGroup;
  1764. children = (
  1765. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */,
  1766. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */,
  1767. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */,
  1768. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */,
  1769. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */,
  1770. F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */,
  1771. F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */,
  1772. );
  1773. path = Security;
  1774. sourceTree = "<group>";
  1775. };
  1776. /* End PBXGroup section */
  1777. /* Begin PBXNativeTarget section */
  1778. 2C33C47E23E2C475005F963B /* Notification Service Extension */ = {
  1779. isa = PBXNativeTarget;
  1780. buildConfigurationList = 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */;
  1781. buildPhases = (
  1782. 2C33C47B23E2C475005F963B /* Sources */,
  1783. 2C33C47C23E2C475005F963B /* Frameworks */,
  1784. 2C33C47D23E2C475005F963B /* Resources */,
  1785. );
  1786. buildRules = (
  1787. );
  1788. dependencies = (
  1789. );
  1790. name = "Notification Service Extension";
  1791. packageProductDependencies = (
  1792. F786D596253454D800E3DD7B /* NCCommunication */,
  1793. F75E57C225BF0ED2002B72C2 /* SVGKit */,
  1794. F710FC85277B7D3F00AA9FBF /* Realm */,
  1795. F710FC87277B7D3F00AA9FBF /* RealmSwift */,
  1796. F7EBCDD2277B821700A4EF67 /* UICKeyChainStore */,
  1797. F7EBCDD8277B834F00A4EF67 /* Queuer */,
  1798. );
  1799. productName = "Notification Service Extension";
  1800. productReference = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */;
  1801. productType = "com.apple.product-type.app-extension";
  1802. };
  1803. AF8ED1F82757821000B8DBC4 /* NextcloudTests */ = {
  1804. isa = PBXNativeTarget;
  1805. buildConfigurationList = AF8ED2012757821000B8DBC4 /* Build configuration list for PBXNativeTarget "NextcloudTests" */;
  1806. buildPhases = (
  1807. AF8ED1F52757821000B8DBC4 /* Sources */,
  1808. AF8ED1F62757821000B8DBC4 /* Frameworks */,
  1809. AF8ED1F72757821000B8DBC4 /* Resources */,
  1810. );
  1811. buildRules = (
  1812. );
  1813. dependencies = (
  1814. AF8ED1FE2757821000B8DBC4 /* PBXTargetDependency */,
  1815. );
  1816. name = NextcloudTests;
  1817. productName = NextcloudTests;
  1818. productReference = AF8ED1F92757821000B8DBC4 /* NextcloudTests.xctest */;
  1819. productType = "com.apple.product-type.bundle.unit-test";
  1820. };
  1821. F71459B41D12E3B700CAFEEC /* Share */ = {
  1822. isa = PBXNativeTarget;
  1823. buildConfigurationList = F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */;
  1824. buildPhases = (
  1825. F71459B51D12E3B700CAFEEC /* Sources */,
  1826. F7145A141D12E3B700CAFEEC /* Frameworks */,
  1827. F7145A181D12E3B700CAFEEC /* Resources */,
  1828. );
  1829. buildRules = (
  1830. );
  1831. dependencies = (
  1832. );
  1833. name = Share;
  1834. packageProductDependencies = (
  1835. F786D592253454CE00E3DD7B /* NCCommunication */,
  1836. F75E57BE25BF0EC8002B72C2 /* SVGKit */,
  1837. F72D7EB6263B1207000B3DFC /* MarkdownKit */,
  1838. F73ADD2026554F8E0069EA0D /* SwiftEntryKit */,
  1839. F710FC7D277B7D2600AA9FBF /* Realm */,
  1840. F710FC7F277B7D2700AA9FBF /* RealmSwift */,
  1841. F7EBCDCE277B81FF00A4EF67 /* UICKeyChainStore */,
  1842. F7EBCDD4277B82DE00A4EF67 /* Queuer */,
  1843. F72CD01127A7E92400E59476 /* JGProgressHUD */,
  1844. );
  1845. productName = "Share Ext";
  1846. productReference = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */;
  1847. productType = "com.apple.product-type.app-extension";
  1848. };
  1849. F771E3CF20E2392D00AFB62D /* File Provider Extension */ = {
  1850. isa = PBXNativeTarget;
  1851. buildConfigurationList = F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */;
  1852. buildPhases = (
  1853. F771E3CC20E2392D00AFB62D /* Sources */,
  1854. F771E3CD20E2392D00AFB62D /* Frameworks */,
  1855. F771E3CE20E2392D00AFB62D /* Resources */,
  1856. );
  1857. buildRules = (
  1858. );
  1859. dependencies = (
  1860. );
  1861. name = "File Provider Extension";
  1862. packageProductDependencies = (
  1863. F786D594253454D300E3DD7B /* NCCommunication */,
  1864. F75E57C025BF0ECD002B72C2 /* SVGKit */,
  1865. F73ADD2326554FE20069EA0D /* SwiftEntryKit */,
  1866. F710FC81277B7D3500AA9FBF /* Realm */,
  1867. F710FC83277B7D3500AA9FBF /* RealmSwift */,
  1868. F7EBCDD0277B820D00A4EF67 /* UICKeyChainStore */,
  1869. F7EBCDD6277B834400A4EF67 /* Queuer */,
  1870. );
  1871. productName = "File Provider Extension";
  1872. productReference = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */;
  1873. productType = "com.apple.product-type.app-extension";
  1874. };
  1875. F77B0DEB1D118A16002130FE /* Nextcloud */ = {
  1876. isa = PBXNativeTarget;
  1877. buildConfigurationList = F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */;
  1878. buildPhases = (
  1879. F77B0DEF1D118A16002130FE /* Sources */,
  1880. F77B0EDC1D118A16002130FE /* Frameworks */,
  1881. F77B0EE91D118A16002130FE /* Resources */,
  1882. F77B0F981D118A16002130FE /* Embed App Extensions */,
  1883. F7439BF8265669E800406313 /* Run Script */,
  1884. AFBFD01327551A54002244BC /* ShellScript */,
  1885. F76DA934277B75710082465B /* Embed Frameworks */,
  1886. );
  1887. buildRules = (
  1888. );
  1889. dependencies = (
  1890. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */,
  1891. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */,
  1892. 2C33C48523E2C475005F963B /* PBXTargetDependency */,
  1893. );
  1894. name = Nextcloud;
  1895. packageProductDependencies = (
  1896. F786D58C253454BF00E3DD7B /* NCCommunication */,
  1897. F75E57BC25BF0EC1002B72C2 /* SVGKit */,
  1898. F7ED547B25EEA65400956C55 /* QRCodeReader */,
  1899. F72DA9B325F53E4E00B87DB1 /* SwiftRichString */,
  1900. F770768D263A8C3400A1BA94 /* FloatingPanel */,
  1901. F788ECC6263AAAFA00ADC67F /* MarkdownKit */,
  1902. F70B86742642CE3B00ED5349 /* FirebaseCrashlytics */,
  1903. F73ADD1B265546890069EA0D /* SwiftEntryKit */,
  1904. F75EAED726D2552E00F4320E /* MarqueeLabel */,
  1905. F74E771F277A2EF40013B958 /* XLForm */,
  1906. F76DA962277B760E0082465B /* Queuer */,
  1907. F76DA965277B76F30082465B /* UICKeyChainStore */,
  1908. F76DA968277B77EA0082465B /* DropDown */,
  1909. F76DA96B277B78400082465B /* FSCalendar */,
  1910. F76DA96E277B78AE0082465B /* TLPhotoPicker */,
  1911. F710FC79277B7D0000AA9FBF /* Realm */,
  1912. F710FC7B277B7D0000AA9FBF /* RealmSwift */,
  1913. F7233B3927835FA400F40A43 /* ChromaColorPicker */,
  1914. F7BB7E4627A18C56009B9F29 /* Parchment */,
  1915. F758A01127A7F03E0069468B /* JGProgressHUD */,
  1916. );
  1917. productName = "Crypto Cloud";
  1918. productReference = F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */;
  1919. productType = "com.apple.product-type.application";
  1920. };
  1921. /* End PBXNativeTarget section */
  1922. /* Begin PBXProject section */
  1923. F7F67BA01A24D27800EE80DA /* Project object */ = {
  1924. isa = PBXProject;
  1925. attributes = {
  1926. LastSwiftUpdateCheck = 1310;
  1927. LastUpgradeCheck = 1250;
  1928. ORGANIZATIONNAME = "Marino Faggiana";
  1929. TargetAttributes = {
  1930. 2C33C47E23E2C475005F963B = {
  1931. CreatedOnToolsVersion = 11.3.1;
  1932. DevelopmentTeam = 6JLRKY9ZV7;
  1933. ProvisioningStyle = Automatic;
  1934. };
  1935. AF8ED1F82757821000B8DBC4 = {
  1936. CreatedOnToolsVersion = 13.1;
  1937. TestTargetID = F77B0DEB1D118A16002130FE;
  1938. };
  1939. F71459B41D12E3B700CAFEEC = {
  1940. DevelopmentTeam = 6JLRKY9ZV7;
  1941. LastSwiftMigration = 1020;
  1942. SystemCapabilities = {
  1943. com.apple.ApplicationGroups.iOS = {
  1944. enabled = 1;
  1945. };
  1946. com.apple.iCloud = {
  1947. enabled = 0;
  1948. };
  1949. };
  1950. };
  1951. F771E3CF20E2392D00AFB62D = {
  1952. CreatedOnToolsVersion = 9.4.1;
  1953. DevelopmentTeam = 6JLRKY9ZV7;
  1954. LastSwiftMigration = 1020;
  1955. ProvisioningStyle = Automatic;
  1956. };
  1957. F77B0DEB1D118A16002130FE = {
  1958. LastSwiftMigration = 1020;
  1959. ProvisioningStyle = Automatic;
  1960. SystemCapabilities = {
  1961. com.apple.Push = {
  1962. enabled = 1;
  1963. };
  1964. com.apple.iCloud = {
  1965. enabled = 1;
  1966. };
  1967. };
  1968. };
  1969. };
  1970. };
  1971. buildConfigurationList = F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */;
  1972. compatibilityVersion = "Xcode 3.2";
  1973. developmentRegion = en;
  1974. hasScannedForEncodings = 0;
  1975. knownRegions = (
  1976. en,
  1977. Base,
  1978. de,
  1979. fr,
  1980. "pt-BR",
  1981. ru,
  1982. it,
  1983. tr,
  1984. "es-MX",
  1985. "nb-NO",
  1986. pl,
  1987. sv,
  1988. es,
  1989. is,
  1990. nl,
  1991. "sk-SK",
  1992. "en-GB",
  1993. "zh-Hans",
  1994. "ka-GE",
  1995. hu,
  1996. "zh-Hant-TW",
  1997. sr,
  1998. "es-CL",
  1999. "es-CO",
  2000. "es-CR",
  2001. "es-DO",
  2002. "es-EC",
  2003. "es-GT",
  2004. "es-HN",
  2005. "es-NI",
  2006. "es-PA",
  2007. "es-PE",
  2008. "es-PR",
  2009. "es-PY",
  2010. "es-SV",
  2011. "es-UY",
  2012. "cs-CZ",
  2013. ko,
  2014. "es-419",
  2015. "pt-PT",
  2016. "ja-JP",
  2017. gl,
  2018. ca,
  2019. da,
  2020. );
  2021. mainGroup = F7F67B9F1A24D27800EE80DA;
  2022. packageReferences = (
  2023. F786D58B253454BF00E3DD7B /* XCRemoteSwiftPackageReference "ios-communication-library" */,
  2024. F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */,
  2025. F7ED547A25EEA65400956C55 /* XCRemoteSwiftPackageReference "QRCodeReader" */,
  2026. F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */,
  2027. F770768C263A8C3400A1BA94 /* XCRemoteSwiftPackageReference "FloatingPanel" */,
  2028. F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */,
  2029. F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */,
  2030. F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */,
  2031. F75EAED626D2552E00F4320E /* XCRemoteSwiftPackageReference "MarqueeLabel" */,
  2032. F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */,
  2033. F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */,
  2034. F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */,
  2035. F76DA967277B77E90082465B /* XCRemoteSwiftPackageReference "DropDown" */,
  2036. F76DA96A277B78400082465B /* XCRemoteSwiftPackageReference "FSCalendar" */,
  2037. F76DA96D277B78AE0082465B /* XCRemoteSwiftPackageReference "TLPhotoPicker" */,
  2038. F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */,
  2039. F7233B3827835FA300F40A43 /* XCRemoteSwiftPackageReference "ChromaColorPicker" */,
  2040. F7BB7E4527A18C56009B9F29 /* XCRemoteSwiftPackageReference "Parchment" */,
  2041. F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */,
  2042. );
  2043. productRefGroup = F7F67B9F1A24D27800EE80DA;
  2044. projectDirPath = "";
  2045. projectRoot = "";
  2046. targets = (
  2047. F77B0DEB1D118A16002130FE /* Nextcloud */,
  2048. F71459B41D12E3B700CAFEEC /* Share */,
  2049. F771E3CF20E2392D00AFB62D /* File Provider Extension */,
  2050. 2C33C47E23E2C475005F963B /* Notification Service Extension */,
  2051. AF8ED1F82757821000B8DBC4 /* NextcloudTests */,
  2052. );
  2053. };
  2054. /* End PBXProject section */
  2055. /* Begin PBXResourcesBuildPhase section */
  2056. 2C33C47D23E2C475005F963B /* Resources */ = {
  2057. isa = PBXResourcesBuildPhase;
  2058. buildActionMask = 2147483647;
  2059. files = (
  2060. F746EC53273906C50052598D /* NCViewCertificateDetails.storyboard in Resources */,
  2061. );
  2062. runOnlyForDeploymentPostprocessing = 0;
  2063. };
  2064. AF8ED1F72757821000B8DBC4 /* Resources */ = {
  2065. isa = PBXResourcesBuildPhase;
  2066. buildActionMask = 2147483647;
  2067. files = (
  2068. );
  2069. runOnlyForDeploymentPostprocessing = 0;
  2070. };
  2071. F7145A181D12E3B700CAFEEC /* Resources */ = {
  2072. isa = PBXResourcesBuildPhase;
  2073. buildActionMask = 2147483647;
  2074. files = (
  2075. F7148059262ED52200693E51 /* NCSectionHeaderMenu.xib in Resources */,
  2076. F714803B262EBE3900693E51 /* MainInterface.storyboard in Resources */,
  2077. F7148054262ED51000693E51 /* NCListCell.xib in Resources */,
  2078. F7D57C8626317BDA00DE301D /* NCAccountRequest.storyboard in Resources */,
  2079. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */,
  2080. AF22B209277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.xib in Resources */,
  2081. F7148063262ED66200693E51 /* NCEmptyView.xib in Resources */,
  2082. AF22B207277B4E4C00DAB0CC /* NCCreateFormUploadConflict.storyboard in Resources */,
  2083. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */,
  2084. F746EC51273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */,
  2085. F79EC784263161BA004E59D6 /* NCRenameFile.storyboard in Resources */,
  2086. F714804F262ED4F900693E51 /* NCGridCell.xib in Resources */,
  2087. F714805E262ED52900693E51 /* NCSectionFooter.xib in Resources */,
  2088. F700222D1EC479840080073F /* Custom.xcassets in Resources */,
  2089. );
  2090. runOnlyForDeploymentPostprocessing = 0;
  2091. };
  2092. F771E3CE20E2392D00AFB62D /* Resources */ = {
  2093. isa = PBXResourcesBuildPhase;
  2094. buildActionMask = 2147483647;
  2095. files = (
  2096. F746EC52273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */,
  2097. );
  2098. runOnlyForDeploymentPostprocessing = 0;
  2099. };
  2100. F77B0EE91D118A16002130FE /* Resources */ = {
  2101. isa = PBXResourcesBuildPhase;
  2102. buildActionMask = 2147483647;
  2103. files = (
  2104. F79728D422F96F2E003CACA7 /* NCShareLinkFolderMenuView.xib in Resources */,
  2105. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */,
  2106. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */,
  2107. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */,
  2108. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */,
  2109. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */,
  2110. F7A80BCA252624C100C7CD01 /* NCFileViewInFolder.storyboard in Resources */,
  2111. F76D3CF52428D0C1005DFA87 /* NCViewerPDF.storyboard in Resources */,
  2112. F700222C1EC479840080073F /* Custom.xcassets in Resources */,
  2113. F702F2F125EE5CDB008F8E80 /* NCLogin.storyboard in Resources */,
  2114. F723985C253C95CE00257F49 /* NCViewerRichdocument.storyboard in Resources */,
  2115. F758B45A212C564000515F55 /* NCScan.storyboard in Resources */,
  2116. F70D87CF25EE6E58008CBBBD /* NCRenameFile.storyboard in Resources */,
  2117. F765F73225237E3F00391DBE /* NCRecent.storyboard in Resources */,
  2118. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */,
  2119. F702F30225EE5D2C008F8E80 /* english.txt in Resources */,
  2120. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */,
  2121. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */,
  2122. F7EFC0C6256BC77700461AAD /* NCMoreUserCell.xib in Resources */,
  2123. F702F2E725EE5C86008F8E80 /* NCAudioRecorderViewController.storyboard in Resources */,
  2124. F7632FBF21832F8700721B71 /* NCTrashSectionHeaderMenu.xib in Resources */,
  2125. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */,
  2126. F7D0F33E264144FC0097D4A3 /* Background.xcassets in Resources */,
  2127. F7F1E54C2492369A00E42386 /* NCMediaCommandView.xib in Resources */,
  2128. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */,
  2129. F76032A0252F0F8E0015A421 /* NCTransferCell.xib in Resources */,
  2130. F74C0437253F1CDC009762AB /* NCShares.storyboard in Resources */,
  2131. F7B8B83025681C3400967775 /* GoogleService-Info.plist in Resources */,
  2132. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */,
  2133. F7E0CDCF265CE8610044854E /* NCUserStatus.storyboard in Resources */,
  2134. F76D3CF32428B94E005DFA87 /* NCViewerPDFSearchCell.xib in Resources */,
  2135. F769453E22E9E97E000A798A /* NCShareUserMenuView.xib in Resources */,
  2136. F7CA212E25F1333300826ABB /* NCAccountRequest.storyboard in Resources */,
  2137. F749C10E23C4A5340027D966 /* NCIntroCollectionViewCell.xib in Resources */,
  2138. F717402D24F699A5000C87D5 /* NCFavorite.storyboard in Resources */,
  2139. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */,
  2140. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */,
  2141. F7725A61251F33BB00D125E0 /* NCFiles.storyboard in Resources */,
  2142. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */,
  2143. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */,
  2144. F70753F72542A9C000972D44 /* NCViewerMediaPage.storyboard in Resources */,
  2145. F70A58C024D0545100DED00D /* NCCapabilitiesViewController.storyboard in Resources */,
  2146. F749C10D23C4A5340027D966 /* NCIntro.storyboard in Resources */,
  2147. F7239877253D86D300257F49 /* NCEmptyView.xib in Resources */,
  2148. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */,
  2149. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */,
  2150. F704B5E72430C06700632F5F /* NCCreateFormUploadConflictCell.xib in Resources */,
  2151. F79728D622F9A0B1003CACA7 /* NCShareUserFolderMenuView.xib in Resources */,
  2152. F7DFAA8A22E22EF100FC4527 /* NCShareLinkMenuView.xib in Resources */,
  2153. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */,
  2154. F7BC287E26663F6C004D46C5 /* NCViewCertificateDetails.storyboard in Resources */,
  2155. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */,
  2156. F704B5E32430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard in Resources */,
  2157. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */,
  2158. F7EDE509262DA9D600414FE6 /* NCSelectCommandViewSelect.xib in Resources */,
  2159. F73D11FA253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard in Resources */,
  2160. F7EDE51B262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib in Resources */,
  2161. F73B422B2476764F00A30FD3 /* NCNotification.storyboard in Resources */,
  2162. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */,
  2163. F77B0F631D118A16002130FE /* Localizable.strings in Resources */,
  2164. F7632FC1218353AA00721B71 /* NCTrashSectionFooter.xib in Resources */,
  2165. F774264A22EB4D0000B23912 /* NCShareUserDropDownCell.xib in Resources */,
  2166. F7CB689A2541676B0050EC94 /* NCMore.storyboard in Resources */,
  2167. F70B866D2642A21300ED5349 /* NCBackgroundImageColor.storyboard in Resources */,
  2168. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */,
  2169. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */,
  2170. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */,
  2171. F7EDE514262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib in Resources */,
  2172. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */,
  2173. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */,
  2174. F74DE14425135B6800917068 /* NCTransfers.storyboard in Resources */,
  2175. F77910A525DD517B00CEDB9E /* Settings.bundle in Resources */,
  2176. F7CB68A0254169530050EC94 /* NCSettings.storyboard in Resources */,
  2177. );
  2178. runOnlyForDeploymentPostprocessing = 0;
  2179. };
  2180. /* End PBXResourcesBuildPhase section */
  2181. /* Begin PBXShellScriptBuildPhase section */
  2182. AFBFD01327551A54002244BC /* ShellScript */ = {
  2183. isa = PBXShellScriptBuildPhase;
  2184. buildActionMask = 2147483647;
  2185. files = (
  2186. );
  2187. inputFileListPaths = (
  2188. );
  2189. inputPaths = (
  2190. );
  2191. outputFileListPaths = (
  2192. );
  2193. outputPaths = (
  2194. );
  2195. runOnlyForDeploymentPostprocessing = 0;
  2196. shellPath = /bin/sh;
  2197. shellScript = "if test -d \"/opt/homebrew/bin/\"; then\n PATH=\"/opt/homebrew/bin/:${PATH}\"\nfi\n\nexport PATH\n\nif which swiftlint >/dev/null; then\n swiftlint\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
  2198. };
  2199. F7439BF8265669E800406313 /* Run Script */ = {
  2200. isa = PBXShellScriptBuildPhase;
  2201. buildActionMask = 2147483647;
  2202. files = (
  2203. );
  2204. inputFileListPaths = (
  2205. );
  2206. inputPaths = (
  2207. );
  2208. name = "Run Script";
  2209. outputFileListPaths = (
  2210. );
  2211. outputPaths = (
  2212. );
  2213. runOnlyForDeploymentPostprocessing = 0;
  2214. shellPath = /bin/sh;
  2215. shellScript = "# Type a script or drag a script file from your workspace to insert its path.\n\nTAGS=\"TODO:|FIXME:\"\nERRORTAG=\"ERROR:\"\nfind \"${SRCROOT}\" \\( -name \"*.h\" -or -name \"*.m\" -or -name \"*.swift\" \\) -print0 | xargs -0 egrep --with-filename --line-number --only-matching \"($TAGS).*\\$|($ERRORTAG).*\\$\" | perl -p -e \"s/($TAGS)/ warning: \\$1/\" | perl -p -e \"s/($ERRORTAG)/ error: \\$1/\"\n";
  2216. };
  2217. /* End PBXShellScriptBuildPhase section */
  2218. /* Begin PBXSourcesBuildPhase section */
  2219. 2C33C47B23E2C475005F963B /* Sources */ = {
  2220. isa = PBXSourcesBuildPhase;
  2221. buildActionMask = 2147483647;
  2222. files = (
  2223. F785EEA52461A4CF00B3F945 /* CCUtility.m in Sources */,
  2224. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */,
  2225. F770768A263A8A2500A1BA94 /* NCUtilityFileSystem.swift in Sources */,
  2226. F746EC50273906BA0052598D /* NCViewCertificateDetails.swift in Sources */,
  2227. AF4BF62127562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
  2228. F702F2D225EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
  2229. F7707689263A896A00A1BA94 /* UIImage+Extensions.swift in Sources */,
  2230. 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */,
  2231. 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */,
  2232. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */,
  2233. AF4BF617275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
  2234. D575039F27146F93008DC9DC /* String+Extensions.swift in Sources */,
  2235. F73D5E4A246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
  2236. F79B646326CA661600838ACA /* UIControl+Extensions.swift in Sources */,
  2237. AF4BF61C27562A4B0081CEEF /* NCManageDatabse+Metadata.swift in Sources */,
  2238. AF817EF4274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
  2239. F798F0EC2588060A000DAFFD /* UIColor+Extensions.swift in Sources */,
  2240. 2CB7D1CA23E2EDCB00376EF9 /* NCPushNotificationEncryption.m in Sources */,
  2241. F782FDC424E6933900666099 /* NCUtility.swift in Sources */,
  2242. );
  2243. runOnlyForDeploymentPostprocessing = 0;
  2244. };
  2245. AF8ED1F52757821000B8DBC4 /* Sources */ = {
  2246. isa = PBXSourcesBuildPhase;
  2247. buildActionMask = 2147483647;
  2248. files = (
  2249. AF8ED1FC2757821000B8DBC4 /* NextcloudTests.swift in Sources */,
  2250. AF8ED2032757822700B8DBC4 /* NCGlobalTests.swift in Sources */,
  2251. );
  2252. runOnlyForDeploymentPostprocessing = 0;
  2253. };
  2254. F71459B51D12E3B700CAFEEC /* Sources */ = {
  2255. isa = PBXSourcesBuildPhase;
  2256. buildActionMask = 2147483647;
  2257. files = (
  2258. F746EC4E273906B80052598D /* NCViewCertificateDetails.swift in Sources */,
  2259. F73D5E48246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
  2260. F7EDE4E5262D7BBE00414FE6 /* NCSectionHeaderFooter.swift in Sources */,
  2261. F79EC78926316AC4004E59D6 /* NCPopupViewController.swift in Sources */,
  2262. AF4BF61F27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
  2263. F7A0D1362591FBC5008F8A13 /* String+Extensions.swift in Sources */,
  2264. F7EDE4D6262D7B9600414FE6 /* NCListCell.swift in Sources */,
  2265. F7707687263A853700A1BA94 /* NCContentPresenter.swift in Sources */,
  2266. F70460532499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */,
  2267. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */,
  2268. AF22B20C277C6F4D00DAB0CC /* NCShareCell.swift in Sources */,
  2269. F79B646126CA661600838ACA /* UIControl+Extensions.swift in Sources */,
  2270. F7EDE4CC262D7B6F00414FE6 /* NCEmptyDataSet.swift in Sources */,
  2271. AF4BF61A27562A4B0081CEEF /* NCManageDatabse+Metadata.swift in Sources */,
  2272. AF4BF615275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
  2273. F798F0E225880608000DAFFD /* UIColor+Extensions.swift in Sources */,
  2274. AF3FDCC32796F3FB00710F60 /* NCTrashListCell.swift in Sources */,
  2275. AF817EF2274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
  2276. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */,
  2277. F74AF3A5247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */,
  2278. AF22B206277B4E4C00DAB0CC /* NCCreateFormUploadConflict.swift in Sources */,
  2279. F7BD71E62636EAFC00643C34 /* NCNetworkingE2EE.swift in Sources */,
  2280. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  2281. AF22B218277D196700DAB0CC /* NCShareExtension+Files.swift in Sources */,
  2282. F702F2D025EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
  2283. F7EDE4DB262D7BA200414FE6 /* NCCellProtocol.swift in Sources */,
  2284. F7EDE4D1262D7B8400414FE6 /* NCDataSource.swift in Sources */,
  2285. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */,
  2286. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */,
  2287. AF730AFA27843E4C00B7520E /* NCShareExtension+NCDelegate.swift in Sources */,
  2288. F7EDE4E0262D7BAF00414FE6 /* NCGridCell.swift in Sources */,
  2289. F7A76DC8256A71CD00119AB3 /* UIImage+Extensions.swift in Sources */,
  2290. F7B8CD96261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */,
  2291. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  2292. F7D57C8B26317BDE00DE301D /* NCAccountRequest.swift in Sources */,
  2293. AF22B217277D196700DAB0CC /* NCShareExtension+DataSource.swift in Sources */,
  2294. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  2295. F79EC77F26316193004E59D6 /* NCRenameFile.swift in Sources */,
  2296. AF22B208277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.swift in Sources */,
  2297. F7148041262EBE4000693E51 /* NCShareExtension.swift in Sources */,
  2298. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  2299. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  2300. );
  2301. runOnlyForDeploymentPostprocessing = 0;
  2302. };
  2303. F771E3CC20E2392D00AFB62D /* Sources */ = {
  2304. isa = PBXSourcesBuildPhase;
  2305. buildActionMask = 2147483647;
  2306. files = (
  2307. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */,
  2308. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */,
  2309. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */,
  2310. F702F2D125EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
  2311. F7434B3820E2400600417916 /* NCBrand.swift in Sources */,
  2312. F785EE9E2461A09900B3F945 /* NCNetworking.swift in Sources */,
  2313. F746EC4F273906B90052598D /* NCViewCertificateDetails.swift in Sources */,
  2314. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */,
  2315. F73D5E49246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
  2316. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */,
  2317. AF4BF616275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
  2318. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */,
  2319. F798F0E725880609000DAFFD /* UIColor+Extensions.swift in Sources */,
  2320. AF4BF61B27562A4B0081CEEF /* NCManageDatabse+Metadata.swift in Sources */,
  2321. F70460542499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */,
  2322. F785EEA42461A4A600B3F945 /* NCUtility.swift in Sources */,
  2323. F79B646226CA661600838ACA /* UIControl+Extensions.swift in Sources */,
  2324. AF817EF3274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
  2325. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */,
  2326. F7B8CD9B261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */,
  2327. F7A0D1372591FBC5008F8A13 /* String+Extensions.swift in Sources */,
  2328. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */,
  2329. F74AF3A6247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */,
  2330. F7A76DCD256A71CE00119AB3 /* UIImage+Extensions.swift in Sources */,
  2331. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */,
  2332. AF4BF62027562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
  2333. F785EEA62461A4FB00B3F945 /* CCUtility.m in Sources */,
  2334. F73ADD2226554FD10069EA0D /* NCContentPresenter.swift in Sources */,
  2335. );
  2336. runOnlyForDeploymentPostprocessing = 0;
  2337. };
  2338. F77B0DEF1D118A16002130FE /* Sources */ = {
  2339. isa = PBXSourcesBuildPhase;
  2340. buildActionMask = 2147483647;
  2341. files = (
  2342. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */,
  2343. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */,
  2344. F702F30825EE5D47008F8E80 /* NCPopupViewController.swift in Sources */,
  2345. F70A58BE24D0349500DED00D /* NCCapabilitiesViewController.swift in Sources */,
  2346. F733598125C1C188002ABA72 /* NCAskAuthorization.swift in Sources */,
  2347. 370D26AF248A3D7A00121797 /* NCCellProtocol.swift in Sources */,
  2348. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */,
  2349. F70D87D025EE6E58008CBBBD /* NCRenameFile.swift in Sources */,
  2350. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */,
  2351. F70B866E2642A21300ED5349 /* NCBackgroundImageColor.swift in Sources */,
  2352. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */,
  2353. F75B0ABD244C4DBB00E58DCA /* NCFunctionCenter.swift in Sources */,
  2354. AF935067276B84E700BD078F /* NCMenu+FloatingPanel.swift in Sources */,
  2355. F702F2CD25EE5B4F008F8E80 /* AppDelegate.swift in Sources */,
  2356. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */,
  2357. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */,
  2358. F76D3CF12428B40E005DFA87 /* NCViewerPDFSearch.swift in Sources */,
  2359. F73F537F1E929C8500F8678D /* NCMore.swift in Sources */,
  2360. F702F2CF25EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
  2361. F72CD63A25C19EBF00F46F9A /* NCAutoUpload.swift in Sources */,
  2362. F7DFB7F0219C5B8000680748 /* NCCreateFormUploadAssets.swift in Sources */,
  2363. F73B422C2476764F00A30FD3 /* NCNotification.swift in Sources */,
  2364. 371B5A2E23D0B04500FAFAE9 /* NCMenu.swift in Sources */,
  2365. F79EDAA326B004980007D134 /* NCPlayerToolBar.swift in Sources */,
  2366. F77444F8222816D5000D5EB0 /* NCPickerViewController.swift in Sources */,
  2367. F72A47EC2487B06B005AD489 /* NCOperationQueue.swift in Sources */,
  2368. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */,
  2369. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */,
  2370. F70753F12542A9A200972D44 /* NCViewerMedia.swift in Sources */,
  2371. F7A80BCB252624C100C7CD01 /* NCFileViewInFolder.swift in Sources */,
  2372. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */,
  2373. F77910AB25DD53C700CEDB9E /* NCSettingsBundleHelper.swift in Sources */,
  2374. AF4BF61927562A4B0081CEEF /* NCManageDatabse+Metadata.swift in Sources */,
  2375. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */,
  2376. F716B75F26F09DF600D37EFC /* NCKTVHTTPCache.swift in Sources */,
  2377. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */,
  2378. F758B460212C56A400515F55 /* NCScanCollectionView.swift in Sources */,
  2379. F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */,
  2380. F749C10C23C4A5340027D966 /* NCIntroViewController.swift in Sources */,
  2381. F710D2022405826100A6033D /* NCViewer+Menu.swift in Sources */,
  2382. F77A697D250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift in Sources */,
  2383. AF7E504E27A2D8FF00B5E4AF /* UIBarButton+Extension.swift in Sources */,
  2384. F72928A0253B0937009CA4FD /* NCMainNavigationController.swift in Sources */,
  2385. F704B5E92430C0B800632F5F /* NCCreateFormUploadConflictCell.swift in Sources */,
  2386. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */,
  2387. F700510522DF6A89003A3356 /* NCShare.swift in Sources */,
  2388. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */,
  2389. F769454222E9F0EE000A798A /* NCShareLinkMenuView.swift in Sources */,
  2390. F785EE9D246196DF00B3F945 /* NCNetworkingE2EE.swift in Sources */,
  2391. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */,
  2392. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */,
  2393. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */,
  2394. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  2395. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */,
  2396. F78ACD4A21903F850088454D /* NCTrashListCell.swift in Sources */,
  2397. F7B8CD91261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift in Sources */,
  2398. F760329F252F0F8E0015A421 /* NCTransferCell.swift in Sources */,
  2399. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */,
  2400. F7A0D1352591FBC5008F8A13 /* String+Extensions.swift in Sources */,
  2401. F77B0E5F1D118A16002130FE /* NCSettings.m in Sources */,
  2402. F7F9D1BB25397CE000D9BFF5 /* NCViewer.swift in Sources */,
  2403. F70460522499061800BB98A7 /* NotificationCenter+MainThread.swift in Sources */,
  2404. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */,
  2405. AF817EF1274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
  2406. AF2D7C7C2742556F00ADF566 /* NCShareLinkCell.swift in Sources */,
  2407. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */,
  2408. F74AF3A4247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */,
  2409. F7417DB3216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift in Sources */,
  2410. F7239871253D86B600257F49 /* NCEmptyDataSet.swift in Sources */,
  2411. 8491B1CD273BBA82001C8C5B /* UIViewController+Menu.swift in Sources */,
  2412. F702F2F725EE5CED008F8E80 /* NCLogin.swift in Sources */,
  2413. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  2414. F7DBC37C23325E02001A85BA /* NCAppConfigView.swift in Sources */,
  2415. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */,
  2416. F73D5E47246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
  2417. F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */,
  2418. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */,
  2419. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */,
  2420. F79EDAA526B004980007D134 /* NCPlayer.swift in Sources */,
  2421. F7C1EEA525053A9C00866ACC /* NCDataSource.swift in Sources */,
  2422. F713FF002472764100214AF6 /* UIImage+animatedGIF.m in Sources */,
  2423. F749C10B23C4A5340027D966 /* NCIntroCollectionViewCell.swift in Sources */,
  2424. F718C24E254D507B00C5C256 /* NCViewerMediaDetailView.swift in Sources */,
  2425. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */,
  2426. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  2427. F79B646026CA661600838ACA /* UIControl+Extensions.swift in Sources */,
  2428. F7CA212D25F1333300826ABB /* NCAccountRequest.swift in Sources */,
  2429. F765F73125237E3F00391DBE /* NCRecent.swift in Sources */,
  2430. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  2431. F769454422E9F142000A798A /* NCShareUserMenuView.swift in Sources */,
  2432. F7581D2425EFDDDF004DC699 /* NCMedia+Menu.swift in Sources */,
  2433. F738D4902756740100CD1D38 /* NCLoginNavigationController.swift in Sources */,
  2434. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
  2435. F77EFC0C26D6751F00806ED6 /* NCShareQuickStatusMenu.swift in Sources */,
  2436. F702F30125EE5D2C008F8E80 /* NYMnemonic.m in Sources */,
  2437. F7EFA47825ADBA500083159A /* NCViewerProviderContextMenu.swift in Sources */,
  2438. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */,
  2439. AFD33240276A02C100F5AE02 /* UIApplication+Orientation.swift in Sources */,
  2440. F79B869B265E19D40085C0E0 /* NSMutableAttributedString+Extensions.swift in Sources */,
  2441. F7B7504B2397D38F004E13EC /* UIImage+Extensions.swift in Sources */,
  2442. F7EFC0CD256BF8DD00461AAD /* NCUserStatus.swift in Sources */,
  2443. AF3FDCC22796ECC300710F60 /* NCTrash+CollectionView.swift in Sources */,
  2444. F7DFB7F4219C5CA800680748 /* NCCreateFormUploadScanDocument.swift in Sources */,
  2445. F70D7C3725FFBF82002B9E34 /* NCCollectionViewCommon.swift in Sources */,
  2446. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */,
  2447. F7134186259747BA00768D21 /* NCPushNotification.m in Sources */,
  2448. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */,
  2449. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */,
  2450. F75D19E325EFE09000D74598 /* NCTrash+Menu.swift in Sources */,
  2451. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */,
  2452. F70753EB2542A99800972D44 /* NCViewerMediaPage.swift in Sources */,
  2453. F74C0436253F1CDC009762AB /* NCShares.swift in Sources */,
  2454. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */,
  2455. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */,
  2456. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  2457. F70968A424212C4E00ED60E5 /* NCLivePhoto.swift in Sources */,
  2458. F7BC288026663F85004D46C5 /* NCViewCertificateDetails.swift in Sources */,
  2459. F702F2E625EE5C86008F8E80 /* NCAudioRecorderViewController.swift in Sources */,
  2460. D5B6AA7827200C7200D49C24 /* NCActivityTableViewCell.swift in Sources */,
  2461. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */,
  2462. F7CBC31C24F78E79004D3812 /* NCSortMenu.swift in Sources */,
  2463. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */,
  2464. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */,
  2465. F7725A60251F33BB00D125E0 /* NCFiles.swift in Sources */,
  2466. F704B5E52430AA8000632F5F /* NCCreateFormUploadConflict.swift in Sources */,
  2467. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */,
  2468. F70CEF5623E9C7E50007035B /* UIColor+Extensions.swift in Sources */,
  2469. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */,
  2470. F7C7B489245EBA4100D93E60 /* NCViewerQuickLook.swift in Sources */,
  2471. F758B45E212C569D00515F55 /* NCScanCell.swift in Sources */,
  2472. F7581D1A25EFDA61004DC699 /* NCLoginWeb+Menu.swift in Sources */,
  2473. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
  2474. F70D8D8124A4A9BF000A5756 /* NCNetworkingProcessUpload.swift in Sources */,
  2475. F7D96FCC246ED7E200536D73 /* NCNetworkingCheckRemoteUser.swift in Sources */,
  2476. F7E4D9C422ED929B003675FD /* NCShareCommentsCell.swift in Sources */,
  2477. F717402E24F699A5000C87D5 /* NCFavorite.swift in Sources */,
  2478. AF2D7C7E2742559100ADF566 /* NCShareUserCell.swift in Sources */,
  2479. AF7E505027A2D92300B5E4AF /* NCSelectableNavigationView.swift in Sources */,
  2480. F74DE14325135B6800917068 /* NCTransfers.swift in Sources */,
  2481. AF4BF614275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
  2482. AF4BF61E27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
  2483. );
  2484. runOnlyForDeploymentPostprocessing = 0;
  2485. };
  2486. /* End PBXSourcesBuildPhase section */
  2487. /* Begin PBXTargetDependency section */
  2488. 2C33C48523E2C475005F963B /* PBXTargetDependency */ = {
  2489. isa = PBXTargetDependency;
  2490. target = 2C33C47E23E2C475005F963B /* Notification Service Extension */;
  2491. targetProxy = 2C33C48423E2C475005F963B /* PBXContainerItemProxy */;
  2492. };
  2493. AF8ED1FE2757821000B8DBC4 /* PBXTargetDependency */ = {
  2494. isa = PBXTargetDependency;
  2495. target = F77B0DEB1D118A16002130FE /* Nextcloud */;
  2496. targetProxy = AF8ED1FD2757821000B8DBC4 /* PBXContainerItemProxy */;
  2497. };
  2498. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */ = {
  2499. isa = PBXTargetDependency;
  2500. target = F71459B41D12E3B700CAFEEC /* Share */;
  2501. targetProxy = F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */;
  2502. };
  2503. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */ = {
  2504. isa = PBXTargetDependency;
  2505. target = F771E3CF20E2392D00AFB62D /* File Provider Extension */;
  2506. targetProxy = F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */;
  2507. };
  2508. /* End PBXTargetDependency section */
  2509. /* Begin PBXVariantGroup section */
  2510. F7E70DE91A24DE4100E1B66A /* Localizable.strings */ = {
  2511. isa = PBXVariantGroup;
  2512. children = (
  2513. F7151A811D477A4B00E6AF45 /* en */,
  2514. F7B1A7761EBB3C8000BFB6D1 /* de */,
  2515. F75B91E21ECAE17800199C96 /* fr */,
  2516. F75B91F71ECAE26300199C96 /* pt-BR */,
  2517. F75B923D1ECAE55E00199C96 /* ru */,
  2518. F7169A301EE59BB70086BD69 /* it */,
  2519. F7169A4C1EE59C640086BD69 /* tr */,
  2520. F78D6F461F0B7CB9002F9619 /* es-MX */,
  2521. F78D6F4D1F0B7CE4002F9619 /* nb-NO */,
  2522. F78D6F541F0B7D47002F9619 /* pl */,
  2523. F7DE9AB01F482FA5008DFE10 /* sv */,
  2524. F7CC04E61F5AD50D00378CEF /* es */,
  2525. F7D532461F5D4123006568B1 /* is */,
  2526. F7D5324D1F5D4137006568B1 /* nl */,
  2527. F7D532541F5D4155006568B1 /* sk-SK */,
  2528. F7D5328F1F5D443B006568B1 /* en-GB */,
  2529. F7D532A41F5D4461006568B1 /* zh-Hans */,
  2530. F77438EB1FCD694900662C46 /* ka-GE */,
  2531. F77438F21FCD69D300662C46 /* hu */,
  2532. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */,
  2533. F77439001FCD6B7F00662C46 /* sr */,
  2534. F77439071FCD6BF000662C46 /* es-CL */,
  2535. F774390E1FCD6C0C00662C46 /* es-CO */,
  2536. F77439151FCD6C4A00662C46 /* es-CR */,
  2537. F774391C1FCD6C6700662C46 /* es-DO */,
  2538. F77439231FCD6C8700662C46 /* es-EC */,
  2539. F774392A1FCD6CAA00662C46 /* es-GT */,
  2540. F77439311FCD6CC400662C46 /* es-HN */,
  2541. F77439381FCD6CDE00662C46 /* es-NI */,
  2542. F774393F1FCD6D0B00662C46 /* es-PA */,
  2543. F77439461FCD6D2300662C46 /* es-PE */,
  2544. F774394D1FCD6D3E00662C46 /* es-PR */,
  2545. F77439541FCD6D6100662C46 /* es-PY */,
  2546. F774395B1FCD6D8200662C46 /* es-SV */,
  2547. F77439621FCD6D9C00662C46 /* es-UY */,
  2548. F7BB04851FD58ACB00BBFD2A /* cs-CZ */,
  2549. F7320934201B812F008A0888 /* ko */,
  2550. F732093B201B81E4008A0888 /* es-419 */,
  2551. F70A07C8205285FB00DC1231 /* pt-PT */,
  2552. F7E45E6D21E75BF200579249 /* ja-JP */,
  2553. F753701822723D620041C76C /* gl */,
  2554. F753701922723E0D0041C76C /* ca */,
  2555. F753701A22723EC80041C76C /* da */,
  2556. );
  2557. name = Localizable.strings;
  2558. path = "Supporting Files";
  2559. sourceTree = "<group>";
  2560. };
  2561. /* End PBXVariantGroup section */
  2562. /* Begin XCBuildConfiguration section */
  2563. 2C33C48723E2C475005F963B /* Debug */ = {
  2564. isa = XCBuildConfiguration;
  2565. buildSettings = {
  2566. APPLICATION_EXTENSION_API_ONLY = YES;
  2567. CLANG_ANALYZER_NONNULL = YES;
  2568. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2569. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2570. CLANG_ENABLE_OBJC_WEAK = YES;
  2571. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2572. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  2573. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  2574. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  2575. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2576. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2577. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
  2578. CODE_SIGN_IDENTITY = "iPhone Developer";
  2579. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2580. CODE_SIGN_STYLE = Automatic;
  2581. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2582. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2583. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  2584. GCC_C_LANGUAGE_STANDARD = gnu11;
  2585. GCC_PREFIX_HEADER = "";
  2586. GCC_PREPROCESSOR_DEFINITIONS = (
  2587. "$(inherited)",
  2588. EXTENSION,
  2589. EXTENSION_NOTIFICATION_SERVICE,
  2590. );
  2591. HEADER_SEARCH_PATHS = "";
  2592. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
  2593. IPHONEOS_DEPLOYMENT_TARGET = 12.1;
  2594. LD_RUNPATH_SEARCH_PATHS = (
  2595. "$(inherited)",
  2596. "@executable_path/Frameworks",
  2597. "@executable_path/../../Frameworks",
  2598. );
  2599. LIBRARY_SEARCH_PATHS = "";
  2600. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2601. MTL_FAST_MATH = YES;
  2602. OTHER_LDFLAGS = "-ObjC";
  2603. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  2604. PRODUCT_NAME = "$(TARGET_NAME)";
  2605. SKIP_INSTALL = YES;
  2606. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_NOTIFICATION_SERVICE";
  2607. SWIFT_OBJC_BRIDGING_HEADER = "Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  2608. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2609. SWIFT_PRECOMPILE_BRIDGING_HEADER = NO;
  2610. SWIFT_VERSION = 5.0;
  2611. TARGETED_DEVICE_FAMILY = "1,2";
  2612. };
  2613. name = Debug;
  2614. };
  2615. 2C33C48823E2C475005F963B /* Release */ = {
  2616. isa = XCBuildConfiguration;
  2617. buildSettings = {
  2618. APPLICATION_EXTENSION_API_ONLY = YES;
  2619. CLANG_ANALYZER_NONNULL = YES;
  2620. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2621. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2622. CLANG_ENABLE_OBJC_WEAK = YES;
  2623. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2624. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  2625. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  2626. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  2627. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2628. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2629. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
  2630. CODE_SIGN_IDENTITY = "iPhone Developer";
  2631. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2632. CODE_SIGN_STYLE = Automatic;
  2633. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2634. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2635. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  2636. GCC_C_LANGUAGE_STANDARD = gnu11;
  2637. GCC_PREFIX_HEADER = "";
  2638. GCC_PREPROCESSOR_DEFINITIONS = (
  2639. "$(inherited)",
  2640. EXTENSION,
  2641. EXTENSION_NOTIFICATION_SERVICE,
  2642. );
  2643. HEADER_SEARCH_PATHS = "";
  2644. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
  2645. IPHONEOS_DEPLOYMENT_TARGET = 12.1;
  2646. LD_RUNPATH_SEARCH_PATHS = (
  2647. "$(inherited)",
  2648. "@executable_path/Frameworks",
  2649. "@executable_path/../../Frameworks",
  2650. );
  2651. LIBRARY_SEARCH_PATHS = "";
  2652. MTL_FAST_MATH = YES;
  2653. OTHER_LDFLAGS = "-ObjC";
  2654. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  2655. PRODUCT_NAME = "$(TARGET_NAME)";
  2656. SKIP_INSTALL = YES;
  2657. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_NOTIFICATION_SERVICE";
  2658. SWIFT_OBJC_BRIDGING_HEADER = "Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  2659. SWIFT_PRECOMPILE_BRIDGING_HEADER = NO;
  2660. SWIFT_VERSION = 5.0;
  2661. TARGETED_DEVICE_FAMILY = "1,2";
  2662. };
  2663. name = Release;
  2664. };
  2665. AF8ED1FF2757821000B8DBC4 /* Debug */ = {
  2666. isa = XCBuildConfiguration;
  2667. buildSettings = {
  2668. BUNDLE_LOADER = "$(TEST_HOST)";
  2669. CLANG_ANALYZER_NONNULL = YES;
  2670. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2671. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  2672. CLANG_ENABLE_OBJC_WEAK = YES;
  2673. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2674. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2675. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2676. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2677. CODE_SIGN_STYLE = Automatic;
  2678. DEBUG_INFORMATION_FORMAT = dwarf;
  2679. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2680. GCC_C_LANGUAGE_STANDARD = gnu11;
  2681. GCC_PREPROCESSOR_DEFINITIONS = (
  2682. "DEBUG=1",
  2683. "$(inherited)",
  2684. );
  2685. GENERATE_INFOPLIST_FILE = YES;
  2686. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  2687. LD_RUNPATH_SEARCH_PATHS = (
  2688. "$(inherited)",
  2689. "@executable_path/Frameworks",
  2690. "@loader_path/Frameworks",
  2691. );
  2692. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2693. MTL_FAST_MATH = YES;
  2694. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudTests;
  2695. PRODUCT_NAME = "$(TARGET_NAME)";
  2696. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  2697. SWIFT_EMIT_LOC_STRINGS = NO;
  2698. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2699. SWIFT_VERSION = 5.0;
  2700. TARGETED_DEVICE_FAMILY = "1,2";
  2701. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Nextcloud.app/Nextcloud";
  2702. };
  2703. name = Debug;
  2704. };
  2705. AF8ED2002757821000B8DBC4 /* Release */ = {
  2706. isa = XCBuildConfiguration;
  2707. buildSettings = {
  2708. BUNDLE_LOADER = "$(TEST_HOST)";
  2709. CLANG_ANALYZER_NONNULL = YES;
  2710. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2711. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  2712. CLANG_ENABLE_OBJC_WEAK = YES;
  2713. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2714. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2715. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2716. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2717. CODE_SIGN_STYLE = Automatic;
  2718. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2719. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2720. GCC_C_LANGUAGE_STANDARD = gnu11;
  2721. GENERATE_INFOPLIST_FILE = YES;
  2722. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  2723. LD_RUNPATH_SEARCH_PATHS = (
  2724. "$(inherited)",
  2725. "@executable_path/Frameworks",
  2726. "@loader_path/Frameworks",
  2727. );
  2728. MTL_FAST_MATH = YES;
  2729. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudTests;
  2730. PRODUCT_NAME = "$(TARGET_NAME)";
  2731. SWIFT_EMIT_LOC_STRINGS = NO;
  2732. SWIFT_VERSION = 5.0;
  2733. TARGETED_DEVICE_FAMILY = "1,2";
  2734. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Nextcloud.app/Nextcloud";
  2735. };
  2736. name = Release;
  2737. };
  2738. F7145A261D12E3B700CAFEEC /* Debug */ = {
  2739. isa = XCBuildConfiguration;
  2740. buildSettings = {
  2741. APPLICATION_EXTENSION_API_ONLY = YES;
  2742. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  2743. CLANG_ENABLE_MODULES = YES;
  2744. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  2745. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2746. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  2747. CODE_SIGN_IDENTITY = "iPhone Developer";
  2748. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2749. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2750. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2751. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  2752. GCC_NO_COMMON_BLOCKS = YES;
  2753. GCC_PREFIX_HEADER = "";
  2754. GCC_PREPROCESSOR_DEFINITIONS = (
  2755. "$(inherited)",
  2756. EXTENSION,
  2757. EXTENSION_SHARE,
  2758. );
  2759. HEADER_SEARCH_PATHS = "";
  2760. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  2761. IPHONEOS_DEPLOYMENT_TARGET = 12.1;
  2762. LD_RUNPATH_SEARCH_PATHS = (
  2763. "$(inherited)",
  2764. "@executable_path/Frameworks",
  2765. "@executable_path/../../Frameworks",
  2766. );
  2767. LIBRARY_SEARCH_PATHS = "";
  2768. OTHER_LDFLAGS = "-ObjC";
  2769. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  2770. PRODUCT_NAME = "$(TARGET_NAME)";
  2771. SKIP_INSTALL = YES;
  2772. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_SHARE";
  2773. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  2774. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2775. SWIFT_PRECOMPILE_BRIDGING_HEADER = NO;
  2776. SWIFT_VERSION = 5.0;
  2777. TARGETED_DEVICE_FAMILY = "1,2";
  2778. USE_HEADERMAP = YES;
  2779. };
  2780. name = Debug;
  2781. };
  2782. F7145A271D12E3B700CAFEEC /* Release */ = {
  2783. isa = XCBuildConfiguration;
  2784. buildSettings = {
  2785. APPLICATION_EXTENSION_API_ONLY = YES;
  2786. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  2787. CLANG_ENABLE_MODULES = YES;
  2788. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  2789. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2790. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  2791. CODE_SIGN_IDENTITY = "iPhone Developer";
  2792. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2793. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2794. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2795. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  2796. GCC_NO_COMMON_BLOCKS = YES;
  2797. GCC_PREFIX_HEADER = "";
  2798. GCC_PREPROCESSOR_DEFINITIONS = (
  2799. "$(inherited)",
  2800. EXTENSION,
  2801. EXTENSION_SHARE,
  2802. );
  2803. HEADER_SEARCH_PATHS = "";
  2804. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  2805. IPHONEOS_DEPLOYMENT_TARGET = 12.1;
  2806. LD_RUNPATH_SEARCH_PATHS = (
  2807. "$(inherited)",
  2808. "@executable_path/Frameworks",
  2809. "@executable_path/../../Frameworks",
  2810. );
  2811. LIBRARY_SEARCH_PATHS = "";
  2812. OTHER_LDFLAGS = "-ObjC";
  2813. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  2814. PRODUCT_NAME = "$(TARGET_NAME)";
  2815. SKIP_INSTALL = YES;
  2816. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_SHARE";
  2817. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  2818. SWIFT_PRECOMPILE_BRIDGING_HEADER = NO;
  2819. SWIFT_VERSION = 5.0;
  2820. TARGETED_DEVICE_FAMILY = "1,2";
  2821. USE_HEADERMAP = YES;
  2822. };
  2823. name = Release;
  2824. };
  2825. F771E3F020E2392E00AFB62D /* Debug */ = {
  2826. isa = XCBuildConfiguration;
  2827. buildSettings = {
  2828. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2829. APPLICATION_EXTENSION_API_ONLY = YES;
  2830. CLANG_ANALYZER_NONNULL = YES;
  2831. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2832. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2833. CLANG_ENABLE_OBJC_WEAK = YES;
  2834. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  2835. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  2836. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  2837. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  2838. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2839. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2840. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  2841. CODE_SIGN_IDENTITY = "iPhone Developer";
  2842. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2843. CODE_SIGN_STYLE = Automatic;
  2844. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2845. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2846. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  2847. GCC_C_LANGUAGE_STANDARD = gnu11;
  2848. GCC_PREFIX_HEADER = "";
  2849. GCC_PREPROCESSOR_DEFINITIONS = (
  2850. "$(inherited)",
  2851. EXTENSION,
  2852. EXTENSION_FILE_PROVIDER_EXTENSION,
  2853. );
  2854. HEADER_SEARCH_PATHS = "";
  2855. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  2856. IPHONEOS_DEPLOYMENT_TARGET = 12.1;
  2857. LD_RUNPATH_SEARCH_PATHS = (
  2858. "$(inherited)",
  2859. "@executable_path/Frameworks",
  2860. "@executable_path/../../Frameworks",
  2861. );
  2862. LIBRARY_SEARCH_PATHS = "";
  2863. OTHER_LDFLAGS = "-ObjC";
  2864. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  2865. PRODUCT_NAME = "$(TARGET_NAME)";
  2866. SKIP_INSTALL = YES;
  2867. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION";
  2868. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  2869. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2870. SWIFT_PRECOMPILE_BRIDGING_HEADER = NO;
  2871. SWIFT_VERSION = 5.0;
  2872. TARGETED_DEVICE_FAMILY = "1,2";
  2873. };
  2874. name = Debug;
  2875. };
  2876. F771E3F120E2392E00AFB62D /* Release */ = {
  2877. isa = XCBuildConfiguration;
  2878. buildSettings = {
  2879. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2880. APPLICATION_EXTENSION_API_ONLY = YES;
  2881. CLANG_ANALYZER_NONNULL = YES;
  2882. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2883. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2884. CLANG_ENABLE_OBJC_WEAK = YES;
  2885. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  2886. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  2887. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  2888. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  2889. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2890. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2891. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  2892. CODE_SIGN_IDENTITY = "iPhone Developer";
  2893. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2894. CODE_SIGN_STYLE = Automatic;
  2895. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2896. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2897. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  2898. GCC_C_LANGUAGE_STANDARD = gnu11;
  2899. GCC_PREFIX_HEADER = "";
  2900. GCC_PREPROCESSOR_DEFINITIONS = (
  2901. "$(inherited)",
  2902. EXTENSION,
  2903. EXTENSION_FILE_PROVIDER_EXTENSION,
  2904. );
  2905. HEADER_SEARCH_PATHS = "";
  2906. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  2907. IPHONEOS_DEPLOYMENT_TARGET = 12.1;
  2908. LD_RUNPATH_SEARCH_PATHS = (
  2909. "$(inherited)",
  2910. "@executable_path/Frameworks",
  2911. "@executable_path/../../Frameworks",
  2912. );
  2913. LIBRARY_SEARCH_PATHS = "";
  2914. OTHER_LDFLAGS = "-ObjC";
  2915. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  2916. PRODUCT_NAME = "$(TARGET_NAME)";
  2917. SKIP_INSTALL = YES;
  2918. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION";
  2919. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  2920. SWIFT_PRECOMPILE_BRIDGING_HEADER = NO;
  2921. SWIFT_VERSION = 5.0;
  2922. TARGETED_DEVICE_FAMILY = "1,2";
  2923. };
  2924. name = Release;
  2925. };
  2926. F77B0F9B1D118A16002130FE /* Debug */ = {
  2927. isa = XCBuildConfiguration;
  2928. buildSettings = {
  2929. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  2930. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2931. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  2932. CLANG_ENABLE_MODULES = YES;
  2933. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  2934. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2935. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  2936. CODE_SIGN_IDENTITY = "iPhone Developer";
  2937. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2938. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2939. ENABLE_BITCODE = YES;
  2940. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  2941. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2942. GCC_PREFIX_HEADER = "";
  2943. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  2944. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  2945. HEADER_SEARCH_PATHS = "";
  2946. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  2947. IPHONEOS_DEPLOYMENT_TARGET = 12.1;
  2948. LD_RUNPATH_SEARCH_PATHS = (
  2949. "$(inherited)",
  2950. "@executable_path/Frameworks",
  2951. "@executable_path/../../Frameworks",
  2952. );
  2953. LIBRARY_SEARCH_PATHS = "";
  2954. OTHER_LDFLAGS = (
  2955. "-ObjC",
  2956. "-weak_framework",
  2957. SwiftUI,
  2958. );
  2959. OTHER_SWIFT_FLAGS = "";
  2960. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  2961. PRODUCT_NAME = "$(TARGET_NAME)";
  2962. PROVISIONING_PROFILE = "";
  2963. PROVISIONING_PROFILE_SPECIFIER = "";
  2964. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  2965. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  2966. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2967. SWIFT_PRECOMPILE_BRIDGING_HEADER = NO;
  2968. SWIFT_VERSION = 5.0;
  2969. TARGETED_DEVICE_FAMILY = "1,2";
  2970. USE_HEADERMAP = YES;
  2971. VERSIONING_SYSTEM = "";
  2972. };
  2973. name = Debug;
  2974. };
  2975. F77B0F9C1D118A16002130FE /* Release */ = {
  2976. isa = XCBuildConfiguration;
  2977. buildSettings = {
  2978. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  2979. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2980. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  2981. CLANG_ENABLE_MODULES = YES;
  2982. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  2983. CLANG_WARN_STRICT_PROTOTYPES = NO;
  2984. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  2985. CODE_SIGN_IDENTITY = "iPhone Developer";
  2986. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2987. COPY_PHASE_STRIP = NO;
  2988. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  2989. ENABLE_BITCODE = YES;
  2990. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  2991. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2992. GCC_PREFIX_HEADER = "";
  2993. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  2994. HEADER_SEARCH_PATHS = "";
  2995. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  2996. IPHONEOS_DEPLOYMENT_TARGET = 12.1;
  2997. LD_RUNPATH_SEARCH_PATHS = (
  2998. "$(inherited)",
  2999. "@executable_path/Frameworks",
  3000. "@executable_path/../../Frameworks",
  3001. );
  3002. LIBRARY_SEARCH_PATHS = "";
  3003. OTHER_LDFLAGS = (
  3004. "-ObjC",
  3005. "-weak_framework",
  3006. SwiftUI,
  3007. );
  3008. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  3009. PRODUCT_NAME = "$(TARGET_NAME)";
  3010. PROVISIONING_PROFILE = "";
  3011. PROVISIONING_PROFILE_SPECIFIER = "";
  3012. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3013. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  3014. SWIFT_PRECOMPILE_BRIDGING_HEADER = NO;
  3015. SWIFT_VERSION = 5.0;
  3016. TARGETED_DEVICE_FAMILY = "1,2";
  3017. USE_HEADERMAP = YES;
  3018. VERSIONING_SYSTEM = "";
  3019. };
  3020. name = Release;
  3021. };
  3022. F7F67BC91A24D27800EE80DA /* Debug */ = {
  3023. isa = XCBuildConfiguration;
  3024. buildSettings = {
  3025. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3026. ALWAYS_SEARCH_USER_PATHS = NO;
  3027. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3028. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  3029. CLANG_CXX_LIBRARY = "libc++";
  3030. CLANG_ENABLE_MODULES = YES;
  3031. CLANG_ENABLE_OBJC_ARC = YES;
  3032. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3033. CLANG_WARN_BOOL_CONVERSION = YES;
  3034. CLANG_WARN_COMMA = YES;
  3035. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3036. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3037. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3038. CLANG_WARN_EMPTY_BODY = YES;
  3039. CLANG_WARN_ENUM_CONVERSION = YES;
  3040. CLANG_WARN_INFINITE_RECURSION = YES;
  3041. CLANG_WARN_INT_CONVERSION = YES;
  3042. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3043. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3044. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3045. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3046. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  3047. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3048. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3049. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3050. CLANG_WARN_UNREACHABLE_CODE = YES;
  3051. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3052. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3053. COPY_PHASE_STRIP = NO;
  3054. CURRENT_PROJECT_VERSION = 0;
  3055. DEFINES_MODULE = YES;
  3056. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3057. ENABLE_TESTABILITY = YES;
  3058. GCC_C_LANGUAGE_STANDARD = gnu99;
  3059. GCC_DYNAMIC_NO_PIC = NO;
  3060. GCC_NO_COMMON_BLOCKS = YES;
  3061. GCC_OPTIMIZATION_LEVEL = 0;
  3062. GCC_PREPROCESSOR_DEFINITIONS = (
  3063. "$(inherited)",
  3064. DEBUG,
  3065. NC,
  3066. );
  3067. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  3068. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3069. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3070. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3071. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3072. GCC_WARN_UNUSED_FUNCTION = YES;
  3073. GCC_WARN_UNUSED_VARIABLE = YES;
  3074. IPHONEOS_DEPLOYMENT_TARGET = 12.1;
  3075. MARKETING_VERSION = 4.3.0;
  3076. MTL_ENABLE_DEBUG_INFO = YES;
  3077. ONLY_ACTIVE_ARCH = YES;
  3078. OTHER_LDFLAGS = (
  3079. "-Obj-C",
  3080. "-all_load",
  3081. );
  3082. SDKROOT = iphoneos;
  3083. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) NC";
  3084. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  3085. };
  3086. name = Debug;
  3087. };
  3088. F7F67BCA1A24D27800EE80DA /* Release */ = {
  3089. isa = XCBuildConfiguration;
  3090. buildSettings = {
  3091. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3092. ALWAYS_SEARCH_USER_PATHS = NO;
  3093. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3094. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  3095. CLANG_CXX_LIBRARY = "libc++";
  3096. CLANG_ENABLE_MODULES = YES;
  3097. CLANG_ENABLE_OBJC_ARC = YES;
  3098. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3099. CLANG_WARN_BOOL_CONVERSION = YES;
  3100. CLANG_WARN_COMMA = YES;
  3101. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3102. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3103. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3104. CLANG_WARN_EMPTY_BODY = YES;
  3105. CLANG_WARN_ENUM_CONVERSION = YES;
  3106. CLANG_WARN_INFINITE_RECURSION = YES;
  3107. CLANG_WARN_INT_CONVERSION = YES;
  3108. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3109. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3110. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3111. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3112. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  3113. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3114. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3115. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3116. CLANG_WARN_UNREACHABLE_CODE = YES;
  3117. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3118. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3119. COPY_PHASE_STRIP = NO;
  3120. CURRENT_PROJECT_VERSION = 0;
  3121. DEFINES_MODULE = YES;
  3122. ENABLE_NS_ASSERTIONS = NO;
  3123. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3124. GCC_C_LANGUAGE_STANDARD = gnu99;
  3125. GCC_NO_COMMON_BLOCKS = YES;
  3126. GCC_PREPROCESSOR_DEFINITIONS = (
  3127. "$(inherited)",
  3128. NC,
  3129. );
  3130. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3131. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3132. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3133. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3134. GCC_WARN_UNUSED_FUNCTION = YES;
  3135. GCC_WARN_UNUSED_VARIABLE = YES;
  3136. IPHONEOS_DEPLOYMENT_TARGET = 12.1;
  3137. MARKETING_VERSION = 4.3.0;
  3138. MTL_ENABLE_DEBUG_INFO = NO;
  3139. OTHER_LDFLAGS = (
  3140. "-Obj-C",
  3141. "-all_load",
  3142. );
  3143. SDKROOT = iphoneos;
  3144. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG NC";
  3145. SWIFT_COMPILATION_MODE = wholemodule;
  3146. SWIFT_OPTIMIZATION_LEVEL = "-O";
  3147. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  3148. VALIDATE_PRODUCT = YES;
  3149. };
  3150. name = Release;
  3151. };
  3152. /* End XCBuildConfiguration section */
  3153. /* Begin XCConfigurationList section */
  3154. 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */ = {
  3155. isa = XCConfigurationList;
  3156. buildConfigurations = (
  3157. 2C33C48723E2C475005F963B /* Debug */,
  3158. 2C33C48823E2C475005F963B /* Release */,
  3159. );
  3160. defaultConfigurationIsVisible = 0;
  3161. defaultConfigurationName = Release;
  3162. };
  3163. AF8ED2012757821000B8DBC4 /* Build configuration list for PBXNativeTarget "NextcloudTests" */ = {
  3164. isa = XCConfigurationList;
  3165. buildConfigurations = (
  3166. AF8ED1FF2757821000B8DBC4 /* Debug */,
  3167. AF8ED2002757821000B8DBC4 /* Release */,
  3168. );
  3169. defaultConfigurationIsVisible = 0;
  3170. defaultConfigurationName = Release;
  3171. };
  3172. F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */ = {
  3173. isa = XCConfigurationList;
  3174. buildConfigurations = (
  3175. F7145A261D12E3B700CAFEEC /* Debug */,
  3176. F7145A271D12E3B700CAFEEC /* Release */,
  3177. );
  3178. defaultConfigurationIsVisible = 0;
  3179. defaultConfigurationName = Release;
  3180. };
  3181. F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */ = {
  3182. isa = XCConfigurationList;
  3183. buildConfigurations = (
  3184. F771E3F020E2392E00AFB62D /* Debug */,
  3185. F771E3F120E2392E00AFB62D /* Release */,
  3186. );
  3187. defaultConfigurationIsVisible = 0;
  3188. defaultConfigurationName = Release;
  3189. };
  3190. F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */ = {
  3191. isa = XCConfigurationList;
  3192. buildConfigurations = (
  3193. F77B0F9B1D118A16002130FE /* Debug */,
  3194. F77B0F9C1D118A16002130FE /* Release */,
  3195. );
  3196. defaultConfigurationIsVisible = 0;
  3197. defaultConfigurationName = Release;
  3198. };
  3199. F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */ = {
  3200. isa = XCConfigurationList;
  3201. buildConfigurations = (
  3202. F7F67BC91A24D27800EE80DA /* Debug */,
  3203. F7F67BCA1A24D27800EE80DA /* Release */,
  3204. );
  3205. defaultConfigurationIsVisible = 0;
  3206. defaultConfigurationName = Release;
  3207. };
  3208. /* End XCConfigurationList section */
  3209. /* Begin XCRemoteSwiftPackageReference section */
  3210. F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */ = {
  3211. isa = XCRemoteSwiftPackageReference;
  3212. repositoryURL = "https://github.com/firebase/firebase-ios-sdk";
  3213. requirement = {
  3214. kind = upToNextMajorVersion;
  3215. minimumVersion = 8.9.0;
  3216. };
  3217. };
  3218. F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */ = {
  3219. isa = XCRemoteSwiftPackageReference;
  3220. repositoryURL = "https://github.com/realm/realm-swift";
  3221. requirement = {
  3222. kind = upToNextMajorVersion;
  3223. minimumVersion = 10.0.0;
  3224. };
  3225. };
  3226. F7233B3827835FA300F40A43 /* XCRemoteSwiftPackageReference "ChromaColorPicker" */ = {
  3227. isa = XCRemoteSwiftPackageReference;
  3228. repositoryURL = "https://github.com/marinofaggiana/ChromaColorPicker";
  3229. requirement = {
  3230. branch = master;
  3231. kind = branch;
  3232. };
  3233. };
  3234. F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */ = {
  3235. isa = XCRemoteSwiftPackageReference;
  3236. repositoryURL = "https://github.com/JonasGessner/JGProgressHUD.git";
  3237. requirement = {
  3238. kind = upToNextMajorVersion;
  3239. minimumVersion = 2.0.0;
  3240. };
  3241. };
  3242. F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */ = {
  3243. isa = XCRemoteSwiftPackageReference;
  3244. repositoryURL = "https://github.com/malcommac/SwiftRichString";
  3245. requirement = {
  3246. kind = upToNextMajorVersion;
  3247. minimumVersion = 3.7.2;
  3248. };
  3249. };
  3250. F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */ = {
  3251. isa = XCRemoteSwiftPackageReference;
  3252. repositoryURL = "https://github.com/huri000/SwiftEntryKit";
  3253. requirement = {
  3254. kind = upToNextMajorVersion;
  3255. minimumVersion = 1.2.7;
  3256. };
  3257. };
  3258. F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */ = {
  3259. isa = XCRemoteSwiftPackageReference;
  3260. repositoryURL = "https://github.com/xmartlabs/XLForm";
  3261. requirement = {
  3262. kind = upToNextMajorVersion;
  3263. minimumVersion = 4.0.0;
  3264. };
  3265. };
  3266. F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */ = {
  3267. isa = XCRemoteSwiftPackageReference;
  3268. repositoryURL = "https://github.com/SVGKit/SVGKit.git";
  3269. requirement = {
  3270. branch = 3.x;
  3271. kind = branch;
  3272. };
  3273. };
  3274. F75EAED626D2552E00F4320E /* XCRemoteSwiftPackageReference "MarqueeLabel" */ = {
  3275. isa = XCRemoteSwiftPackageReference;
  3276. repositoryURL = "https://github.com/cbpowell/MarqueeLabel";
  3277. requirement = {
  3278. kind = upToNextMajorVersion;
  3279. minimumVersion = 4.3.0;
  3280. };
  3281. };
  3282. F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */ = {
  3283. isa = XCRemoteSwiftPackageReference;
  3284. repositoryURL = "https://github.com/FabrizioBrancati/Queuer";
  3285. requirement = {
  3286. kind = upToNextMajorVersion;
  3287. minimumVersion = 2.0.0;
  3288. };
  3289. };
  3290. F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */ = {
  3291. isa = XCRemoteSwiftPackageReference;
  3292. repositoryURL = "https://github.com/kishikawakatsumi/UICKeyChainStore";
  3293. requirement = {
  3294. branch = master;
  3295. kind = branch;
  3296. };
  3297. };
  3298. F76DA967277B77E90082465B /* XCRemoteSwiftPackageReference "DropDown" */ = {
  3299. isa = XCRemoteSwiftPackageReference;
  3300. repositoryURL = "https://github.com/AssistoLab/DropDown";
  3301. requirement = {
  3302. branch = master;
  3303. kind = branch;
  3304. };
  3305. };
  3306. F76DA96A277B78400082465B /* XCRemoteSwiftPackageReference "FSCalendar" */ = {
  3307. isa = XCRemoteSwiftPackageReference;
  3308. repositoryURL = "https://github.com/WenchaoD/FSCalendar";
  3309. requirement = {
  3310. kind = upToNextMajorVersion;
  3311. minimumVersion = 2.0.0;
  3312. };
  3313. };
  3314. F76DA96D277B78AE0082465B /* XCRemoteSwiftPackageReference "TLPhotoPicker" */ = {
  3315. isa = XCRemoteSwiftPackageReference;
  3316. repositoryURL = "https://github.com/tilltue/TLPhotoPicker";
  3317. requirement = {
  3318. kind = upToNextMajorVersion;
  3319. minimumVersion = 2.0.0;
  3320. };
  3321. };
  3322. F770768C263A8C3400A1BA94 /* XCRemoteSwiftPackageReference "FloatingPanel" */ = {
  3323. isa = XCRemoteSwiftPackageReference;
  3324. repositoryURL = "https://github.com/scenee/FloatingPanel";
  3325. requirement = {
  3326. kind = upToNextMajorVersion;
  3327. minimumVersion = 2.0.0;
  3328. };
  3329. };
  3330. F786D58B253454BF00E3DD7B /* XCRemoteSwiftPackageReference "ios-communication-library" */ = {
  3331. isa = XCRemoteSwiftPackageReference;
  3332. repositoryURL = "https://github.com/nextcloud/ios-communication-library/";
  3333. requirement = {
  3334. branch = develop;
  3335. kind = branch;
  3336. };
  3337. };
  3338. F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */ = {
  3339. isa = XCRemoteSwiftPackageReference;
  3340. repositoryURL = "https://github.com/bmoliveira/MarkdownKit";
  3341. requirement = {
  3342. kind = upToNextMajorVersion;
  3343. minimumVersion = 1.7.1;
  3344. };
  3345. };
  3346. F7BB7E4527A18C56009B9F29 /* XCRemoteSwiftPackageReference "Parchment" */ = {
  3347. isa = XCRemoteSwiftPackageReference;
  3348. repositoryURL = "https://github.com/rechsteiner/Parchment";
  3349. requirement = {
  3350. branch = main;
  3351. kind = branch;
  3352. };
  3353. };
  3354. F7ED547A25EEA65400956C55 /* XCRemoteSwiftPackageReference "QRCodeReader" */ = {
  3355. isa = XCRemoteSwiftPackageReference;
  3356. repositoryURL = "https://github.com/yannickl/QRCodeReader.swift";
  3357. requirement = {
  3358. kind = upToNextMajorVersion;
  3359. minimumVersion = 10.1.1;
  3360. };
  3361. };
  3362. /* End XCRemoteSwiftPackageReference section */
  3363. /* Begin XCSwiftPackageProductDependency section */
  3364. F70B86742642CE3B00ED5349 /* FirebaseCrashlytics */ = {
  3365. isa = XCSwiftPackageProductDependency;
  3366. package = F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */;
  3367. productName = FirebaseCrashlytics;
  3368. };
  3369. F710FC79277B7D0000AA9FBF /* Realm */ = {
  3370. isa = XCSwiftPackageProductDependency;
  3371. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  3372. productName = Realm;
  3373. };
  3374. F710FC7B277B7D0000AA9FBF /* RealmSwift */ = {
  3375. isa = XCSwiftPackageProductDependency;
  3376. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  3377. productName = RealmSwift;
  3378. };
  3379. F710FC7D277B7D2600AA9FBF /* Realm */ = {
  3380. isa = XCSwiftPackageProductDependency;
  3381. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  3382. productName = Realm;
  3383. };
  3384. F710FC7F277B7D2700AA9FBF /* RealmSwift */ = {
  3385. isa = XCSwiftPackageProductDependency;
  3386. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  3387. productName = RealmSwift;
  3388. };
  3389. F710FC81277B7D3500AA9FBF /* Realm */ = {
  3390. isa = XCSwiftPackageProductDependency;
  3391. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  3392. productName = Realm;
  3393. };
  3394. F710FC83277B7D3500AA9FBF /* RealmSwift */ = {
  3395. isa = XCSwiftPackageProductDependency;
  3396. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  3397. productName = RealmSwift;
  3398. };
  3399. F710FC85277B7D3F00AA9FBF /* Realm */ = {
  3400. isa = XCSwiftPackageProductDependency;
  3401. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  3402. productName = Realm;
  3403. };
  3404. F710FC87277B7D3F00AA9FBF /* RealmSwift */ = {
  3405. isa = XCSwiftPackageProductDependency;
  3406. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  3407. productName = RealmSwift;
  3408. };
  3409. F7233B3927835FA400F40A43 /* ChromaColorPicker */ = {
  3410. isa = XCSwiftPackageProductDependency;
  3411. package = F7233B3827835FA300F40A43 /* XCRemoteSwiftPackageReference "ChromaColorPicker" */;
  3412. productName = ChromaColorPicker;
  3413. };
  3414. F72CD01127A7E92400E59476 /* JGProgressHUD */ = {
  3415. isa = XCSwiftPackageProductDependency;
  3416. package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
  3417. productName = JGProgressHUD;
  3418. };
  3419. F72D7EB6263B1207000B3DFC /* MarkdownKit */ = {
  3420. isa = XCSwiftPackageProductDependency;
  3421. package = F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */;
  3422. productName = MarkdownKit;
  3423. };
  3424. F72DA9B325F53E4E00B87DB1 /* SwiftRichString */ = {
  3425. isa = XCSwiftPackageProductDependency;
  3426. package = F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */;
  3427. productName = SwiftRichString;
  3428. };
  3429. F73ADD1B265546890069EA0D /* SwiftEntryKit */ = {
  3430. isa = XCSwiftPackageProductDependency;
  3431. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  3432. productName = SwiftEntryKit;
  3433. };
  3434. F73ADD2026554F8E0069EA0D /* SwiftEntryKit */ = {
  3435. isa = XCSwiftPackageProductDependency;
  3436. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  3437. productName = SwiftEntryKit;
  3438. };
  3439. F73ADD2326554FE20069EA0D /* SwiftEntryKit */ = {
  3440. isa = XCSwiftPackageProductDependency;
  3441. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  3442. productName = SwiftEntryKit;
  3443. };
  3444. F74E771F277A2EF40013B958 /* XLForm */ = {
  3445. isa = XCSwiftPackageProductDependency;
  3446. package = F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */;
  3447. productName = XLForm;
  3448. };
  3449. F758A01127A7F03E0069468B /* JGProgressHUD */ = {
  3450. isa = XCSwiftPackageProductDependency;
  3451. package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
  3452. productName = JGProgressHUD;
  3453. };
  3454. F75E57BC25BF0EC1002B72C2 /* SVGKit */ = {
  3455. isa = XCSwiftPackageProductDependency;
  3456. package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
  3457. productName = SVGKit;
  3458. };
  3459. F75E57BE25BF0EC8002B72C2 /* SVGKit */ = {
  3460. isa = XCSwiftPackageProductDependency;
  3461. package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
  3462. productName = SVGKit;
  3463. };
  3464. F75E57C025BF0ECD002B72C2 /* SVGKit */ = {
  3465. isa = XCSwiftPackageProductDependency;
  3466. package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
  3467. productName = SVGKit;
  3468. };
  3469. F75E57C225BF0ED2002B72C2 /* SVGKit */ = {
  3470. isa = XCSwiftPackageProductDependency;
  3471. package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
  3472. productName = SVGKit;
  3473. };
  3474. F75EAED726D2552E00F4320E /* MarqueeLabel */ = {
  3475. isa = XCSwiftPackageProductDependency;
  3476. package = F75EAED626D2552E00F4320E /* XCRemoteSwiftPackageReference "MarqueeLabel" */;
  3477. productName = MarqueeLabel;
  3478. };
  3479. F76DA962277B760E0082465B /* Queuer */ = {
  3480. isa = XCSwiftPackageProductDependency;
  3481. package = F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */;
  3482. productName = Queuer;
  3483. };
  3484. F76DA965277B76F30082465B /* UICKeyChainStore */ = {
  3485. isa = XCSwiftPackageProductDependency;
  3486. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  3487. productName = UICKeyChainStore;
  3488. };
  3489. F76DA968277B77EA0082465B /* DropDown */ = {
  3490. isa = XCSwiftPackageProductDependency;
  3491. package = F76DA967277B77E90082465B /* XCRemoteSwiftPackageReference "DropDown" */;
  3492. productName = DropDown;
  3493. };
  3494. F76DA96B277B78400082465B /* FSCalendar */ = {
  3495. isa = XCSwiftPackageProductDependency;
  3496. package = F76DA96A277B78400082465B /* XCRemoteSwiftPackageReference "FSCalendar" */;
  3497. productName = FSCalendar;
  3498. };
  3499. F76DA96E277B78AE0082465B /* TLPhotoPicker */ = {
  3500. isa = XCSwiftPackageProductDependency;
  3501. package = F76DA96D277B78AE0082465B /* XCRemoteSwiftPackageReference "TLPhotoPicker" */;
  3502. productName = TLPhotoPicker;
  3503. };
  3504. F770768D263A8C3400A1BA94 /* FloatingPanel */ = {
  3505. isa = XCSwiftPackageProductDependency;
  3506. package = F770768C263A8C3400A1BA94 /* XCRemoteSwiftPackageReference "FloatingPanel" */;
  3507. productName = FloatingPanel;
  3508. };
  3509. F786D58C253454BF00E3DD7B /* NCCommunication */ = {
  3510. isa = XCSwiftPackageProductDependency;
  3511. package = F786D58B253454BF00E3DD7B /* XCRemoteSwiftPackageReference "ios-communication-library" */;
  3512. productName = NCCommunication;
  3513. };
  3514. F786D592253454CE00E3DD7B /* NCCommunication */ = {
  3515. isa = XCSwiftPackageProductDependency;
  3516. package = F786D58B253454BF00E3DD7B /* XCRemoteSwiftPackageReference "ios-communication-library" */;
  3517. productName = NCCommunication;
  3518. };
  3519. F786D594253454D300E3DD7B /* NCCommunication */ = {
  3520. isa = XCSwiftPackageProductDependency;
  3521. package = F786D58B253454BF00E3DD7B /* XCRemoteSwiftPackageReference "ios-communication-library" */;
  3522. productName = NCCommunication;
  3523. };
  3524. F786D596253454D800E3DD7B /* NCCommunication */ = {
  3525. isa = XCSwiftPackageProductDependency;
  3526. package = F786D58B253454BF00E3DD7B /* XCRemoteSwiftPackageReference "ios-communication-library" */;
  3527. productName = NCCommunication;
  3528. };
  3529. F788ECC6263AAAFA00ADC67F /* MarkdownKit */ = {
  3530. isa = XCSwiftPackageProductDependency;
  3531. package = F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */;
  3532. productName = MarkdownKit;
  3533. };
  3534. F7BB7E4627A18C56009B9F29 /* Parchment */ = {
  3535. isa = XCSwiftPackageProductDependency;
  3536. package = F7BB7E4527A18C56009B9F29 /* XCRemoteSwiftPackageReference "Parchment" */;
  3537. productName = Parchment;
  3538. };
  3539. F7EBCDCE277B81FF00A4EF67 /* UICKeyChainStore */ = {
  3540. isa = XCSwiftPackageProductDependency;
  3541. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  3542. productName = UICKeyChainStore;
  3543. };
  3544. F7EBCDD0277B820D00A4EF67 /* UICKeyChainStore */ = {
  3545. isa = XCSwiftPackageProductDependency;
  3546. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  3547. productName = UICKeyChainStore;
  3548. };
  3549. F7EBCDD2277B821700A4EF67 /* UICKeyChainStore */ = {
  3550. isa = XCSwiftPackageProductDependency;
  3551. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  3552. productName = UICKeyChainStore;
  3553. };
  3554. F7EBCDD4277B82DE00A4EF67 /* Queuer */ = {
  3555. isa = XCSwiftPackageProductDependency;
  3556. package = F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */;
  3557. productName = Queuer;
  3558. };
  3559. F7EBCDD6277B834400A4EF67 /* Queuer */ = {
  3560. isa = XCSwiftPackageProductDependency;
  3561. package = F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */;
  3562. productName = Queuer;
  3563. };
  3564. F7EBCDD8277B834F00A4EF67 /* Queuer */ = {
  3565. isa = XCSwiftPackageProductDependency;
  3566. package = F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */;
  3567. productName = Queuer;
  3568. };
  3569. F7ED547B25EEA65400956C55 /* QRCodeReader */ = {
  3570. isa = XCSwiftPackageProductDependency;
  3571. package = F7ED547A25EEA65400956C55 /* XCRemoteSwiftPackageReference "QRCodeReader" */;
  3572. productName = QRCodeReader;
  3573. };
  3574. /* End XCSwiftPackageProductDependency section */
  3575. };
  3576. rootObject = F7F67BA01A24D27800EE80DA /* Project object */;
  3577. }