project.pbxproj 290 KB

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