project.pbxproj 383 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 54;
  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 Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  14. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3704EB2923D5A58400455C5B /* NCMenu.storyboard */; };
  15. 370D26AF248A3D7A00121797 /* NCCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */; };
  16. 371B5A2E23D0B04500FAFAE9 /* NCMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 371B5A2D23D0B04500FAFAE9 /* NCMenu.swift */; };
  17. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */; };
  18. 8491B1CD273BBA82001C8C5B /* UIViewController+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8491B1CC273BBA82001C8C5B /* UIViewController+Menu.swift */; };
  19. AF1A9B6427D0CA1E00F17A9E /* UIAlertController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF1A9B6327D0CA1E00F17A9E /* UIAlertController+Extension.swift */; };
  20. AF1A9B6527D0CC0500F17A9E /* UIAlertController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF1A9B6327D0CA1E00F17A9E /* UIAlertController+Extension.swift */; };
  21. AF22B206277B4E4C00DAB0CC /* NCCreateFormUploadConflict.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */; };
  22. AF22B207277B4E4C00DAB0CC /* NCCreateFormUploadConflict.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */; };
  23. AF22B208277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */; };
  24. AF22B209277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */; };
  25. AF22B20C277C6F4D00DAB0CC /* NCShareCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF22B20B277C6F4D00DAB0CC /* NCShareCell.swift */; };
  26. AF22B217277D196700DAB0CC /* NCShareExtension+DataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF22B215277D196700DAB0CC /* NCShareExtension+DataSource.swift */; };
  27. AF22B218277D196700DAB0CC /* NCShareExtension+Files.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF22B216277D196700DAB0CC /* NCShareExtension+Files.swift */; };
  28. AF2D7C7C2742556F00ADF566 /* NCShareLinkCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF2D7C7B2742556F00ADF566 /* NCShareLinkCell.swift */; };
  29. AF2D7C7E2742559100ADF566 /* NCShareUserCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF2D7C7D2742559100ADF566 /* NCShareUserCell.swift */; };
  30. AF36077127BFA4E8001A243D /* ParallelWorker.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF36077027BFA4E8001A243D /* ParallelWorker.swift */; };
  31. AF3FDCC22796ECC300710F60 /* NCTrash+CollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF3FDCC12796ECC300710F60 /* NCTrash+CollectionView.swift */; };
  32. AF3FDCC32796F3FB00710F60 /* NCTrashListCell+NCTrashCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4821903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift */; };
  33. AF4BF614275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  34. AF4BF615275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  35. AF4BF616275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  36. AF4BF617275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  37. AF4BF61927562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  38. AF4BF61A27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  39. AF4BF61B27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  40. AF4BF61C27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  41. AF4BF61E27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  42. AF4BF61F27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  43. AF4BF62027562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  44. AF4BF62127562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  45. AF56C1DC2784856200D8BAE2 /* NCActivityCommentView.xib in Resources */ = {isa = PBXBuildFile; fileRef = AF56C1DB2784856200D8BAE2 /* NCActivityCommentView.xib */; };
  46. AF68326A27BE65A90010BF0B /* NCMenuAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF68326927BE65A90010BF0B /* NCMenuAction.swift */; };
  47. AF730AF827834B1400B7520E /* NCShare+NCCellDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF730AF727834B1400B7520E /* NCShare+NCCellDelegate.swift */; };
  48. AF730AFA27843E4C00B7520E /* NCShareExtension+NCDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF730AF927843E4C00B7520E /* NCShareExtension+NCDelegate.swift */; };
  49. AF7E504E27A2D8FF00B5E4AF /* UIBarButton+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF7E504D27A2D8FF00B5E4AF /* UIBarButton+Extension.swift */; };
  50. AF7E505027A2D92300B5E4AF /* NCSelectableNavigationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF7E504F27A2D92300B5E4AF /* NCSelectableNavigationView.swift */; };
  51. AF817EF1274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  52. AF817EF2274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  53. AF817EF3274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  54. AF817EF4274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  55. AF8ED1FC2757821000B8DBC4 /* NextcloudUnitTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF8ED1FB2757821000B8DBC4 /* NextcloudUnitTests.swift */; };
  56. AF93471227E2341B002537EE /* NCShare+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93471127E2341B002537EE /* NCShare+Menu.swift */; };
  57. AF93471927E2361E002537EE /* NCShareAdvancePermissionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = AF93471427E2361E002537EE /* NCShareAdvancePermissionFooter.xib */; };
  58. AF93471A27E2361E002537EE /* NCShareAdvancePermissionHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93471527E2361E002537EE /* NCShareAdvancePermissionHeader.swift */; };
  59. AF93471B27E2361E002537EE /* NCShareAdvancePermission.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93471627E2361E002537EE /* NCShareAdvancePermission.swift */; };
  60. AF93471C27E2361E002537EE /* NCShareAdvancePermissionHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = AF93471727E2361E002537EE /* NCShareAdvancePermissionHeader.xib */; };
  61. AF93471D27E2361E002537EE /* NCShareAdvancePermissionFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93471827E2361E002537EE /* NCShareAdvancePermissionFooter.swift */; };
  62. AF93474C27E34120002537EE /* NCUtility+Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93474B27E34120002537EE /* NCUtility+Image.swift */; };
  63. AF93474E27E3F212002537EE /* NCShareNewUserAddComment.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93474D27E3F211002537EE /* NCShareNewUserAddComment.swift */; };
  64. AF935067276B84E700BD078F /* NCMenu+FloatingPanel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF935066276B84E700BD078F /* NCMenu+FloatingPanel.swift */; };
  65. AFA2AC8527849604008E1EA7 /* NCActivityCommentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFA2AC8427849604008E1EA7 /* NCActivityCommentView.swift */; };
  66. AFCE353327E4ED1900FEA6C2 /* UIToolbar+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCE353227E4ED1900FEA6C2 /* UIToolbar+Extension.swift */; };
  67. AFCE353527E4ED5900FEA6C2 /* DateFormatter+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCE353427E4ED5900FEA6C2 /* DateFormatter+Extension.swift */; };
  68. AFCE353727E4ED7B00FEA6C2 /* NCShareCells.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCE353627E4ED7B00FEA6C2 /* NCShareCells.swift */; };
  69. AFCE353927E5DE0500FEA6C2 /* NCShare+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCE353827E5DE0400FEA6C2 /* NCShare+Helper.swift */; };
  70. AFD33240276A02C100F5AE02 /* UIApplication+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFD3323F276A02C000F5AE02 /* UIApplication+Extension.swift */; };
  71. C0046CDD2A17B98400D87C9D /* LoginUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0046CDC2A17B98400D87C9D /* LoginUITests.swift */; };
  72. C03BA14A2A17BC57002C8BA3 /* XLForm in Frameworks */ = {isa = PBXBuildFile; productRef = C03BA1492A17BC57002C8BA3 /* XLForm */; };
  73. C03BA14C2A17BC60002C8BA3 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = C03BA14B2A17BC60002C8BA3 /* UICKeyChainStore */; };
  74. C04E2F192A17BA78001BAD85 /* XLForm in Frameworks */ = {isa = PBXBuildFile; productRef = C04E2F182A17BA78001BAD85 /* XLForm */; };
  75. C04E2F1B2A17BAAB001BAD85 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = C04E2F1A2A17BAAB001BAD85 /* UICKeyChainStore */; };
  76. C04E2F232A17BB4D001BAD85 /* FilesIntegrationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C04E2F222A17BB4D001BAD85 /* FilesIntegrationTests.swift */; };
  77. D575039F27146F93008DC9DC /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  78. D5B6AA7827200C7200D49C24 /* NCActivityTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5B6AA7727200C7200D49C24 /* NCActivityTableViewCell.swift */; };
  79. F30A962F2A27ADF900D7BCFE /* EnvVars.stencil in Resources */ = {isa = PBXBuildFile; fileRef = F30A962E2A27ADF900D7BCFE /* EnvVars.stencil */; };
  80. F30A96312A27AEBF00D7BCFE /* EnvVars.generated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F30A96302A27AEBF00D7BCFE /* EnvVars.generated.swift */; };
  81. F30A96322A27AEDD00D7BCFE /* EnvVars.generated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F30A96302A27AEBF00D7BCFE /* EnvVars.generated.swift */; };
  82. F30A96342A2DFCD000D7BCFE /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F30A96332A2DFCD000D7BCFE /* Realm */; };
  83. F30A96362A2DFCD000D7BCFE /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F30A96352A2DFCD000D7BCFE /* RealmSwift */; };
  84. F30A96382A2DFD2900D7BCFE /* FirebaseDatabase in Frameworks */ = {isa = PBXBuildFile; productRef = F30A96372A2DFD2900D7BCFE /* FirebaseDatabase */; };
  85. F30A963A2A2DFD3100D7BCFE /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F30A96392A2DFD3100D7BCFE /* JGProgressHUD */; };
  86. F30A963C2A2DFD3600D7BCFE /* SVGKit in Frameworks */ = {isa = PBXBuildFile; productRef = F30A963B2A2DFD3600D7BCFE /* SVGKit */; };
  87. F314F1112A30C11200BC7FAB /* PreviewSnapshots in Frameworks */ = {isa = PBXBuildFile; productRef = F314F1102A30C11200BC7FAB /* PreviewSnapshots */; };
  88. F314F1142A30E2DE00BC7FAB /* View+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E8A390295DC5E0006CB2D0 /* View+Extension.swift */; };
  89. F31F69452A2F6D4600162F76 /* NextcloudSnapshotTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F31F69442A2F6D4600162F76 /* NextcloudSnapshotTests.swift */; };
  90. F31F694D2A2F6EFB00162F76 /* SnapshotTesting in Frameworks */ = {isa = PBXBuildFile; productRef = F31F694C2A2F6EFB00162F76 /* SnapshotTesting */; };
  91. F31F69502A2F707E00162F76 /* SwiftUIView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F31F694F2A2F707E00162F76 /* SwiftUIView+Extensions.swift */; };
  92. F31F69522A2F89C400162F76 /* SVGKit in Frameworks */ = {isa = PBXBuildFile; productRef = F31F69512A2F89C400162F76 /* SVGKit */; };
  93. F31F69542A2F89C400162F76 /* SwiftRichString in Frameworks */ = {isa = PBXBuildFile; productRef = F31F69532A2F89C400162F76 /* SwiftRichString */; };
  94. F31F69562A2F89C400162F76 /* FirebaseDatabase in Frameworks */ = {isa = PBXBuildFile; productRef = F31F69552A2F89C400162F76 /* FirebaseDatabase */; };
  95. F31F69582A2F89C400162F76 /* XLForm in Frameworks */ = {isa = PBXBuildFile; productRef = F31F69572A2F89C400162F76 /* XLForm */; };
  96. F31F695A2A2F89C400162F76 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F31F69592A2F89C400162F76 /* UICKeyChainStore */; };
  97. F31F695C2A2F89C400162F76 /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F31F695B2A2F89C400162F76 /* Realm */; };
  98. F31F695E2A2F89C400162F76 /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F31F695D2A2F89C400162F76 /* JGProgressHUD */; };
  99. F31F69612A2F907800162F76 /* __Snapshots__ in Resources */ = {isa = PBXBuildFile; fileRef = F31F69602A2F907800162F76 /* __Snapshots__ */; };
  100. F31F69642A2F929600162F76 /* PreviewSnapshots in Frameworks */ = {isa = PBXBuildFile; productRef = F31F69632A2F929600162F76 /* PreviewSnapshots */; };
  101. F31F69662A2F929600162F76 /* PreviewSnapshotsTesting in Frameworks */ = {isa = PBXBuildFile; productRef = F31F69652A2F929600162F76 /* PreviewSnapshotsTesting */; };
  102. F31F69692A2F92F000162F76 /* SnapshotTestingHEIC in Frameworks */ = {isa = PBXBuildFile; productRef = F31F69682A2F92F000162F76 /* SnapshotTestingHEIC */; };
  103. F32ED5062A2F254400EABA81 /* EnvVars.generated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F30A96302A27AEBF00D7BCFE /* EnvVars.generated.swift */; };
  104. F343A4B32A1E01FF00DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  105. F343A4B42A1E084100DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  106. F343A4B52A1E084200DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  107. F343A4B62A1E084200DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  108. F343A4B72A1E084300DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  109. F343A4B82A1E084300DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  110. F343A4B92A1E084400DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  111. F343A4BB2A1E734600DDA874 /* Optional+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extension.swift */; };
  112. F343A4BC2A1E734600DDA874 /* Optional+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extension.swift */; };
  113. F343A4BD2A1E734600DDA874 /* Optional+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extension.swift */; };
  114. F343A4BE2A1E734600DDA874 /* Optional+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extension.swift */; };
  115. F343A4BF2A1E734600DDA874 /* Optional+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extension.swift */; };
  116. F343A4C02A1E734600DDA874 /* Optional+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extension.swift */; };
  117. F343A4C12A1E734600DDA874 /* Optional+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extension.swift */; };
  118. F3A7AFC62A41AA82001FC89C /* BaseUIXCTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3A7AFC52A41AA82001FC89C /* BaseUIXCTestCase.swift */; };
  119. F700222C1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  120. F700222D1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  121. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F700510022DF63AC003A3356 /* NCShare.storyboard */; };
  122. F700510522DF6A89003A3356 /* NCShare.swift in Sources */ = {isa = PBXBuildFile; fileRef = F700510422DF6A89003A3356 /* NCShare.swift */; };
  123. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */; };
  124. F702F2CD25EE5B4F008F8E80 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CC25EE5B4F008F8E80 /* AppDelegate.swift */; };
  125. F702F2CF25EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  126. F702F2D025EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  127. F702F2D125EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  128. F702F2D225EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  129. F702F2E625EE5C86008F8E80 /* NCAudioRecorderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2E425EE5C82008F8E80 /* NCAudioRecorderViewController.swift */; };
  130. F702F2E725EE5C86008F8E80 /* NCAudioRecorderViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F702F2E525EE5C82008F8E80 /* NCAudioRecorderViewController.storyboard */; };
  131. F702F2F125EE5CDB008F8E80 /* NCLogin.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F702F2F025EE5CDA008F8E80 /* NCLogin.storyboard */; };
  132. F702F2F725EE5CED008F8E80 /* NCLogin.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2F625EE5CEC008F8E80 /* NCLogin.swift */; };
  133. F702F30125EE5D2C008F8E80 /* NYMnemonic.m in Sources */ = {isa = PBXBuildFile; fileRef = F702F2FD25EE5D2C008F8E80 /* NYMnemonic.m */; };
  134. F702F30225EE5D2C008F8E80 /* english.txt in Resources */ = {isa = PBXBuildFile; fileRef = F702F2FF25EE5D2C008F8E80 /* english.txt */; };
  135. F702F30825EE5D47008F8E80 /* NCPopupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */; };
  136. F70460522499061800BB98A7 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
  137. F70460532499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
  138. F70460542499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
  139. F704B5E32430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */; };
  140. F704B5E52430AA8000632F5F /* NCCreateFormUploadConflict.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */; };
  141. F704B5E72430C06700632F5F /* NCCreateFormUploadConflictCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */; };
  142. F704B5E92430C0B800632F5F /* NCCreateFormUploadConflictCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */; };
  143. F70716E62987F81500E72C1D /* DocumentActionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70716E52987F81500E72C1D /* DocumentActionViewController.swift */; };
  144. F70716E92987F81500E72C1D /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70716E72987F81500E72C1D /* MainInterface.storyboard */; };
  145. F70716ED2987F81500E72C1D /* File Provider Extension UI.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F70716E32987F81500E72C1D /* File Provider Extension UI.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  146. F70716F929881CFA00E72C1D /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F70716F829881CFA00E72C1D /* UICKeyChainStore */; };
  147. F70753EB2542A99800972D44 /* NCViewerMediaPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70753EA2542A99800972D44 /* NCViewerMediaPage.swift */; };
  148. F70753F12542A9A200972D44 /* NCViewerMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70753F02542A9A200972D44 /* NCViewerMedia.swift */; };
  149. F70753F72542A9C000972D44 /* NCViewerMediaPage.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70753F62542A9C000972D44 /* NCViewerMediaPage.storyboard */; };
  150. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */ = {isa = PBXBuildFile; fileRef = F707C26421A2DC5200F6181E /* NCStoreReview.swift */; };
  151. F70821D829E59E6D001CA2D7 /* TagListView in Frameworks */ = {isa = PBXBuildFile; productRef = F70821D729E59E6D001CA2D7 /* TagListView */; };
  152. F70968A424212C4E00ED60E5 /* NCLivePhoto.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */; };
  153. F70B86752642CE3B00ED5349 /* FirebaseCrashlytics in Frameworks */ = {isa = PBXBuildFile; productRef = F70B86742642CE3B00ED5349 /* FirebaseCrashlytics */; };
  154. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  155. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  156. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  157. F70CEF5623E9C7E50007035B /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  158. F70D7C3725FFBF82002B9E34 /* NCCollectionViewCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D7C3525FFBF81002B9E34 /* NCCollectionViewCommon.swift */; };
  159. F70D87CF25EE6E58008CBBBD /* NCRenameFile.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */; };
  160. F70D87D025EE6E58008CBBBD /* NCRenameFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */; };
  161. F70D8D8124A4A9BF000A5756 /* NCNetworkingProcessUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D8D8024A4A9BF000A5756 /* NCNetworkingProcessUpload.swift */; };
  162. F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F42405770F00A6033D /* NCViewerPDF.swift */; };
  163. F710D2022405826100A6033D /* NCViewer+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D2012405826100A6033D /* NCViewer+Menu.swift */; };
  164. F710FC7A277B7D0000AA9FBF /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC79277B7D0000AA9FBF /* Realm */; };
  165. F710FC7C277B7D0000AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC7B277B7D0000AA9FBF /* RealmSwift */; };
  166. F710FC80277B7D2700AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC7F277B7D2700AA9FBF /* RealmSwift */; };
  167. F710FC84277B7D3500AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC83277B7D3500AA9FBF /* RealmSwift */; };
  168. F710FC88277B7D3F00AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC87277B7D3F00AA9FBF /* RealmSwift */; };
  169. F711D63128F44801003F43C8 /* IntentHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9739428F17131002C43E2 /* IntentHandler.swift */; };
  170. F7134186259747BA00768D21 /* NCPushNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = F7134185259747BA00768D21 /* NCPushNotification.m */; };
  171. F713FF002472764100214AF6 /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */; };
  172. F7145610296433C80038D028 /* NCDocumentCamera.swift in Sources */ = {isa = PBXBuildFile; fileRef = F714560F296433C80038D028 /* NCDocumentCamera.swift */; };
  173. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  174. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  175. F714803B262EBE3900693E51 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F714803A262EBE3900693E51 /* MainInterface.storyboard */; };
  176. F7148041262EBE4000693E51 /* NCShareExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7148040262EBE4000693E51 /* NCShareExtension.swift */; };
  177. F714804F262ED4F900693E51 /* NCGridCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4521903D010088454D /* NCGridCell.xib */; };
  178. F7148054262ED51000693E51 /* NCListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4321903CF20088454D /* NCListCell.xib */; };
  179. F7148059262ED52200693E51 /* NCSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */; };
  180. F714805E262ED52900693E51 /* NCSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD53219047D40088454D /* NCSectionFooter.xib */; };
  181. F7148063262ED66200693E51 /* NCEmptyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7239876253D86D300257F49 /* NCEmptyView.xib */; };
  182. F717402D24F699A5000C87D5 /* NCFavorite.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F717402B24F699A5000C87D5 /* NCFavorite.storyboard */; };
  183. F717402E24F699A5000C87D5 /* NCFavorite.swift in Sources */ = {isa = PBXBuildFile; fileRef = F717402C24F699A5000C87D5 /* NCFavorite.swift */; };
  184. F718C24E254D507B00C5C256 /* NCViewerMediaDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F718C24D254D507B00C5C256 /* NCViewerMediaDetailView.swift */; };
  185. F719D9E0288D37A300762E33 /* NCColorPicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F719D9DF288D37A300762E33 /* NCColorPicker.storyboard */; };
  186. F719D9E2288D396100762E33 /* NCColorPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = F719D9E1288D396100762E33 /* NCColorPicker.swift */; };
  187. F71CD6CA2930D7B1006C95C1 /* NCApplicationHandle.swift in Sources */ = {isa = PBXBuildFile; fileRef = F71CD6C92930D7B1006C95C1 /* NCApplicationHandle.swift */; };
  188. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7226EDB1EE4089300EBECB1 /* Main.storyboard */; };
  189. F723985C253C95CE00257F49 /* NCViewerRichdocument.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F723985B253C95CE00257F49 /* NCViewerRichdocument.storyboard */; };
  190. F7239871253D86B600257F49 /* NCEmptyDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7239870253D86B600257F49 /* NCEmptyDataSet.swift */; };
  191. F7239877253D86D300257F49 /* NCEmptyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7239876253D86D300257F49 /* NCEmptyView.xib */; };
  192. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */; };
  193. F7245924289BB50C00474787 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  194. F7245925289BB59100474787 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  195. F7245926289BB59300474787 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  196. F7245927289BB59300474787 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  197. F72685E727C78E490019EF5E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72685E927C78E490019EF5E /* InfoPlist.strings */; };
  198. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */; };
  199. F72A17D828B221E300F3F159 /* DashboardWidgetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72A17D728B221E300F3F159 /* DashboardWidgetView.swift */; };
  200. F72A47EC2487B06B005AD489 /* NCOperationQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72A47EB2487B06B005AD489 /* NCOperationQueue.swift */; };
  201. F72AD70D28C24B93006CB92D /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72AD70C28C24B93006CB92D /* NextcloudKit */; };
  202. F72AD70F28C24BA1006CB92D /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72AD70E28C24BA1006CB92D /* NextcloudKit */; };
  203. F72AD71128C24BBB006CB92D /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72AD71028C24BBB006CB92D /* NextcloudKit */; };
  204. F72AD71328C24BCC006CB92D /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72AD71228C24BCC006CB92D /* NextcloudKit */; };
  205. F72CD01227A7E92400E59476 /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F72CD01127A7E92400E59476 /* JGProgressHUD */; };
  206. F72CD63A25C19EBF00F46F9A /* NCAutoUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72CD63925C19EBF00F46F9A /* NCAutoUpload.swift */; };
  207. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  208. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */; };
  209. F72D7EB7263B1207000B3DFC /* MarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72D7EB6263B1207000B3DFC /* MarkdownKit */; };
  210. F72DA9B425F53E4E00B87DB1 /* SwiftRichString in Frameworks */ = {isa = PBXBuildFile; productRef = F72DA9B325F53E4E00B87DB1 /* SwiftRichString */; };
  211. F72EA95228B7BA2A00C88F0C /* DashboardWidgetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72EA95128B7BA2A00C88F0C /* DashboardWidgetProvider.swift */; };
  212. F72EA95428B7BABA00C88F0C /* FilesWidgetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72EA95328B7BABA00C88F0C /* FilesWidgetProvider.swift */; };
  213. F72EA95828B7BC4F00C88F0C /* FilesData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72EA95728B7BC4F00C88F0C /* FilesData.swift */; };
  214. F72EA95A28B7BD0D00C88F0C /* FilesWidgetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72EA95928B7BD0D00C88F0C /* FilesWidgetView.swift */; };
  215. F72FD3B5297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  216. F72FD3B6297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  217. F72FD3B7297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  218. F72FD3B8297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  219. F72FD3B9297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  220. F72FD3BA297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  221. F732D23327CF8AED000B0F1B /* NCPlayerToolBar.xib in Resources */ = {isa = PBXBuildFile; fileRef = F732D23227CF8AED000B0F1B /* NCPlayerToolBar.xib */; };
  222. F733598125C1C188002ABA72 /* NCAskAuthorization.swift in Sources */ = {isa = PBXBuildFile; fileRef = F733598025C1C188002ABA72 /* NCAskAuthorization.swift */; };
  223. F7346E1228B0EF5B006CE2D2 /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7346E1128B0EF5B006CE2D2 /* WidgetKit.framework */; };
  224. F7346E1328B0EF5B006CE2D2 /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F79BCEEA270B49C800B5B71F /* SwiftUI.framework */; };
  225. F7346E1628B0EF5C006CE2D2 /* Widget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7346E1528B0EF5C006CE2D2 /* Widget.swift */; };
  226. F7346E1C28B0EF5E006CE2D2 /* Widget.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F7346E1028B0EF5B006CE2D2 /* Widget.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  227. F7346E2328B0FEBA006CE2D2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7346E2228B0FEBA006CE2D2 /* Assets.xcassets */; };
  228. F7346E2528B0FEFA006CE2D2 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7346E2428B0FEFA006CE2D2 /* UICKeyChainStore */; };
  229. F7346E2928B0FFF2006CE2D2 /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F7346E2828B0FFF2006CE2D2 /* RealmSwift */; };
  230. F734B06628E75C0100E180D5 /* TLPhotoPicker in Frameworks */ = {isa = PBXBuildFile; productRef = F734B06528E75C0100E180D5 /* TLPhotoPicker */; };
  231. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */; };
  232. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7381EDA218218C9000B1560 /* NCOffline.swift */; };
  233. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7381EDE218218C9000B1560 /* NCOffline.storyboard */; };
  234. F738D4902756740100CD1D38 /* NCLoginNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F738D48F2756740100CD1D38 /* NCLoginNavigationController.swift */; };
  235. F73ADD1C265546890069EA0D /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F73ADD1B265546890069EA0D /* SwiftEntryKit */; };
  236. F73ADD2126554F8E0069EA0D /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F73ADD2026554F8E0069EA0D /* SwiftEntryKit */; };
  237. F73ADD2226554FD10069EA0D /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  238. F73ADD2426554FE20069EA0D /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F73ADD2326554FE20069EA0D /* SwiftEntryKit */; };
  239. F73B422B2476764F00A30FD3 /* NCNotification.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73B42292476764F00A30FD3 /* NCNotification.storyboard */; };
  240. F73B422C2476764F00A30FD3 /* NCNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73B422A2476764F00A30FD3 /* NCNotification.swift */; };
  241. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */; };
  242. F73D11FA253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73D11F9253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard */; };
  243. F73F537F1E929C8500F8678D /* NCMore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73F537E1E929C8500F8678D /* NCMore.swift */; };
  244. F740BEF02A35C2AD00E9B6D5 /* UILabel+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EE66AC2A20B226009AE765 /* UILabel+Extension.swift */; };
  245. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  246. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  247. F7434B3820E2400600417916 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  248. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F745B252222D88AE00346520 /* NCLoginQRCode.swift */; };
  249. F746EC51273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
  250. F746EC52273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
  251. F746EC53273906C50052598D /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
  252. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */; };
  253. F7490E6B29882A92009DCE94 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  254. F7490E6C29882AEA009DCE94 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  255. F7490E6E29882B56009DCE94 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  256. F7490E6F29882B67009DCE94 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  257. F7490E7029882B9B009DCE94 /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  258. F7490E7229882BB4009DCE94 /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F7490E7129882BB4009DCE94 /* RealmSwift */; };
  259. F7490E7329882BC8009DCE94 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  260. F7490E7429882BCC009DCE94 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  261. F7490E7529882BE2009DCE94 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  262. F7490E7629882BF3009DCE94 /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  263. F7490E7729882C10009DCE94 /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  264. F7490E7829882C28009DCE94 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  265. F7490E7E29882C6E009DCE94 /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  266. F7490E7F29882C73009DCE94 /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  267. F7490E8029882C76009DCE94 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  268. F7490E8129882C79009DCE94 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  269. F7490E8229882C80009DCE94 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  270. F7490E8329882C84009DCE94 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  271. F7490E8429882C89009DCE94 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  272. F7490E8529882C8C009DCE94 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  273. F7490E8629882C99009DCE94 /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  274. F7490E8729882CA8009DCE94 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  275. F7490E8929882CC8009DCE94 /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F7490E8829882CC8009DCE94 /* SwiftEntryKit */; };
  276. F7490E8B29882CE4009DCE94 /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F7490E8A29882CE4009DCE94 /* NextcloudKit */; };
  277. F7490E8C29882D02009DCE94 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  278. F7490E8D29882F5B009DCE94 /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  279. F7490E8E2988334A009DCE94 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  280. F749B64A297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  281. F749B64B297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  282. F749B64C297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  283. F749B64D297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  284. F749B64E297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  285. F749B64F297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  286. F749B651297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  287. F749B652297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  288. F749B653297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  289. F749B654297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  290. F749B655297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  291. F749B656297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  292. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  293. F74AF3A4247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  294. F74AF3A5247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  295. F74AF3A6247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  296. F74C0436253F1CDC009762AB /* NCShares.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74C0434253F1CDC009762AB /* NCShares.swift */; };
  297. F74C0437253F1CDC009762AB /* NCShares.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F74C0435253F1CDC009762AB /* NCShares.storyboard */; };
  298. F74DE14325135B6800917068 /* NCTransfers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74DE14125135B6800917068 /* NCTransfers.swift */; };
  299. F74DE14425135B6800917068 /* NCTransfers.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F74DE14225135B6800917068 /* NCTransfers.storyboard */; };
  300. F74E7720277A2EF40013B958 /* XLForm in Frameworks */ = {isa = PBXBuildFile; productRef = F74E771F277A2EF40013B958 /* XLForm */; };
  301. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7501C302212E57400FB1415 /* NCMedia.storyboard */; };
  302. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7501C312212E57400FB1415 /* NCMedia.swift */; };
  303. F753BA93281FD8020015BFB6 /* EasyTipView in Frameworks */ = {isa = PBXBuildFile; productRef = F753BA92281FD8020015BFB6 /* EasyTipView */; };
  304. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F755BD9A20594AC7008C5FBB /* NCService.swift */; };
  305. F757CC8229E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  306. F757CC8329E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  307. F757CC8429E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  308. F757CC8529E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  309. F757CC8629E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  310. F757CC8729E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  311. F757CC8829E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  312. F757CC8C29E82D0500F31428 /* NCGroupfolders.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F757CC8A29E82D0500F31428 /* NCGroupfolders.storyboard */; };
  313. F757CC8D29E82D0500F31428 /* NCGroupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8B29E82D0500F31428 /* NCGroupfolders.swift */; };
  314. F7581D1A25EFDA61004DC699 /* NCLoginWeb+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7581D1925EFDA60004DC699 /* NCLoginWeb+Menu.swift */; };
  315. F7581D2425EFDDDF004DC699 /* NCMedia+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7581D2325EFDDDF004DC699 /* NCMedia+Menu.swift */; };
  316. F758A01227A7F03E0069468B /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F758A01127A7F03E0069468B /* JGProgressHUD */; };
  317. F758B45A212C564000515F55 /* NCScan.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F758B457212C564000515F55 /* NCScan.storyboard */; };
  318. F758B45E212C569D00515F55 /* NCScanCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45D212C569C00515F55 /* NCScanCell.swift */; };
  319. F758B460212C56A400515F55 /* NCScan.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45F212C56A400515F55 /* NCScan.swift */; };
  320. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  321. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  322. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */; };
  323. F75B0ABD244C4DBB00E58DCA /* NCActionCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75B0ABC244C4DBB00E58DCA /* NCActionCenter.swift */; };
  324. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */; };
  325. F75CA1472962F13700B01130 /* HUDView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75CA1462962F13700B01130 /* HUDView.swift */; };
  326. F75CA1482962F13700B01130 /* HUDView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75CA1462962F13700B01130 /* HUDView.swift */; };
  327. F75D19E325EFE09000D74598 /* NCTrash+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75D19E225EFE09000D74598 /* NCTrash+Menu.swift */; };
  328. F75DD765290ABB25002EB562 /* Intent.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = F75DD769290ABB25002EB562 /* Intent.intentdefinition */; };
  329. F75DD766290ABB25002EB562 /* Intent.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = F75DD769290ABB25002EB562 /* Intent.intentdefinition */; };
  330. F75DD767290ABB25002EB562 /* Intent.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = F75DD769290ABB25002EB562 /* Intent.intentdefinition */; };
  331. F75EAED826D2552E00F4320E /* MarqueeLabel in Frameworks */ = {isa = PBXBuildFile; productRef = F75EAED726D2552E00F4320E /* MarqueeLabel */; };
  332. F760329F252F0F8E0015A421 /* NCTransferCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760329D252F0F8E0015A421 /* NCTransferCell.swift */; };
  333. F76032A0252F0F8E0015A421 /* NCTransferCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760329E252F0F8E0015A421 /* NCTransferCell.xib */; };
  334. F761856A29E98543006EB3B0 /* NCIntro.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F761856629E98543006EB3B0 /* NCIntro.storyboard */; };
  335. F761856B29E98543006EB3B0 /* NCIntroViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F761856729E98543006EB3B0 /* NCIntroViewController.swift */; };
  336. F761856C29E98543006EB3B0 /* NCIntroCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F761856829E98543006EB3B0 /* NCIntroCollectionViewCell.swift */; };
  337. F761856D29E98543006EB3B0 /* NCIntroCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F761856929E98543006EB3B0 /* NCIntroCollectionViewCell.xib */; };
  338. F763D29D2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  339. F763D29E2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  340. F763D29F2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  341. F763D2A02A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  342. F763D2A12A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  343. F763D2A22A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  344. F763D2A32A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  345. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */; };
  346. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */; };
  347. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  348. F765E9CD295C585800A09ED8 /* NCUploadScanDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765E9CC295C585800A09ED8 /* NCUploadScanDocument.swift */; };
  349. F765F73125237E3F00391DBE /* NCRecent.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765F72F25237E3F00391DBE /* NCRecent.swift */; };
  350. F765F73225237E3F00391DBE /* NCRecent.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F765F73025237E3F00391DBE /* NCRecent.storyboard */; };
  351. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EC22C901F5007ED366 /* FileProviderDomain.swift */; };
  352. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EF22C90433007ED366 /* FileProviderUtility.swift */; };
  353. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */; };
  354. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453B22E9CFFF000A798A /* NCShareUserCell.xib */; };
  355. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769453F22E9F077000A798A /* NCSharePaging.swift */; };
  356. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454522E9F1B0000A798A /* NCShareCommon.swift */; };
  357. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454722E9F20D000A798A /* NCShareNetworking.swift */; };
  358. F769CA172965AB7C00039397 /* NCUploadAssets.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769CA162965AB7C00039397 /* NCUploadAssets.swift */; };
  359. F769CA192966EA3C00039397 /* ComponentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769CA182966EA3C00039397 /* ComponentView.swift */; };
  360. F769CA1A2966EA3C00039397 /* ComponentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769CA182966EA3C00039397 /* ComponentView.swift */; };
  361. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  362. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  363. F76C26A62850D3A500E42BDF /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  364. F76D364628A4F8BF00214537 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */; };
  365. F76D364728A4F8BF00214537 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */; };
  366. F76D364828A4F8BF00214537 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */; };
  367. F76D364928A4F8BF00214537 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */; };
  368. F76D3CF12428B40E005DFA87 /* NCViewerPDFSearch.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */; };
  369. F76D3CF32428B94E005DFA87 /* NCViewerPDFSearchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */; };
  370. F76D3CF52428D0C1005DFA87 /* NCViewerPDF.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */; };
  371. F76DA95B277B75A90082465B /* TOPasscodeViewController.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */; };
  372. F76DA95C277B75A90082465B /* TOPasscodeViewController.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  373. F76DA963277B760E0082465B /* Queuer in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA962277B760E0082465B /* Queuer */; };
  374. F76DA966277B76F30082465B /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA965277B76F30082465B /* UICKeyChainStore */; };
  375. F76DA969277B77EA0082465B /* DropDown in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA968277B77EA0082465B /* DropDown */; };
  376. F76DEE9728F808AF0041B1C9 /* LockscreenData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76DEE9428F808AF0041B1C9 /* LockscreenData.swift */; };
  377. F76DEE9828F808AF0041B1C9 /* LockscreenWidgetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76DEE9528F808AF0041B1C9 /* LockscreenWidgetProvider.swift */; };
  378. F76DEE9928F808AF0041B1C9 /* LockscreenWidgetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76DEE9628F808AF0041B1C9 /* LockscreenWidgetView.swift */; };
  379. F7707687263A853700A1BA94 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  380. F7707689263A896A00A1BA94 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  381. F770768A263A8A2500A1BA94 /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  382. F770768E263A8C3400A1BA94 /* FloatingPanel in Frameworks */ = {isa = PBXBuildFile; productRef = F770768D263A8C3400A1BA94 /* FloatingPanel */; };
  383. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */; };
  384. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D420E2392D00AFB62D /* FileProviderItem.swift */; };
  385. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */; };
  386. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  387. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F220E239A600AFB62D /* FileProviderData.swift */; };
  388. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */; };
  389. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */; };
  390. F7725A60251F33BB00D125E0 /* NCFiles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7725A5E251F33BB00D125E0 /* NCFiles.swift */; };
  391. F7725A61251F33BB00D125E0 /* NCFiles.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7725A5F251F33BB00D125E0 /* NCFiles.storyboard */; };
  392. F77333882927A72100466E35 /* OpenSSL in Frameworks */ = {isa = PBXBuildFile; productRef = F77333872927A72100466E35 /* OpenSSL */; };
  393. F774264A22EB4D0000B23912 /* NCSearchUserDropDownCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F774264822EB4D0000B23912 /* NCSearchUserDropDownCell.xib */; };
  394. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F322281649000D5EB0 /* NCGridMediaCell.swift */; };
  395. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F77444F422281649000D5EB0 /* NCGridMediaCell.xib */; };
  396. F77444F8222816D5000D5EB0 /* NCPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F7222816D5000D5EB0 /* NCPickerViewController.swift */; };
  397. F77910A525DD517B00CEDB9E /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F77910A425DD517B00CEDB9E /* Settings.bundle */; };
  398. F77910AB25DD53C700CEDB9E /* NCSettingsBundleHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77910AA25DD53C700CEDB9E /* NCSettingsBundleHelper.swift */; };
  399. F7792DE529EEE02D005930CE /* MobileVLCKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7792DE429EEE02D005930CE /* MobileVLCKit.xcframework */; };
  400. F7792DE629EEE02D005930CE /* MobileVLCKit.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F7792DE429EEE02D005930CE /* MobileVLCKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  401. F77A697D250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77A697C250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift */; };
  402. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  403. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */; };
  404. F77B0E5F1D118A16002130FE /* NCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* NCSettings.m */; };
  405. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
  406. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
  407. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */ = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */; };
  408. F77B0F631D118A16002130FE /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  409. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  410. F77BB746289984CA0090FC19 /* UIViewController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77BB745289984CA0090FC19 /* UIViewController+Extension.swift */; };
  411. F77BB748289985270090FC19 /* UITabBarController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77BB747289985270090FC19 /* UITabBarController+Extension.swift */; };
  412. F77BB74A2899857B0090FC19 /* UINavigationController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77BB7492899857B0090FC19 /* UINavigationController+Extension.swift */; };
  413. F77BC3EB293E5268005F2B08 /* Swifter in Frameworks */ = {isa = PBXBuildFile; productRef = F77BC3EA293E5268005F2B08 /* Swifter */; };
  414. F77BC3ED293E528A005F2B08 /* NCConfigServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77BC3EC293E528A005F2B08 /* NCConfigServer.swift */; };
  415. F77C97392953131000FDDD09 /* NCCameraRoll.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77C97382953131000FDDD09 /* NCCameraRoll.swift */; };
  416. F77C973A2953143A00FDDD09 /* NCCameraRoll.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77C97382953131000FDDD09 /* NCCameraRoll.swift */; };
  417. F77ED59128C9CE9D00E24ED0 /* ToolbarData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77ED59028C9CE9D00E24ED0 /* ToolbarData.swift */; };
  418. F77ED59328C9CEA000E24ED0 /* ToolbarWidgetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77ED59228C9CEA000E24ED0 /* ToolbarWidgetProvider.swift */; };
  419. F77ED59528C9CEA400E24ED0 /* ToolbarWidgetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77ED59428C9CEA300E24ED0 /* ToolbarWidgetView.swift */; };
  420. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  421. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  422. F7817CF829801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  423. F7817CF929801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  424. F7817CFA29801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  425. F7817CFB29801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  426. F7817CFC29801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  427. F7817CFD29801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  428. F7817CFE29801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  429. F7817CFF29802D1A00FFBC65 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  430. F7817D0029802D3D00FFBC65 /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
  431. F7817D0129802D5F00FFBC65 /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
  432. F7817D0229802D7700FFBC65 /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
  433. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  434. F782FDC424E6933900666099 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  435. F78302F628B4C3C500B84583 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  436. F78302F728B4C3C900B84583 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  437. F78302F828B4C3E100B84583 /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  438. F78302F928B4C3E600B84583 /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  439. F78302FA28B4C3EA00B84583 /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  440. F78302FB28B4C3EE00B84583 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  441. F78302FD28B4C42B00B84583 /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  442. F78302FE28B4C44700B84583 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  443. F78302FF28B4C45000B84583 /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  444. F783030028B4C45800B84583 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  445. F783030128B4C49700B84583 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  446. F783030228B4C4B800B84583 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  447. F783030328B4C4DD00B84583 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  448. F783030628B4C51E00B84583 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  449. F783030728B4C52800B84583 /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  450. F783030D28B4C59A00B84583 /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F783030C28B4C59A00B84583 /* SwiftEntryKit */; };
  451. F783031228B4C8EC00B84583 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  452. F783034428B5142B00B84583 /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F783034328B5142B00B84583 /* NextcloudKit */; };
  453. F785EE9D246196DF00B3F945 /* NCNetworkingE2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */; };
  454. F785EE9E2461A09900B3F945 /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  455. F785EEA42461A4A600B3F945 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  456. F785EEA52461A4CF00B3F945 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  457. F785EEA62461A4FB00B3F945 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  458. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F787704E22E7019900F287A9 /* NCShareLinkCell.xib */; };
  459. F787AC09298BCB4A0001BB00 /* SVGKitSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F787AC08298BCB4A0001BB00 /* SVGKitSwift */; };
  460. F787AC0B298BCB540001BB00 /* SVGKitSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F787AC0A298BCB540001BB00 /* SVGKitSwift */; };
  461. F788ECC7263AAAFA00ADC67F /* MarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = F788ECC6263AAAFA00ADC67F /* MarkdownKit */; };
  462. F78A10BF29322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  463. F78A10C029322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  464. F78A10C129322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  465. F78A10C229322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  466. F78A10C329322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  467. F78A10C429322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  468. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */; };
  469. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */; };
  470. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD3F21903CC20088454D /* NCGridCell.swift */; };
  471. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4121903CE00088454D /* NCListCell.swift */; };
  472. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4321903CF20088454D /* NCListCell.xib */; };
  473. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4521903D010088454D /* NCGridCell.xib */; };
  474. F78ACD4A21903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4821903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift */; };
  475. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4921903F850088454D /* NCTrashListCell.xib */; };
  476. F78ACD52219046DC0088454D /* NCSectionHeaderMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD51219046DC0088454D /* NCSectionHeaderMenu.swift */; };
  477. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD53219047D40088454D /* NCSectionFooter.xib */; };
  478. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */; };
  479. F78C6FDE296D677300C952C3 /* NCContextMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78C6FDD296D677300C952C3 /* NCContextMenu.swift */; };
  480. F78E2D6529AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  481. F78E2D6629AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  482. F78E2D6729AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  483. F78E2D6829AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  484. F78E2D6929AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  485. F78E2D6A29AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  486. F78E2D6B29AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  487. F78E2D6C29AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  488. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78F74332163757000C2ADAD /* NCTrash.storyboard */; };
  489. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78F74352163781100C2ADAD /* NCTrash.swift */; };
  490. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */; };
  491. F793E59D28B761E7005E4B02 /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  492. F793E59E28B763C2005E4B02 /* NCAskAuthorization.swift in Sources */ = {isa = PBXBuildFile; fileRef = F733598025C1C188002ABA72 /* NCAskAuthorization.swift */; };
  493. F793E59F28B764F6005E4B02 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  494. F793E5A128B76541005E4B02 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
  495. F793E5A228B76580005E4B02 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
  496. F798F0E225880608000DAFFD /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  497. F798F0E725880609000DAFFD /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  498. F798F0EC2588060A000DAFFD /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  499. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */; };
  500. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79A65C52191D95E00FF6DCC /* NCSelect.swift */; };
  501. F79B646026CA661600838ACA /* UIControl+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extension.swift */; };
  502. F79B646126CA661600838ACA /* UIControl+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extension.swift */; };
  503. F79B646226CA661600838ACA /* UIControl+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extension.swift */; };
  504. F79B646326CA661600838ACA /* UIControl+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extension.swift */; };
  505. F79B869B265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B869A265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift */; };
  506. F79EC77F26316193004E59D6 /* NCRenameFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */; };
  507. F79EC784263161BA004E59D6 /* NCRenameFile.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */; };
  508. F79EC78926316AC4004E59D6 /* NCPopupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */; };
  509. F79EDAA326B004980007D134 /* NCPlayerToolBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79EDA9F26B004980007D134 /* NCPlayerToolBar.swift */; };
  510. F79EDAA526B004980007D134 /* NCPlayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79EDAA126B004980007D134 /* NCPlayer.swift */; };
  511. F7A0D1352591FBC5008F8A13 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  512. F7A0D1362591FBC5008F8A13 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  513. F7A0D1372591FBC5008F8A13 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  514. F7A1050E29E587AF00FFD92B /* TagListView in Frameworks */ = {isa = PBXBuildFile; productRef = F7A1050D29E587AF00FFD92B /* TagListView */; };
  515. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */; };
  516. F7A48413297022E000BD1B49 /* ViewerQuickLook.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A48412297022E000BD1B49 /* ViewerQuickLook.swift */; };
  517. F7A48415297028FC00BD1B49 /* Nextcloud Hub.png in Resources */ = {isa = PBXBuildFile; fileRef = F7A48414297028FC00BD1B49 /* Nextcloud Hub.png */; };
  518. F7A60F86292D215000FCE1F2 /* NCShareAccounts.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A60F84292D215000FCE1F2 /* NCShareAccounts.swift */; };
  519. F7A60F87292D215000FCE1F2 /* NCShareAccounts.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7A60F85292D215000FCE1F2 /* NCShareAccounts.storyboard */; };
  520. F7A76DC8256A71CD00119AB3 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  521. F7A76DCD256A71CE00119AB3 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  522. F7A7FA6329265CF4000603EF /* NCManageE2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A7FA6229265CF4000603EF /* NCManageE2EE.swift */; };
  523. F7A8D72428F1771B008BBE1C /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F7A8D72328F1771B008BBE1C /* NextcloudKit */; };
  524. F7A8D72828F17728008BBE1C /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F7A8D72728F17728008BBE1C /* RealmSwift */; };
  525. F7A8D72E28F17764008BBE1C /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7A8D72D28F17764008BBE1C /* UICKeyChainStore */; };
  526. F7A8D73428F17E12008BBE1C /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  527. F7A8D73528F17E16008BBE1C /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  528. F7A8D73628F17E1A008BBE1C /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  529. F7A8D73728F17E1E008BBE1C /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  530. F7A8D73828F17E21008BBE1C /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  531. F7A8D73928F17E25008BBE1C /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  532. F7A8D73A28F17E28008BBE1C /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  533. F7A8D73C28F181BC008BBE1C /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  534. F7A8D73D28F181D3008BBE1C /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  535. F7A8D73E28F181E2008BBE1C /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  536. F7A8D73F28F181EF008BBE1C /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  537. F7A8D74028F18212008BBE1C /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  538. F7A8D74128F18254008BBE1C /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  539. F7A8D74228F18261008BBE1C /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  540. F7A8D74328F1826F008BBE1C /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  541. F7A8D74428F1827B008BBE1C /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  542. F7A8D74528F1828E008BBE1C /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  543. F7AC1CB028AB94490032D99F /* Array+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AC1CAF28AB94490032D99F /* Array+Extension.swift */; };
  544. F7AC934A296193050002BC0F /* Reasons to use Nextcloud.pdf in Resources */ = {isa = PBXBuildFile; fileRef = F7AC9349296193050002BC0F /* Reasons to use Nextcloud.pdf */; };
  545. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */; };
  546. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */; };
  547. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */; };
  548. F7B6B70427C4E7FA00A7F6EB /* NCScan+CollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B6B70327C4E7FA00A7F6EB /* NCScan+CollectionView.swift */; };
  549. F7B7504B2397D38F004E13EC /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  550. F7B8B83025681C3400967775 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = F7B8B82F25681C3400967775 /* GoogleService-Info.plist */; };
  551. F7B8CD91261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
  552. F7B8CD96261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
  553. F7B8CD9B261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
  554. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  555. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  556. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  557. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  558. F7BB7E4727A18C56009B9F29 /* Parchment in Frameworks */ = {isa = PBXBuildFile; productRef = F7BB7E4627A18C56009B9F29 /* Parchment */; };
  559. F7BC287E26663F6C004D46C5 /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
  560. F7BC288026663F85004D46C5 /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
  561. F7BD71E62636EAFC00643C34 /* NCNetworkingE2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */; };
  562. F7BF9D822934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  563. F7BF9D832934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  564. F7BF9D842934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  565. F7BF9D852934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  566. F7BF9D862934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  567. F7BF9D872934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  568. F7C1EEA525053A9C00866ACC /* NCDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C1EEA425053A9C00866ACC /* NCDataSource.swift */; };
  569. F7C30DF6291BC0CA0017149B /* NCNetworkingE2EEUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DF5291BC0CA0017149B /* NCNetworkingE2EEUpload.swift */; };
  570. F7C30DF7291BC0D30017149B /* NCNetworkingE2EEUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DF5291BC0CA0017149B /* NCNetworkingE2EEUpload.swift */; };
  571. F7C30DFA291BCF790017149B /* NCNetworkingE2EECreateFolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DF9291BCF790017149B /* NCNetworkingE2EECreateFolder.swift */; };
  572. F7C30DFB291BCF790017149B /* NCNetworkingE2EECreateFolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DF9291BCF790017149B /* NCNetworkingE2EECreateFolder.swift */; };
  573. F7C30DFD291BD0B80017149B /* NCNetworkingE2EEDelete.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DFC291BD0B80017149B /* NCNetworkingE2EEDelete.swift */; };
  574. F7C30DFE291BD0B80017149B /* NCNetworkingE2EEDelete.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DFC291BD0B80017149B /* NCNetworkingE2EEDelete.swift */; };
  575. F7C30E00291BD2610017149B /* NCNetworkingE2EERename.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DFF291BD2610017149B /* NCNetworkingE2EERename.swift */; };
  576. F7C30E01291BD2610017149B /* NCNetworkingE2EERename.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DFF291BD2610017149B /* NCNetworkingE2EERename.swift */; };
  577. F7C7B25028B8AD4500E7115D /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  578. F7C7B25128B8B0C400E7115D /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  579. F7C7B489245EBA4100D93E60 /* NCViewerQuickLook.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */; };
  580. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C9555221F0C4CA0024296E /* NCActivity.storyboard */; };
  581. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9555421F0C5470024296E /* NCActivity.swift */; };
  582. F7C9739228F17131002C43E2 /* Intents.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C9739128F17131002C43E2 /* Intents.framework */; };
  583. F7C9739528F17131002C43E2 /* IntentHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9739428F17131002C43E2 /* IntentHandler.swift */; };
  584. F7C9739928F17131002C43E2 /* WidgetDashboardIntentHandler.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F7C9739028F17131002C43E2 /* WidgetDashboardIntentHandler.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  585. F7CA212D25F1333300826ABB /* NCAccountRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CA212B25F1333200826ABB /* NCAccountRequest.swift */; };
  586. F7CA212E25F1333300826ABB /* NCAccountRequest.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */; };
  587. F7CB689A2541676B0050EC94 /* NCMore.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CB68992541676B0050EC94 /* NCMore.storyboard */; };
  588. F7CB68A0254169530050EC94 /* NCSettings.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CB689F254169530050EC94 /* NCSettings.storyboard */; };
  589. F7CBC31C24F78E79004D3812 /* NCSortMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CBC31B24F78E79004D3812 /* NCSortMenu.swift */; };
  590. F7CF16A32A4D7C7A000FF107 /* NCMoreUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7CF16A22A4D7C7A000FF107 /* NCMoreUserCell.xib */; };
  591. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */; };
  592. F7D56B1A2972405500FA46C4 /* Mantis in Frameworks */ = {isa = PBXBuildFile; productRef = F7D56B192972405500FA46C4 /* Mantis */; };
  593. F7D57C8626317BDA00DE301D /* NCAccountRequest.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */; };
  594. F7D57C8B26317BDE00DE301D /* NCAccountRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CA212B25F1333200826ABB /* NCAccountRequest.swift */; };
  595. F7D68FCC28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  596. F7D68FCD28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  597. F7D68FCE28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  598. F7D68FCF28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  599. F7D68FD028CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  600. F7D96FCC246ED7E200536D73 /* NCNetworkingCheckRemoteUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */; };
  601. F7E0710128B13BB00001B882 /* DashboardData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E0710028B13BB00001B882 /* DashboardData.swift */; };
  602. F7E0CDCF265CE8610044854E /* NCUserStatus.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7E0CDCE265CE8610044854E /* NCUserStatus.storyboard */; };
  603. F7E41316294A19B300839300 /* UIView+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E41315294A19B300839300 /* UIView+Extension.swift */; };
  604. F7E4D9C422ED929B003675FD /* NCShareCommentsCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E4D9C322ED929B003675FD /* NCShareCommentsCell.swift */; };
  605. F7E8A391295DC5E0006CB2D0 /* View+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E8A390295DC5E0006CB2D0 /* View+Extension.swift */; };
  606. F7E98C1627E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  607. F7E98C1727E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  608. F7E98C1827E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  609. F7E98C1927E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  610. F7EBCDCF277B81FF00A4EF67 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDCE277B81FF00A4EF67 /* UICKeyChainStore */; };
  611. F7EBCDD1277B820D00A4EF67 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDD0277B820D00A4EF67 /* UICKeyChainStore */; };
  612. F7EBCDD3277B821700A4EF67 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDD2277B821700A4EF67 /* UICKeyChainStore */; };
  613. F7ED547C25EEA65400956C55 /* QRCodeReader in Frameworks */ = {isa = PBXBuildFile; productRef = F7ED547B25EEA65400956C55 /* QRCodeReader */; };
  614. F7EDE4CC262D7B6F00414FE6 /* NCEmptyDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7239870253D86B600257F49 /* NCEmptyDataSet.swift */; };
  615. F7EDE4D1262D7B8400414FE6 /* NCDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C1EEA425053A9C00866ACC /* NCDataSource.swift */; };
  616. F7EDE4D6262D7B9600414FE6 /* NCListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4121903CE00088454D /* NCListCell.swift */; };
  617. F7EDE4DB262D7BA200414FE6 /* NCCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */; };
  618. F7EDE4E0262D7BAF00414FE6 /* NCGridCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD3F21903CC20088454D /* NCGridCell.swift */; };
  619. F7EDE4E5262D7BBE00414FE6 /* NCSectionHeaderMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD51219046DC0088454D /* NCSectionHeaderMenu.swift */; };
  620. F7EDE509262DA9D600414FE6 /* NCSelectCommandViewSelect.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EDE508262DA9D600414FE6 /* NCSelectCommandViewSelect.xib */; };
  621. F7EDE514262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EDE513262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib */; };
  622. F7EDE51B262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EDE51A262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib */; };
  623. F7EE66AD2A20B226009AE765 /* UILabel+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EE66AC2A20B226009AE765 /* UILabel+Extension.swift */; };
  624. F7EFA47825ADBA500083159A /* NCViewerProviderContextMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EFA47725ADBA500083159A /* NCViewerProviderContextMenu.swift */; };
  625. F7EFC0CD256BF8DD00461AAD /* NCUserStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EFC0CC256BF8DD00461AAD /* NCUserStatus.swift */; };
  626. F7F1E54C2492369A00E42386 /* NCMediaCommandView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7F1E54B2492369A00E42386 /* NCMediaCommandView.xib */; };
  627. F7F4F10527ECDBDB008676F9 /* Inconsolata-SemiBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F0FD27ECDBDB008676F9 /* Inconsolata-SemiBold.ttf */; };
  628. F7F4F10627ECDBDB008676F9 /* Inconsolata-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F0FE27ECDBDB008676F9 /* Inconsolata-Medium.ttf */; };
  629. F7F4F10727ECDBDB008676F9 /* Inconsolata-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F0FF27ECDBDB008676F9 /* Inconsolata-Black.ttf */; };
  630. F7F4F10827ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10027ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf */; };
  631. F7F4F10927ECDBDB008676F9 /* Inconsolata-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10127ECDBDB008676F9 /* Inconsolata-Bold.ttf */; };
  632. F7F4F10A27ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10227ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf */; };
  633. F7F4F10B27ECDBDB008676F9 /* Inconsolata-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10327ECDBDB008676F9 /* Inconsolata-Light.ttf */; };
  634. F7F4F10C27ECDBDB008676F9 /* Inconsolata-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10427ECDBDB008676F9 /* Inconsolata-Regular.ttf */; };
  635. F7F4F11027ECDC4A008676F9 /* UIDevice+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F4F10F27ECDC4A008676F9 /* UIDevice+Extension.swift */; };
  636. F7F4F11227ECDC52008676F9 /* UIFont+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F4F11127ECDC52008676F9 /* UIFont+Extension.swift */; };
  637. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  638. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  639. F7F9D1BB25397CE000D9BFF5 /* NCViewer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F9D1BA25397CE000D9BFF5 /* NCViewer.swift */; };
  640. F7FAFD3A28BFA948000777FE /* NCNotification+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7FAFD3928BFA947000777FE /* NCNotification+Menu.swift */; };
  641. F7FC5EE12A1768D700D921F5 /* NCCapabilitiesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7FC5EE02A1768D700D921F5 /* NCCapabilitiesView.swift */; };
  642. F7FF2CB12842159500EBB7A1 /* NCSectionHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7FF2CB02842159500EBB7A1 /* NCSectionHeader.xib */; };
  643. /* End PBXBuildFile section */
  644. /* Begin PBXContainerItemProxy section */
  645. 2C33C48423E2C475005F963B /* PBXContainerItemProxy */ = {
  646. isa = PBXContainerItemProxy;
  647. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  648. proxyType = 1;
  649. remoteGlobalIDString = 2C33C47E23E2C475005F963B;
  650. remoteInfo = "Notification Service Extension";
  651. };
  652. AF8ED1FD2757821000B8DBC4 /* PBXContainerItemProxy */ = {
  653. isa = PBXContainerItemProxy;
  654. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  655. proxyType = 1;
  656. remoteGlobalIDString = F77B0DEB1D118A16002130FE;
  657. remoteInfo = Nextcloud;
  658. };
  659. C0046CE02A17B98400D87C9D /* PBXContainerItemProxy */ = {
  660. isa = PBXContainerItemProxy;
  661. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  662. proxyType = 1;
  663. remoteGlobalIDString = F77B0DEB1D118A16002130FE;
  664. remoteInfo = Nextcloud;
  665. };
  666. C04E2F242A17BB4D001BAD85 /* PBXContainerItemProxy */ = {
  667. isa = PBXContainerItemProxy;
  668. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  669. proxyType = 1;
  670. remoteGlobalIDString = F77B0DEB1D118A16002130FE;
  671. remoteInfo = Nextcloud;
  672. };
  673. F31F69462A2F6D4600162F76 /* PBXContainerItemProxy */ = {
  674. isa = PBXContainerItemProxy;
  675. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  676. proxyType = 1;
  677. remoteGlobalIDString = F77B0DEB1D118A16002130FE;
  678. remoteInfo = Nextcloud;
  679. };
  680. F70716EB2987F81500E72C1D /* PBXContainerItemProxy */ = {
  681. isa = PBXContainerItemProxy;
  682. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  683. proxyType = 1;
  684. remoteGlobalIDString = F70716E22987F81400E72C1D;
  685. remoteInfo = "File Provider Extension UI";
  686. };
  687. F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */ = {
  688. isa = PBXContainerItemProxy;
  689. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  690. proxyType = 1;
  691. remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
  692. remoteInfo = "Share Ext Nextcloud";
  693. };
  694. F7346E1A28B0EF5E006CE2D2 /* PBXContainerItemProxy */ = {
  695. isa = PBXContainerItemProxy;
  696. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  697. proxyType = 1;
  698. remoteGlobalIDString = F7346E0F28B0EF5B006CE2D2;
  699. remoteInfo = DashboardWidgetExtension;
  700. };
  701. F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */ = {
  702. isa = PBXContainerItemProxy;
  703. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  704. proxyType = 1;
  705. remoteGlobalIDString = F771E3CF20E2392D00AFB62D;
  706. remoteInfo = "File Provider Extension";
  707. };
  708. F7C9739728F17131002C43E2 /* PBXContainerItemProxy */ = {
  709. isa = PBXContainerItemProxy;
  710. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  711. proxyType = 1;
  712. remoteGlobalIDString = F7C9738F28F17131002C43E2;
  713. remoteInfo = WidgetDashboardIntentHandler;
  714. };
  715. /* End PBXContainerItemProxy section */
  716. /* Begin PBXCopyFilesBuildPhase section */
  717. F76DA934277B75710082465B /* Embed Frameworks */ = {
  718. isa = PBXCopyFilesBuildPhase;
  719. buildActionMask = 2147483647;
  720. dstPath = "";
  721. dstSubfolderSpec = 10;
  722. files = (
  723. F7792DE629EEE02D005930CE /* MobileVLCKit.xcframework in Embed Frameworks */,
  724. F76DA95C277B75A90082465B /* TOPasscodeViewController.xcframework in Embed Frameworks */,
  725. );
  726. name = "Embed Frameworks";
  727. runOnlyForDeploymentPostprocessing = 0;
  728. };
  729. F77B0F981D118A16002130FE /* Embed Foundation Extensions */ = {
  730. isa = PBXCopyFilesBuildPhase;
  731. buildActionMask = 2147483647;
  732. dstPath = "";
  733. dstSubfolderSpec = 13;
  734. files = (
  735. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed Foundation Extensions */,
  736. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed Foundation Extensions */,
  737. F70716ED2987F81500E72C1D /* File Provider Extension UI.appex in Embed Foundation Extensions */,
  738. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed Foundation Extensions */,
  739. F7C9739928F17131002C43E2 /* WidgetDashboardIntentHandler.appex in Embed Foundation Extensions */,
  740. F7346E1C28B0EF5E006CE2D2 /* Widget.appex in Embed Foundation Extensions */,
  741. );
  742. name = "Embed Foundation Extensions";
  743. runOnlyForDeploymentPostprocessing = 0;
  744. };
  745. /* End PBXCopyFilesBuildPhase section */
  746. /* Begin PBXFileReference section */
  747. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  748. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  749. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  750. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  751. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  752. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Notification Service Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  753. 2C33C48123E2C475005F963B /* NotificationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = "<group>"; };
  754. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Notification_Service_Extension-Bridging-Header.h"; sourceTree = "<group>"; };
  755. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCMenu.storyboard; sourceTree = "<group>"; };
  756. 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCellProtocol.swift; sourceTree = "<group>"; };
  757. 371B5A2D23D0B04500FAFAE9 /* NCMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenu.swift; sourceTree = "<group>"; };
  758. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FloatingPanel.framework; path = Carthage/Build/iOS/FloatingPanel.framework; sourceTree = "<group>"; };
  759. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Menu.swift"; sourceTree = "<group>"; };
  760. 8491B1CC273BBA82001C8C5B /* UIViewController+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIViewController+Menu.swift"; sourceTree = "<group>"; };
  761. AF1A9B6327D0CA1E00F17A9E /* UIAlertController+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIAlertController+Extension.swift"; sourceTree = "<group>"; };
  762. AF22B20B277C6F4D00DAB0CC /* NCShareCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCell.swift; sourceTree = "<group>"; };
  763. AF22B215277D196700DAB0CC /* NCShareExtension+DataSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCShareExtension+DataSource.swift"; sourceTree = "<group>"; };
  764. AF22B216277D196700DAB0CC /* NCShareExtension+Files.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCShareExtension+Files.swift"; sourceTree = "<group>"; };
  765. AF2D7C7B2742556F00ADF566 /* NCShareLinkCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareLinkCell.swift; sourceTree = "<group>"; };
  766. AF2D7C7D2742559100ADF566 /* NCShareUserCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareUserCell.swift; sourceTree = "<group>"; };
  767. AF36077027BFA4E8001A243D /* ParallelWorker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParallelWorker.swift; sourceTree = "<group>"; };
  768. AF3FDCC12796ECC300710F60 /* NCTrash+CollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCTrash+CollectionView.swift"; sourceTree = "<group>"; };
  769. AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Account.swift"; sourceTree = "<group>"; };
  770. AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Metadata.swift"; sourceTree = "<group>"; };
  771. AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Activity.swift"; sourceTree = "<group>"; };
  772. AF56C1DB2784856200D8BAE2 /* NCActivityCommentView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCActivityCommentView.xib; sourceTree = "<group>"; };
  773. AF68326927BE65A90010BF0B /* NCMenuAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenuAction.swift; sourceTree = "<group>"; };
  774. AF730AF727834B1400B7520E /* NCShare+NCCellDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShare+NCCellDelegate.swift"; sourceTree = "<group>"; };
  775. AF730AF927843E4C00B7520E /* NCShareExtension+NCDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShareExtension+NCDelegate.swift"; sourceTree = "<group>"; };
  776. AF7E504D27A2D8FF00B5E4AF /* UIBarButton+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIBarButton+Extension.swift"; sourceTree = "<group>"; };
  777. AF7E504F27A2D92300B5E4AF /* NCSelectableNavigationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSelectableNavigationView.swift; sourceTree = "<group>"; };
  778. AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUserBaseUrl.swift; sourceTree = "<group>"; };
  779. AF8ED1F92757821000B8DBC4 /* NextcloudUnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NextcloudUnitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  780. AF8ED1FB2757821000B8DBC4 /* NextcloudUnitTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NextcloudUnitTests.swift; sourceTree = "<group>"; };
  781. AF93471127E2341B002537EE /* NCShare+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShare+Menu.swift"; sourceTree = "<group>"; };
  782. AF93471427E2361E002537EE /* NCShareAdvancePermissionFooter.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareAdvancePermissionFooter.xib; sourceTree = "<group>"; };
  783. AF93471527E2361E002537EE /* NCShareAdvancePermissionHeader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareAdvancePermissionHeader.swift; sourceTree = "<group>"; };
  784. AF93471627E2361E002537EE /* NCShareAdvancePermission.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareAdvancePermission.swift; sourceTree = "<group>"; };
  785. AF93471727E2361E002537EE /* NCShareAdvancePermissionHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareAdvancePermissionHeader.xib; sourceTree = "<group>"; };
  786. AF93471827E2361E002537EE /* NCShareAdvancePermissionFooter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareAdvancePermissionFooter.swift; sourceTree = "<group>"; };
  787. AF93474B27E34120002537EE /* NCUtility+Image.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCUtility+Image.swift"; sourceTree = "<group>"; };
  788. AF93474D27E3F211002537EE /* NCShareNewUserAddComment.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareNewUserAddComment.swift; sourceTree = "<group>"; };
  789. AF935066276B84E700BD078F /* NCMenu+FloatingPanel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCMenu+FloatingPanel.swift"; sourceTree = "<group>"; };
  790. AFA2AC8427849604008E1EA7 /* NCActivityCommentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivityCommentView.swift; sourceTree = "<group>"; };
  791. AFCE353227E4ED1900FEA6C2 /* UIToolbar+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIToolbar+Extension.swift"; sourceTree = "<group>"; };
  792. AFCE353427E4ED5900FEA6C2 /* DateFormatter+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "DateFormatter+Extension.swift"; sourceTree = "<group>"; };
  793. AFCE353627E4ED7B00FEA6C2 /* NCShareCells.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCells.swift; sourceTree = "<group>"; };
  794. AFCE353827E5DE0400FEA6C2 /* NCShare+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShare+Helper.swift"; sourceTree = "<group>"; };
  795. AFD3323F276A02C000F5AE02 /* UIApplication+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIApplication+Extension.swift"; sourceTree = "<group>"; };
  796. C0046CDA2A17B98400D87C9D /* NextcloudUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NextcloudUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  797. C0046CDC2A17B98400D87C9D /* LoginUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoginUITests.swift; sourceTree = "<group>"; };
  798. C04E2F202A17BB4D001BAD85 /* NextcloudIntegrationTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NextcloudIntegrationTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  799. C04E2F222A17BB4D001BAD85 /* FilesIntegrationTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilesIntegrationTests.swift; sourceTree = "<group>"; };
  800. D5B6AA7727200C7200D49C24 /* NCActivityTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivityTableViewCell.swift; sourceTree = "<group>"; };
  801. F30A96042A27299D00D7BCFE /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
  802. F30A962E2A27ADF900D7BCFE /* EnvVars.stencil */ = {isa = PBXFileReference; lastKnownFileType = text; path = EnvVars.stencil; sourceTree = "<group>"; };
  803. F30A96302A27AEBF00D7BCFE /* EnvVars.generated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = EnvVars.generated.swift; path = Sourcery/EnvVars.generated.swift; sourceTree = "<group>"; };
  804. F31F69422A2F6D4500162F76 /* NextcloudSnapshotTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NextcloudSnapshotTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  805. F31F69442A2F6D4600162F76 /* NextcloudSnapshotTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NextcloudSnapshotTests.swift; sourceTree = "<group>"; };
  806. F31F694F2A2F707E00162F76 /* SwiftUIView+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "SwiftUIView+Extensions.swift"; sourceTree = "<group>"; };
  807. F31F69602A2F907800162F76 /* __Snapshots__ */ = {isa = PBXFileReference; lastKnownFileType = folder; path = __Snapshots__; sourceTree = "<group>"; };
  808. F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PHAsset+Extension.swift"; sourceTree = "<group>"; };
  809. F343A4BA2A1E734600DDA874 /* Optional+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Optional+Extension.swift"; sourceTree = "<group>"; };
  810. F3A7AFC52A41AA82001FC89C /* BaseUIXCTestCase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseUIXCTestCase.swift; sourceTree = "<group>"; };
  811. F700222B1EC479840080073F /* Custom.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Custom.xcassets; sourceTree = "<group>"; };
  812. F700510022DF63AC003A3356 /* NCShare.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCShare.storyboard; sourceTree = "<group>"; };
  813. F700510222DF6897003A3356 /* Parchment.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Parchment.framework; path = Carthage/Build/iOS/Parchment.framework; sourceTree = "<group>"; };
  814. F700510422DF6A89003A3356 /* NCShare.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShare.swift; sourceTree = "<group>"; };
  815. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadVoiceNote.swift; sourceTree = "<group>"; };
  816. F702864D27735D1400ADA8BE /* libavdevice.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavdevice.xcframework; path = ffmpeg/libavdevice.xcframework; sourceTree = "<group>"; };
  817. F702864E27735D1400ADA8BE /* ffmpegkit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = ffmpegkit.xcframework; path = ffmpeg/ffmpegkit.xcframework; sourceTree = "<group>"; };
  818. F702864F27735D1500ADA8BE /* libnettle.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libnettle.xcframework; path = ffmpeg/libnettle.xcframework; sourceTree = "<group>"; };
  819. F702865027735D1500ADA8BE /* libswscale.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libswscale.xcframework; path = ffmpeg/libswscale.xcframework; sourceTree = "<group>"; };
  820. F702865127735D1500ADA8BE /* gmp.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = gmp.xcframework; path = ffmpeg/gmp.xcframework; sourceTree = "<group>"; };
  821. F702865227735D1500ADA8BE /* libavcodec.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavcodec.xcframework; path = ffmpeg/libavcodec.xcframework; sourceTree = "<group>"; };
  822. F702865327735D1500ADA8BE /* libavutil.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavutil.xcframework; path = ffmpeg/libavutil.xcframework; sourceTree = "<group>"; };
  823. F702865427735D1500ADA8BE /* openh264.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = openh264.xcframework; path = ffmpeg/openh264.xcframework; sourceTree = "<group>"; };
  824. F702865527735D1600ADA8BE /* libavfilter.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavfilter.xcframework; path = ffmpeg/libavfilter.xcframework; sourceTree = "<group>"; };
  825. F702865627735D1600ADA8BE /* libhogweed.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libhogweed.xcframework; path = ffmpeg/libhogweed.xcframework; sourceTree = "<group>"; };
  826. F702865727735D1600ADA8BE /* x264.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = x264.xcframework; path = ffmpeg/x264.xcframework; sourceTree = "<group>"; };
  827. F702865827735D1600ADA8BE /* libavformat.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavformat.xcframework; path = ffmpeg/libavformat.xcframework; sourceTree = "<group>"; };
  828. F702865927735D1600ADA8BE /* libswresample.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libswresample.xcframework; path = ffmpeg/libswresample.xcframework; sourceTree = "<group>"; };
  829. F702865A27735D1700ADA8BE /* gnutls.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = gnutls.xcframework; path = ffmpeg/gnutls.xcframework; sourceTree = "<group>"; };
  830. F702867E2773609C00ADA8BE /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
  831. F702F2CC25EE5B4F008F8E80 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  832. F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGlobal.swift; sourceTree = "<group>"; };
  833. F702F2E425EE5C82008F8E80 /* NCAudioRecorderViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAudioRecorderViewController.swift; sourceTree = "<group>"; };
  834. F702F2E525EE5C82008F8E80 /* NCAudioRecorderViewController.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCAudioRecorderViewController.storyboard; sourceTree = "<group>"; };
  835. F702F2F025EE5CDA008F8E80 /* NCLogin.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCLogin.storyboard; sourceTree = "<group>"; };
  836. F702F2F625EE5CEC008F8E80 /* NCLogin.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCLogin.swift; sourceTree = "<group>"; };
  837. F702F2FD25EE5D2C008F8E80 /* NYMnemonic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NYMnemonic.m; sourceTree = "<group>"; };
  838. F702F2FF25EE5D2C008F8E80 /* english.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = english.txt; sourceTree = "<group>"; };
  839. F702F30025EE5D2C008F8E80 /* NYMnemonic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NYMnemonic.h; sourceTree = "<group>"; };
  840. F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPopupViewController.swift; sourceTree = "<group>"; };
  841. F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NotificationCenter+MainThread.swift"; sourceTree = "<group>"; };
  842. F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCCreateFormUploadConflict.storyboard; sourceTree = "<group>"; };
  843. F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadConflict.swift; sourceTree = "<group>"; };
  844. F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCCreateFormUploadConflictCell.xib; sourceTree = "<group>"; };
  845. F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadConflictCell.swift; sourceTree = "<group>"; };
  846. F7053E3C1C639DF500741EA5 /* CCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
  847. F7053E3D1C639DF500741EA5 /* CCUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
  848. F7063DEC2199E55F003F38DA /* SVGKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SVGKit.framework; path = Carthage/Build/iOS/SVGKit.framework; sourceTree = "<group>"; };
  849. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjack.framework; path = Carthage/Build/iOS/CocoaLumberjack.framework; sourceTree = "<group>"; };
  850. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjackSwift.framework; path = Carthage/Build/iOS/CocoaLumberjackSwift.framework; sourceTree = "<group>"; };
  851. F70716E32987F81500E72C1D /* File Provider Extension UI.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension UI.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  852. F70716E52987F81500E72C1D /* DocumentActionViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DocumentActionViewController.swift; sourceTree = "<group>"; };
  853. F70716E82987F81500E72C1D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/MainInterface.storyboard; sourceTree = "<group>"; };
  854. F70716F52987FA2F00E72C1D /* FileProviderExtensionUI-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtensionUI-Bridging-Header.h"; sourceTree = "<group>"; };
  855. F70753EA2542A99800972D44 /* NCViewerMediaPage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerMediaPage.swift; sourceTree = "<group>"; };
  856. F70753F02542A9A200972D44 /* NCViewerMedia.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerMedia.swift; sourceTree = "<group>"; };
  857. F70753F62542A9C000972D44 /* NCViewerMediaPage.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerMediaPage.storyboard; sourceTree = "<group>"; };
  858. F707C26421A2DC5200F6181E /* NCStoreReview.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCStoreReview.swift; sourceTree = "<group>"; };
  859. F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCLivePhoto.swift; sourceTree = "<group>"; };
  860. F70A07C8205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  861. F70B866F2642CA9500ED5349 /* ChromaColorPicker.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = ChromaColorPicker.xcframework; path = Carthage/Build/ChromaColorPicker.xcframework; sourceTree = "<group>"; };
  862. F70B86792642CF5300ED5349 /* KTVHTTPCache.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = KTVHTTPCache.xcframework; path = Carthage/Build/KTVHTTPCache.xcframework; sourceTree = "<group>"; };
  863. F70B867A2642CF5300ED5349 /* TLPhotoPicker.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = TLPhotoPicker.xcframework; path = Carthage/Build/TLPhotoPicker.xcframework; sourceTree = "<group>"; };
  864. F70B867B2642CF5300ED5349 /* XLForm.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = XLForm.xcframework; path = Carthage/Build/XLForm.xcframework; sourceTree = "<group>"; };
  865. F70B867C2642CF5300ED5349 /* Queuer.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Queuer.xcframework; path = Carthage/Build/Queuer.xcframework; sourceTree = "<group>"; };
  866. F70B867D2642CF5400ED5349 /* UICKeyChainStore.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = UICKeyChainStore.xcframework; path = Carthage/Build/UICKeyChainStore.xcframework; sourceTree = "<group>"; };
  867. F70B867E2642CF5400ED5349 /* KTVCocoaHTTPServer.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = KTVCocoaHTTPServer.xcframework; path = Carthage/Build/KTVCocoaHTTPServer.xcframework; sourceTree = "<group>"; };
  868. F70B867F2642CF5400ED5349 /* QuickLayout.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = QuickLayout.xcframework; path = Carthage/Build/QuickLayout.xcframework; sourceTree = "<group>"; };
  869. F70B86802642CF5400ED5349 /* OpenSSL.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = OpenSSL.xcframework; path = Carthage/Build/OpenSSL.xcframework; sourceTree = "<group>"; };
  870. F70B86812642CF5500ED5349 /* SwiftEntryKit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = SwiftEntryKit.xcframework; path = Carthage/Build/SwiftEntryKit.xcframework; sourceTree = "<group>"; };
  871. F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = TOPasscodeViewController.xcframework; path = Carthage/Build/TOPasscodeViewController.xcframework; sourceTree = "<group>"; };
  872. F70B86832642CF5500ED5349 /* FSCalendar.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = FSCalendar.xcframework; path = Carthage/Build/FSCalendar.xcframework; sourceTree = "<group>"; };
  873. F70B86842642CF5500ED5349 /* DropDown.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = DropDown.xcframework; path = Carthage/Build/DropDown.xcframework; sourceTree = "<group>"; };
  874. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtility.swift; sourceTree = "<group>"; };
  875. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCEndToEndEncryption.h; sourceTree = "<group>"; };
  876. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCEndToEndEncryption.m; sourceTree = "<group>"; };
  877. F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+Extension.swift"; sourceTree = "<group>"; };
  878. F70D7C3525FFBF81002B9E34 /* NCCollectionViewCommon.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCollectionViewCommon.swift; sourceTree = "<group>"; };
  879. F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCRenameFile.storyboard; sourceTree = "<group>"; };
  880. F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCRenameFile.swift; sourceTree = "<group>"; };
  881. F70D8D8024A4A9BF000A5756 /* NCNetworkingProcessUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingProcessUpload.swift; sourceTree = "<group>"; };
  882. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ZIPFoundation.framework; path = Carthage/Build/iOS/ZIPFoundation.framework; sourceTree = "<group>"; };
  883. F70F96AF2874394B006C8379 /* Nextcloud-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
  884. F710C5EF2471A6D1009AD8B7 /* Sentry.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sentry.framework; path = Carthage/Build/iOS/Sentry.framework; sourceTree = "<group>"; };
  885. F710D1F42405770F00A6033D /* NCViewerPDF.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerPDF.swift; sourceTree = "<group>"; };
  886. F710D2012405826100A6033D /* NCViewer+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCViewer+Menu.swift"; sourceTree = "<group>"; };
  887. F7134184259747BA00768D21 /* NCPushNotification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCPushNotification.h; sourceTree = "<group>"; };
  888. F7134185259747BA00768D21 /* NCPushNotification.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCPushNotification.m; sourceTree = "<group>"; };
  889. F713FEFE2472764000214AF6 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
  890. F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
  891. F714560F296433C80038D028 /* NCDocumentCamera.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCDocumentCamera.swift; sourceTree = "<group>"; };
  892. F714803A262EBE3900693E51 /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  893. F7148040262EBE4000693E51 /* NCShareExtension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareExtension.swift; sourceTree = "<group>"; };
  894. F7148046262EBE4B00693E51 /* Share-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Share-Bridging-Header.h"; sourceTree = "<group>"; };
  895. F7151A811D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  896. F7169A301EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  897. F7169A4C1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  898. F716FE7723795E5000FABE50 /* NCCommunication.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = NCCommunication.framework; path = Carthage/Build/iOS/NCCommunication.framework; sourceTree = "<group>"; };
  899. F717402B24F699A5000C87D5 /* NCFavorite.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCFavorite.storyboard; sourceTree = "<group>"; };
  900. F717402C24F699A5000C87D5 /* NCFavorite.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCFavorite.swift; sourceTree = "<group>"; };
  901. F7176DAE256672630017E83C /* FirebaseCrashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCrashlytics.framework; path = Carthage/Build/iOS/FirebaseCrashlytics.framework; sourceTree = "<group>"; };
  902. F7176DAF256672630017E83C /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCoreDiagnostics.framework; path = Carthage/Build/iOS/FirebaseCoreDiagnostics.framework; sourceTree = "<group>"; };
  903. F7176DB0256672630017E83C /* GoogleDataTransport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleDataTransport.framework; path = Carthage/Build/iOS/GoogleDataTransport.framework; sourceTree = "<group>"; };
  904. F7176DB1256672630017E83C /* FirebaseInstallations.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseInstallations.framework; path = Carthage/Build/iOS/FirebaseInstallations.framework; sourceTree = "<group>"; };
  905. F7176DB2256672630017E83C /* PromisesObjC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PromisesObjC.framework; path = Carthage/Build/iOS/PromisesObjC.framework; sourceTree = "<group>"; };
  906. F7176DB3256672630017E83C /* GoogleUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleUtilities.framework; path = Carthage/Build/iOS/GoogleUtilities.framework; sourceTree = "<group>"; };
  907. F7176DB4256672630017E83C /* nanopb.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = nanopb.framework; path = Carthage/Build/iOS/nanopb.framework; sourceTree = "<group>"; };
  908. F7176DB5256672640017E83C /* Protobuf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Protobuf.framework; path = Carthage/Build/iOS/Protobuf.framework; sourceTree = "<group>"; };
  909. F7176DB6256672640017E83C /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCore.framework; path = Carthage/Build/iOS/FirebaseCore.framework; sourceTree = "<group>"; };
  910. F7176DB7256672640017E83C /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Carthage/Build/iOS/FirebaseAnalytics.framework; sourceTree = "<group>"; };
  911. F7176DB8256672640017E83C /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Carthage/Build/iOS/GoogleAppMeasurement.framework; sourceTree = "<group>"; };
  912. F7176DB9256672640017E83C /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Carthage/Build/iOS/FIRAnalyticsConnector.framework; sourceTree = "<group>"; };
  913. F7176DDA256672D90017E83C /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
  914. F718C24D254D507B00C5C256 /* NCViewerMediaDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerMediaDetailView.swift; sourceTree = "<group>"; };
  915. F719D9DF288D37A300762E33 /* NCColorPicker.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCColorPicker.storyboard; sourceTree = "<group>"; };
  916. F719D9E1288D396100762E33 /* NCColorPicker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCColorPicker.swift; sourceTree = "<group>"; };
  917. F71CD6C92930D7B1006C95C1 /* NCApplicationHandle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCApplicationHandle.swift; sourceTree = "<group>"; };
  918. F7226EDB1EE4089300EBECB1 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  919. F723985B253C95CE00257F49 /* NCViewerRichdocument.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerRichdocument.storyboard; sourceTree = "<group>"; };
  920. F7239870253D86B600257F49 /* NCEmptyDataSet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEmptyDataSet.swift; sourceTree = "<group>"; };
  921. F7239876253D86D300257F49 /* NCEmptyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCEmptyView.xib; sourceTree = "<group>"; };
  922. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareCommentsCell.xib; sourceTree = "<group>"; };
  923. F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ThreadSafeDictionary.swift; sourceTree = "<group>"; };
  924. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AFNetworking.framework; path = Carthage/Build/iOS/AFNetworking.framework; sourceTree = "<group>"; };
  925. F72685E827C78E490019EF5E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  926. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCEndToEndInitialize.swift; sourceTree = "<group>"; };
  927. F72A17D728B221E300F3F159 /* DashboardWidgetView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DashboardWidgetView.swift; sourceTree = "<group>"; };
  928. F72A47EB2487B06B005AD489 /* NCOperationQueue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCOperationQueue.swift; sourceTree = "<group>"; };
  929. F72CD63925C19EBF00F46F9A /* NCAutoUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAutoUpload.swift; sourceTree = "<group>"; };
  930. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCPushNotificationEncryption.m; sourceTree = "<group>"; };
  931. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCPushNotificationEncryption.h; sourceTree = "<group>"; };
  932. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerNextcloudText.swift; sourceTree = "<group>"; };
  933. F72E0B9C21AD60BC00898D7B /* WeScan.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WeScan.framework; path = Carthage/Build/iOS/WeScan.framework; sourceTree = "<group>"; };
  934. F72EA95128B7BA2A00C88F0C /* DashboardWidgetProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DashboardWidgetProvider.swift; sourceTree = "<group>"; };
  935. F72EA95328B7BABA00C88F0C /* FilesWidgetProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilesWidgetProvider.swift; sourceTree = "<group>"; };
  936. F72EA95728B7BC4F00C88F0C /* FilesData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilesData.swift; sourceTree = "<group>"; };
  937. F72EA95928B7BD0D00C88F0C /* FilesWidgetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilesWidgetView.swift; sourceTree = "<group>"; };
  938. F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+E2EE.swift"; sourceTree = "<group>"; };
  939. F7320934201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  940. F732093B201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Localizable.strings"; sourceTree = "<group>"; };
  941. F732D23227CF8AED000B0F1B /* NCPlayerToolBar.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCPlayerToolBar.xib; sourceTree = "<group>"; };
  942. F733598025C1C188002ABA72 /* NCAskAuthorization.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAskAuthorization.swift; sourceTree = "<group>"; };
  943. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TLPhotoPicker.framework; path = Carthage/Build/iOS/TLPhotoPicker.framework; sourceTree = "<group>"; };
  944. F7346E1028B0EF5B006CE2D2 /* Widget.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Widget.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  945. F7346E1128B0EF5B006CE2D2 /* WidgetKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WidgetKit.framework; path = System/Library/Frameworks/WidgetKit.framework; sourceTree = SDKROOT; };
  946. F7346E1528B0EF5C006CE2D2 /* Widget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Widget.swift; sourceTree = "<group>"; };
  947. F7346E2028B0FA3A006CE2D2 /* Widget-Brinding-header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Widget-Brinding-header.h"; sourceTree = "<group>"; };
  948. F7346E2228B0FEBA006CE2D2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  949. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
  950. F736B551234DCF57008A5C9F /* Alamofire.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Alamofire.framework; path = Carthage/Build/iOS/Alamofire.framework; sourceTree = "<group>"; };
  951. F7381EDA218218C9000B1560 /* NCOffline.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCOffline.swift; sourceTree = "<group>"; };
  952. F7381EDE218218C9000B1560 /* NCOffline.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCOffline.storyboard; sourceTree = "<group>"; };
  953. F738D48F2756740100CD1D38 /* NCLoginNavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginNavigationController.swift; sourceTree = "<group>"; };
  954. F73B42292476764F00A30FD3 /* NCNotification.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = NCNotification.storyboard; path = Notification/NCNotification.storyboard; sourceTree = "<group>"; };
  955. F73B422A2476764F00A30FD3 /* NCNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = NCNotification.swift; path = Notification/NCNotification.swift; sourceTree = "<group>"; };
  956. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCShareHeaderView.xib; sourceTree = "<group>"; };
  957. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCBridgeSwift.h; sourceTree = "<group>"; };
  958. F73D11F9253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerNextcloudText.storyboard; sourceTree = "<group>"; };
  959. F73F537E1E929C8500F8678D /* NCMore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMore.swift; sourceTree = "<group>"; };
  960. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  961. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtension-Bridging-Header.h"; sourceTree = "<group>"; };
  962. F745B250222D871800346520 /* QRCodeReader.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QRCodeReader.framework; path = Carthage/Build/iOS/QRCodeReader.framework; sourceTree = "<group>"; };
  963. F745B252222D88AE00346520 /* NCLoginQRCode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginQRCode.swift; sourceTree = "<group>"; };
  964. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadVoiceNote.storyboard; sourceTree = "<group>"; };
  965. F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Share.swift"; sourceTree = "<group>"; };
  966. F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Avatar.swift"; sourceTree = "<group>"; };
  967. F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtilityFileSystem.swift; sourceTree = "<group>"; };
  968. F74AFCE822E8B024003DE61F /* FSCalendar.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FSCalendar.framework; path = Carthage/Build/iOS/FSCalendar.framework; sourceTree = "<group>"; };
  969. F74C0434253F1CDC009762AB /* NCShares.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShares.swift; sourceTree = "<group>"; };
  970. F74C0435253F1CDC009762AB /* NCShares.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCShares.storyboard; sourceTree = "<group>"; };
  971. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenSSL.framework; path = Carthage/Build/iOS/OpenSSL.framework; sourceTree = "<group>"; };
  972. F74DE14125135B6800917068 /* NCTransfers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCTransfers.swift; sourceTree = "<group>"; };
  973. F74DE14225135B6800917068 /* NCTransfers.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCTransfers.storyboard; sourceTree = "<group>"; };
  974. F7501C302212E57400FB1415 /* NCMedia.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCMedia.storyboard; sourceTree = "<group>"; };
  975. F7501C312212E57400FB1415 /* NCMedia.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMedia.swift; sourceTree = "<group>"; };
  976. F75153232226920200323DDC /* FastScroll.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FastScroll.framework; path = Carthage/Build/iOS/FastScroll.framework; sourceTree = "<group>"; };
  977. F753701822723D620041C76C /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
  978. F753701922723E0D0041C76C /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  979. F753701A22723EC80041C76C /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  980. F755BD9A20594AC7008C5FBB /* NCService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCService.swift; sourceTree = "<group>"; };
  981. F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Groupfolders.swift"; sourceTree = "<group>"; };
  982. F757CC8A29E82D0500F31428 /* NCGroupfolders.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCGroupfolders.storyboard; sourceTree = "<group>"; };
  983. F757CC8B29E82D0500F31428 /* NCGroupfolders.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGroupfolders.swift; sourceTree = "<group>"; };
  984. F7581D1925EFDA60004DC699 /* NCLoginWeb+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCLoginWeb+Menu.swift"; sourceTree = "<group>"; };
  985. F7581D2325EFDDDF004DC699 /* NCMedia+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCMedia+Menu.swift"; sourceTree = "<group>"; };
  986. F758B457212C564000515F55 /* NCScan.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCScan.storyboard; sourceTree = "<group>"; };
  987. F758B45D212C569C00515F55 /* NCScanCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCScanCell.swift; sourceTree = "<group>"; };
  988. F758B45F212C56A400515F55 /* NCScan.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCScan.swift; sourceTree = "<group>"; };
  989. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworking.swift; sourceTree = "<group>"; };
  990. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageAutoUploadFileName.swift; sourceTree = "<group>"; };
  991. F75B0ABC244C4DBB00E58DCA /* NCActionCenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActionCenter.swift; sourceTree = "<group>"; };
  992. F75B91E21ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  993. F75B91F71ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  994. F75B923D1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  995. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRichWorkspaceCommon.swift; sourceTree = "<group>"; };
  996. F75CA1462962F13700B01130 /* HUDView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HUDView.swift; sourceTree = "<group>"; };
  997. F75D19E225EFE09000D74598 /* NCTrash+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCTrash+Menu.swift"; sourceTree = "<group>"; };
  998. F75DD768290ABB25002EB562 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.intentdefinition; name = Base; path = Base.lproj/Intent.intentdefinition; sourceTree = "<group>"; };
  999. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  1000. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
  1001. F760329D252F0F8E0015A421 /* NCTransferCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = NCTransferCell.swift; path = iOSClient/Transfers/NCTransferCell.swift; sourceTree = SOURCE_ROOT; };
  1002. F760329E252F0F8E0015A421 /* NCTransferCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = NCTransferCell.xib; path = iOSClient/Transfers/NCTransferCell.xib; sourceTree = SOURCE_ROOT; };
  1003. F761856629E98543006EB3B0 /* NCIntro.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCIntro.storyboard; sourceTree = "<group>"; };
  1004. F761856729E98543006EB3B0 /* NCIntroViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroViewController.swift; sourceTree = "<group>"; };
  1005. F761856829E98543006EB3B0 /* NCIntroCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroCollectionViewCell.swift; sourceTree = "<group>"; };
  1006. F761856929E98543006EB3B0 /* NCIntroCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCIntroCollectionViewCell.xib; sourceTree = "<group>"; };
  1007. F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Capabilities.swift"; sourceTree = "<group>"; };
  1008. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadDocuments.storyboard; sourceTree = "<group>"; };
  1009. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadDocuments.swift; sourceTree = "<group>"; };
  1010. F765608623BF806C00765969 /* QuickLayout.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLayout.framework; path = Carthage/Build/iOS/QuickLayout.framework; sourceTree = "<group>"; };
  1011. F765608A23BF80A400765969 /* SwiftEntryKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftEntryKit.framework; path = Carthage/Build/iOS/SwiftEntryKit.framework; sourceTree = "<group>"; };
  1012. F765608E23BF813500765969 /* NCContentPresenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCContentPresenter.swift; sourceTree = "<group>"; };
  1013. F765E9CC295C585800A09ED8 /* NCUploadScanDocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUploadScanDocument.swift; sourceTree = "<group>"; };
  1014. F765F72F25237E3F00391DBE /* NCRecent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCRecent.swift; sourceTree = "<group>"; };
  1015. F765F73025237E3F00391DBE /* NCRecent.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCRecent.storyboard; sourceTree = "<group>"; };
  1016. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderDomain.swift; sourceTree = "<group>"; };
  1017. F76673EF22C90433007ED366 /* FileProviderUtility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderUtility.swift; sourceTree = "<group>"; };
  1018. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainTabBar.swift; sourceTree = "<group>"; };
  1019. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserCell.xib; sourceTree = "<group>"; };
  1020. F769453F22E9F077000A798A /* NCSharePaging.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSharePaging.swift; sourceTree = "<group>"; };
  1021. F769454522E9F1B0000A798A /* NCShareCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCommon.swift; sourceTree = "<group>"; };
  1022. F769454722E9F20D000A798A /* NCShareNetworking.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareNetworking.swift; sourceTree = "<group>"; };
  1023. F769CA162965AB7C00039397 /* NCUploadAssets.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCUploadAssets.swift; sourceTree = "<group>"; };
  1024. F769CA182966EA3C00039397 /* ComponentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComponentView.swift; sourceTree = "<group>"; };
  1025. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBrand.swift; sourceTree = "<group>"; };
  1026. F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivityIndicator.swift; sourceTree = "<group>"; };
  1027. F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerPDFSearch.swift; sourceTree = "<group>"; };
  1028. F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCViewerPDFSearchCell.xib; sourceTree = "<group>"; };
  1029. F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCViewerPDF.storyboard; sourceTree = "<group>"; };
  1030. F76DEE9428F808AF0041B1C9 /* LockscreenData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LockscreenData.swift; sourceTree = "<group>"; };
  1031. F76DEE9528F808AF0041B1C9 /* LockscreenWidgetProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LockscreenWidgetProvider.swift; sourceTree = "<group>"; };
  1032. F76DEE9628F808AF0041B1C9 /* LockscreenWidgetView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LockscreenWidgetView.swift; sourceTree = "<group>"; };
  1033. F76E71E42244DF6900690001 /* Zip.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Zip.framework; path = Carthage/Build/iOS/Zip.framework; sourceTree = "<group>"; };
  1034. F76FDEAA24859C3D0095B6C2 /* Queuer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Queuer.framework; path = Carthage/Build/iOS/Queuer.framework; sourceTree = "<group>"; };
  1035. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  1036. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderExtension.swift; sourceTree = "<group>"; };
  1037. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderItem.swift; sourceTree = "<group>"; };
  1038. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderEnumerator.swift; sourceTree = "<group>"; };
  1039. F771E3F220E239A600AFB62D /* FileProviderData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderData.swift; sourceTree = "<group>"; };
  1040. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Actions.swift"; sourceTree = "<group>"; };
  1041. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Thumbnail.swift"; sourceTree = "<group>"; };
  1042. F7725A5E251F33BB00D125E0 /* NCFiles.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCFiles.swift; sourceTree = "<group>"; };
  1043. F7725A5F251F33BB00D125E0 /* NCFiles.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCFiles.storyboard; sourceTree = "<group>"; };
  1044. F774264022EB3F7300B23912 /* DropDown.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropDown.framework; path = Carthage/Build/iOS/DropDown.framework; sourceTree = "<group>"; };
  1045. F774264822EB4D0000B23912 /* NCSearchUserDropDownCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSearchUserDropDownCell.xib; sourceTree = "<group>"; };
  1046. F77438EB1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1047. F77438F21FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  1048. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1049. F77439001FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
  1050. F77439071FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1051. F774390E1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1052. F77439151FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1053. F774391C1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1054. F77439231FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1055. F774392A1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1056. F77439311FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1057. F77439381FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1058. F774393F1FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1059. F77439461FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1060. F774394D1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1061. F77439541FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1062. F774395B1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1063. F77439621FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1064. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGridMediaCell.swift; sourceTree = "<group>"; };
  1065. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCGridMediaCell.xib; sourceTree = "<group>"; };
  1066. F77444F7222816D5000D5EB0 /* NCPickerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPickerViewController.swift; sourceTree = "<group>"; };
  1067. F77910A425DD517B00CEDB9E /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Settings.bundle; sourceTree = "<group>"; };
  1068. F77910AA25DD53C700CEDB9E /* NCSettingsBundleHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSettingsBundleHelper.swift; sourceTree = "<group>"; };
  1069. F7792DE429EEE02D005930CE /* MobileVLCKit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = MobileVLCKit.xcframework; path = Carthage/Build/MobileVLCKit.xcframework; sourceTree = "<group>"; };
  1070. F77A697C250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCCollectionViewCommon+Menu.swift"; sourceTree = "<group>"; };
  1071. F77BB745289984CA0090FC19 /* UIViewController+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+Extension.swift"; sourceTree = "<group>"; };
  1072. F77BB747289985270090FC19 /* UITabBarController+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UITabBarController+Extension.swift"; sourceTree = "<group>"; };
  1073. F77BB7492899857B0090FC19 /* UINavigationController+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UINavigationController+Extension.swift"; sourceTree = "<group>"; };
  1074. F77BC3EC293E528A005F2B08 /* NCConfigServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCConfigServer.swift; sourceTree = "<group>"; };
  1075. F77C97382953131000FDDD09 /* NCCameraRoll.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCameraRoll.swift; sourceTree = "<group>"; };
  1076. F77ED59028C9CE9D00E24ED0 /* ToolbarData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ToolbarData.swift; sourceTree = "<group>"; };
  1077. F77ED59228C9CEA000E24ED0 /* ToolbarWidgetProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ToolbarWidgetProvider.swift; sourceTree = "<group>"; };
  1078. F77ED59428C9CEA300E24ED0 /* ToolbarWidgetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ToolbarWidgetView.swift; sourceTree = "<group>"; };
  1079. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+MainThread.h"; sourceTree = "<group>"; };
  1080. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+MainThread.m"; sourceTree = "<group>"; };
  1081. F7817CF729801A3500FFBC65 /* Data+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Data+Extension.swift"; sourceTree = "<group>"; };
  1082. F783030E28B4C83F00B84583 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  1083. F783031028B4C86200B84583 /* libc++.1.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.1.tbd"; path = "usr/lib/libc++.1.tbd"; sourceTree = SDKROOT; };
  1084. F783031128B4C86200B84583 /* libc++abi.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++abi.tbd"; path = "usr/lib/libc++abi.tbd"; sourceTree = SDKROOT; };
  1085. F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EE.swift; sourceTree = "<group>"; };
  1086. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkCell.xib; sourceTree = "<group>"; };
  1087. F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Directory.swift"; sourceTree = "<group>"; };
  1088. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspaceWebView.swift; sourceTree = "<group>"; };
  1089. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspace.swift; sourceTree = "<group>"; };
  1090. F78AA20521F783E900D0F205 /* SwiftRichString.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftRichString.framework; path = Carthage/Build/iOS/SwiftRichString.framework; sourceTree = "<group>"; };
  1091. F78ACD3F21903CC20088454D /* NCGridCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCGridCell.swift; sourceTree = "<group>"; };
  1092. F78ACD4121903CE00088454D /* NCListCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCListCell.swift; sourceTree = "<group>"; };
  1093. F78ACD4321903CF20088454D /* NCListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCListCell.xib; sourceTree = "<group>"; };
  1094. F78ACD4521903D010088454D /* NCGridCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCGridCell.xib; sourceTree = "<group>"; };
  1095. F78ACD4821903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCTrashListCell+NCTrashCellProtocol.swift"; sourceTree = "<group>"; };
  1096. F78ACD4921903F850088454D /* NCTrashListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCTrashListCell.xib; sourceTree = "<group>"; };
  1097. F78ACD51219046DC0088454D /* NCSectionHeaderMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSectionHeaderMenu.swift; sourceTree = "<group>"; };
  1098. F78ACD53219047D40088454D /* NCSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionFooter.xib; sourceTree = "<group>"; };
  1099. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionHeaderMenu.xib; sourceTree = "<group>"; };
  1100. F78C6FDD296D677300C952C3 /* NCContextMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCContextMenu.swift; sourceTree = "<group>"; };
  1101. F78D6F461F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1102. F78D6F4D1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1103. F78D6F541F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1104. F78E2D6429AF02DB0024D4F3 /* Database.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Database.swift; sourceTree = "<group>"; };
  1105. F78F74332163757000C2ADAD /* NCTrash.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCTrash.storyboard; sourceTree = "<group>"; };
  1106. F78F74352163781100C2ADAD /* NCTrash.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrash.swift; sourceTree = "<group>"; };
  1107. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichdocument.swift; sourceTree = "<group>"; };
  1108. F79018A424092EF4007C9B6D /* ATGMediaBrowser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ATGMediaBrowser.framework; path = Carthage/Build/iOS/ATGMediaBrowser.framework; sourceTree = "<group>"; };
  1109. F79131C628AFB86E00577277 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/Localizable.strings; sourceTree = "<group>"; };
  1110. F79131C728AFB86E00577277 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1111. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UICKeyChainStore.framework; path = Carthage/Build/iOS/UICKeyChainStore.framework; sourceTree = "<group>"; };
  1112. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sheeeeeeeeet.framework; path = Carthage/Build/iOS/Sheeeeeeeeet.framework; sourceTree = "<group>"; };
  1113. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCSelect.storyboard; sourceTree = "<group>"; };
  1114. F79A65C52191D95E00FF6DCC /* NCSelect.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSelect.swift; sourceTree = "<group>"; };
  1115. F79B645F26CA661600838ACA /* UIControl+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIControl+Extension.swift"; sourceTree = "<group>"; };
  1116. F79B869A265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSMutableAttributedString+Extension.swift"; sourceTree = "<group>"; };
  1117. F79BCEEA270B49C800B5B71F /* SwiftUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftUI.framework; path = System/Library/Frameworks/SwiftUI.framework; sourceTree = SDKROOT; };
  1118. F79EDA9F26B004980007D134 /* NCPlayerToolBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPlayerToolBar.swift; sourceTree = "<group>"; };
  1119. F79EDAA126B004980007D134 /* NCPlayer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPlayer.swift; sourceTree = "<group>"; };
  1120. F7A0D1342591FBC5008F8A13 /* String+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extension.swift"; sourceTree = "<group>"; };
  1121. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAdvanced.h; sourceTree = "<group>"; };
  1122. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAdvanced.m; sourceTree = "<group>"; };
  1123. F7A48412297022E000BD1B49 /* ViewerQuickLook.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewerQuickLook.swift; sourceTree = "<group>"; };
  1124. F7A48414297028FC00BD1B49 /* Nextcloud Hub.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Nextcloud Hub.png"; sourceTree = SOURCE_ROOT; };
  1125. F7A60F84292D215000FCE1F2 /* NCShareAccounts.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareAccounts.swift; sourceTree = "<group>"; };
  1126. F7A60F85292D215000FCE1F2 /* NCShareAccounts.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCShareAccounts.storyboard; sourceTree = "<group>"; };
  1127. F7A7FA6229265CF4000603EF /* NCManageE2EE.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCManageE2EE.swift; sourceTree = "<group>"; };
  1128. F7A8D72228F176B6008BBE1C /* WidgetDashboardIntentHandler-Brinding-header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "WidgetDashboardIntentHandler-Brinding-header.h"; sourceTree = "<group>"; };
  1129. F7AA41B827C7CF4600494705 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1130. F7AA41B927C7CF4B00494705 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1131. F7AA41BA27C7CF5000494705 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1132. F7AA41BB27C7CF5100494705 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1133. F7AA41BC27C7CF5300494705 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1134. F7AA41BD27C7CF5400494705 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1135. F7AA41BE27C7CF5600494705 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1136. F7AA41BF27C7CF5700494705 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1137. F7AA41C027C7CF5800494705 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1138. F7AA41C127C7CF5900494705 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1139. F7AA41C227C7CF5A00494705 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1140. F7AA41C327C7CF5B00494705 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1141. F7AA41C427C7CF5C00494705 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1142. F7AA41C527C7CF5D00494705 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1143. F7AA41C627C7CF5E00494705 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1144. F7AA41C727C7CF6000494705 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1145. F7AA41C827C7CF6200494705 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1146. F7AA41C927C7CF6300494705 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1147. F7AA41CA27C7CF6400494705 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1148. F7AA41CB27C7CF6500494705 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1149. F7AA41CC27C7CF6600494705 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1150. F7AA41CD27C7CF6700494705 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1151. F7AA41CE27C7CF6800494705 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1152. F7AA41CF27C7CF6900494705 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1153. F7AA41D027C7CF6900494705 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1154. F7AA41D127C7CF6A00494705 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1155. F7AA41D227C7CF6C00494705 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1156. F7AA41D327C7CF6D00494705 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1157. F7AA41D427C7CF6E00494705 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1158. F7AA41D527C7CF6F00494705 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1159. F7AA41D627C7CF7100494705 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1160. F7AA41D727C7CF7200494705 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1161. F7AA41D827C7CF7300494705 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1162. F7AA41D927C7CF7500494705 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1163. F7AA41DA27C7CF7600494705 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1164. F7AA41DB27C7CF7800494705 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1165. F7AA41DC27C7CF7900494705 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1166. F7AA41DD27C7CF7B00494705 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1167. F7AA41DE27C7CF7D00494705 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1168. F7AA41DF27C7CF7E00494705 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1169. F7AA41E027C7CF8000494705 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1170. F7AA41E127C7CF8100494705 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1171. F7AC1CAF28AB94490032D99F /* Array+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Array+Extension.swift"; sourceTree = "<group>"; };
  1172. F7AC9349296193050002BC0F /* Reasons to use Nextcloud.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "Reasons to use Nextcloud.pdf"; sourceTree = SOURCE_ROOT; };
  1173. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
  1174. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
  1175. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
  1176. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
  1177. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
  1178. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAutoUpload.h; sourceTree = "<group>"; };
  1179. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAutoUpload.m; sourceTree = "<group>"; };
  1180. F7ACE4301BAC0268006C0017 /* NCSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSettings.h; sourceTree = "<group>"; };
  1181. F7ACE4311BAC0268006C0017 /* NCSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSettings.m; sourceTree = "<group>"; };
  1182. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginWeb.swift; sourceTree = "<group>"; };
  1183. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCBrowserWeb.swift; sourceTree = "<group>"; };
  1184. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCBrowserWeb.storyboard; sourceTree = "<group>"; };
  1185. F7AF7632246BEDFE00B86E3C /* TOPasscodeViewController.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TOPasscodeViewController.framework; path = Carthage/Build/iOS/TOPasscodeViewController.framework; sourceTree = "<group>"; };
  1186. F7B1076C25D3CF2800E72DE2 /* BackgroundTasks.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BackgroundTasks.framework; path = System/Library/Frameworks/BackgroundTasks.framework; sourceTree = SDKROOT; };
  1187. F7B1A7761EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  1188. F7B6B70327C4E7FA00A7F6EB /* NCScan+CollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCScan+CollectionView.swift"; sourceTree = "<group>"; };
  1189. F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+Extension.swift"; sourceTree = "<group>"; };
  1190. F7B8B82F25681C3400967775 /* GoogleService-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "GoogleService-Info.plist"; sourceTree = SOURCE_ROOT; };
  1191. F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingChunkedUpload.swift; sourceTree = "<group>"; };
  1192. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDatabase.swift; sourceTree = "<group>"; };
  1193. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageDatabase.swift; sourceTree = "<group>"; };
  1194. F7BB04851FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1195. F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewCertificateDetails.storyboard; sourceTree = "<group>"; };
  1196. F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewCertificateDetails.swift; sourceTree = "<group>"; };
  1197. F7BE7C25290AC8C9002ABB61 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Intent.strings; sourceTree = "<group>"; };
  1198. F7BE7C27290ADEFD002ABB61 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/Intent.strings; sourceTree = "<group>"; };
  1199. F7BE7C29290ADEFD002ABB61 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Intent.strings; sourceTree = "<group>"; };
  1200. F7BE7C2B290ADEFE002ABB61 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Intent.strings"; sourceTree = "<group>"; };
  1201. F7BE7C2D290ADEFF002ABB61 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Intent.strings"; sourceTree = "<group>"; };
  1202. F7BE7C2F290ADF00002ABB61 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Intent.strings"; sourceTree = "<group>"; };
  1203. F7BE7C31290ADF00002ABB61 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Intent.strings; sourceTree = "<group>"; };
  1204. F7BE7C33290ADF01002ABB61 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Intent.strings; sourceTree = "<group>"; };
  1205. F7BE7C35290ADF03002ABB61 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Intent.strings; sourceTree = "<group>"; };
  1206. F7BE7C37290ADF03002ABB61 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Intent.strings; sourceTree = "<group>"; };
  1207. F7BE7C39290ADF04002ABB61 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Intent.strings"; sourceTree = "<group>"; };
  1208. F7BE7C3B290ADF04002ABB61 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Intent.strings"; sourceTree = "<group>"; };
  1209. F7BE7C3D290ADF05002ABB61 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Intent.strings"; sourceTree = "<group>"; };
  1210. F7BE7C3F290ADF06002ABB61 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Intent.strings"; sourceTree = "<group>"; };
  1211. F7BE7C41290ADF06002ABB61 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Intent.strings"; sourceTree = "<group>"; };
  1212. F7BE7C43290ADF06002ABB61 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Intent.strings"; sourceTree = "<group>"; };
  1213. F7BE7C45290ADF07002ABB61 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Intent.strings"; sourceTree = "<group>"; };
  1214. F7BE7C47290ADF07002ABB61 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Intent.strings"; sourceTree = "<group>"; };
  1215. F7BE7C49290ADF08002ABB61 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Intent.strings"; sourceTree = "<group>"; };
  1216. F7BE7C4B290ADF09002ABB61 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Intent.strings; sourceTree = "<group>"; };
  1217. F7BE7C4D290ADF0A002ABB61 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Intent.strings; sourceTree = "<group>"; };
  1218. F7BE7C4F290ADF0A002ABB61 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Intent.strings"; sourceTree = "<group>"; };
  1219. F7BE7C51290ADF0B002ABB61 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Intent.strings; sourceTree = "<group>"; };
  1220. F7BE7C53290ADF0B002ABB61 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Intent.strings"; sourceTree = "<group>"; };
  1221. F7BE7C55290ADF0C002ABB61 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Intent.strings"; sourceTree = "<group>"; };
  1222. F7BE7C57290ADF0C002ABB61 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Intent.strings"; sourceTree = "<group>"; };
  1223. F7BE7C59290ADF0D002ABB61 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Intent.strings"; sourceTree = "<group>"; };
  1224. F7BE7C5B290ADF0D002ABB61 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Intent.strings"; sourceTree = "<group>"; };
  1225. F7BE7C5D290ADF0E002ABB61 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Intent.strings"; sourceTree = "<group>"; };
  1226. F7BE7C5F290ADF0E002ABB61 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Intent.strings"; sourceTree = "<group>"; };
  1227. F7BE7C61290ADF10002ABB61 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Intent.strings"; sourceTree = "<group>"; };
  1228. F7BE7C63290ADF10002ABB61 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Intent.strings; sourceTree = "<group>"; };
  1229. F7BE7C65290ADF10002ABB61 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Intent.strings; sourceTree = "<group>"; };
  1230. F7BE7C67290ADF11002ABB61 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Intent.strings"; sourceTree = "<group>"; };
  1231. F7BE7C69290ADF11002ABB61 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Intent.strings; sourceTree = "<group>"; };
  1232. F7BE7C6B290ADF12002ABB61 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Intent.strings; sourceTree = "<group>"; };
  1233. F7BE7C6D290ADF12002ABB61 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Intent.strings; sourceTree = "<group>"; };
  1234. F7BE7C6F290ADF13002ABB61 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Intent.strings; sourceTree = "<group>"; };
  1235. F7BE7C71290ADF13002ABB61 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/Intent.strings"; sourceTree = "<group>"; };
  1236. F7BE7C73290ADF14002ABB61 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Intent.strings; sourceTree = "<group>"; };
  1237. F7BE7C75290ADF14002ABB61 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Intent.strings"; sourceTree = "<group>"; };
  1238. F7BE7C77290ADF15002ABB61 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Intent.strings; sourceTree = "<group>"; };
  1239. F7BE7C79290ADF16002ABB61 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Intent.strings"; sourceTree = "<group>"; };
  1240. F7BE7C7B290ADF16002ABB61 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Intent.strings"; sourceTree = "<group>"; };
  1241. F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+LayoutForView.swift"; sourceTree = "<group>"; };
  1242. F7C1EEA425053A9C00866ACC /* NCDataSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCDataSource.swift; sourceTree = "<group>"; };
  1243. F7C30DF5291BC0CA0017149B /* NCNetworkingE2EEUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EEUpload.swift; sourceTree = "<group>"; };
  1244. F7C30DF9291BCF790017149B /* NCNetworkingE2EECreateFolder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EECreateFolder.swift; sourceTree = "<group>"; };
  1245. F7C30DFC291BD0B80017149B /* NCNetworkingE2EEDelete.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EEDelete.swift; sourceTree = "<group>"; };
  1246. F7C30DFF291BD2610017149B /* NCNetworkingE2EERename.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EERename.swift; sourceTree = "<group>"; };
  1247. F7C40BE221998C050004137E /* PDFGenerator.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PDFGenerator.framework; path = Carthage/Build/iOS/PDFGenerator.framework; sourceTree = "<group>"; };
  1248. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MGSwipeTableCell.framework; path = Carthage/Build/iOS/MGSwipeTableCell.framework; sourceTree = "<group>"; };
  1249. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DZNEmptyDataSet.framework; path = Carthage/Build/iOS/DZNEmptyDataSet.framework; sourceTree = "<group>"; };
  1250. F7C40BE8219991A60004137E /* EAIntroView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EAIntroView.framework; path = Carthage/Build/iOS/EAIntroView.framework; sourceTree = "<group>"; };
  1251. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EARestrictedScrollView.framework; path = Carthage/Build/iOS/EARestrictedScrollView.framework; sourceTree = "<group>"; };
  1252. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JDStatusBarNotification.framework; path = Carthage/Build/iOS/JDStatusBarNotification.framework; sourceTree = "<group>"; };
  1253. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVCocoaHTTPServer.framework; path = Carthage/Build/iOS/KTVCocoaHTTPServer.framework; sourceTree = "<group>"; };
  1254. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVHTTPCache.framework; path = Carthage/Build/iOS/KTVHTTPCache.framework; sourceTree = "<group>"; };
  1255. F7C40BF22199978B0004137E /* MBProgressHUD.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MBProgressHUD.framework; path = Carthage/Build/iOS/MBProgressHUD.framework; sourceTree = "<group>"; };
  1256. F7C40C0F2199BA5D0004137E /* Realm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Realm.framework; path = Carthage/Build/iOS/Realm.framework; sourceTree = "<group>"; };
  1257. F7C40C112199BA620004137E /* RealmSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RealmSwift.framework; path = Carthage/Build/iOS/RealmSwift.framework; sourceTree = "<group>"; };
  1258. F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerQuickLook.swift; sourceTree = "<group>"; };
  1259. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCActivity.storyboard; sourceTree = "<group>"; };
  1260. F7C9555421F0C5470024296E /* NCActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivity.swift; sourceTree = "<group>"; };
  1261. F7C9739028F17131002C43E2 /* WidgetDashboardIntentHandler.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = WidgetDashboardIntentHandler.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1262. F7C9739128F17131002C43E2 /* Intents.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Intents.framework; path = System/Library/Frameworks/Intents.framework; sourceTree = SDKROOT; };
  1263. F7C9739428F17131002C43E2 /* IntentHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntentHandler.swift; sourceTree = "<group>"; };
  1264. F7CA212B25F1333200826ABB /* NCAccountRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAccountRequest.swift; sourceTree = "<group>"; };
  1265. F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCAccountRequest.storyboard; sourceTree = "<group>"; };
  1266. F7CB68992541676B0050EC94 /* NCMore.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCMore.storyboard; sourceTree = "<group>"; };
  1267. F7CB689F254169530050EC94 /* NCSettings.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCSettings.storyboard; sourceTree = "<group>"; };
  1268. F7CBC31B24F78E79004D3812 /* NCSortMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSortMenu.swift; sourceTree = "<group>"; };
  1269. F7CC04E61F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  1270. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
  1271. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1272. F7CF16A22A4D7C7A000FF107 /* NCMoreUserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCMoreUserCell.xib; sourceTree = "<group>"; };
  1273. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerRichWorkspace.storyboard; sourceTree = "<group>"; };
  1274. F7D2C772246470CA008513AE /* XLForm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XLForm.framework; path = Carthage/Build/iOS/XLForm.framework; sourceTree = "<group>"; };
  1275. F7D532461F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Localizable.strings; sourceTree = "<group>"; };
  1276. F7D5324D1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1277. F7D532541F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1278. F7D5328F1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1279. F7D532A41F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1280. F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+DashboardWidget.swift"; sourceTree = "<group>"; };
  1281. F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworkingCheckRemoteUser.swift; sourceTree = "<group>"; };
  1282. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MarkdownKit.framework; path = Carthage/Build/iOS/MarkdownKit.framework; sourceTree = "<group>"; };
  1283. F7DE9AB01F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  1284. F7E0710028B13BB00001B882 /* DashboardData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DashboardData.swift; sourceTree = "<group>"; };
  1285. F7E0CDCE265CE8610044854E /* NCUserStatus.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCUserStatus.storyboard; sourceTree = "<group>"; };
  1286. F7E41315294A19B300839300 /* UIView+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Extension.swift"; sourceTree = "<group>"; };
  1287. F7E45E6D21E75BF200579249 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1288. F7E4D9C322ED929B003675FD /* NCShareCommentsCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCommentsCell.swift; sourceTree = "<group>"; };
  1289. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftyXMLParser.framework; path = Carthage/Build/iOS/SwiftyXMLParser.framework; sourceTree = "<group>"; };
  1290. F7E8A390295DC5E0006CB2D0 /* View+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Extension.swift"; sourceTree = "<group>"; };
  1291. F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Video.swift"; sourceTree = "<group>"; };
  1292. F7EDE508262DA9D600414FE6 /* NCSelectCommandViewSelect.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSelectCommandViewSelect.xib; sourceTree = "<group>"; };
  1293. F7EDE513262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = "NCSelectCommandViewSelect+CreateFolder.xib"; sourceTree = "<group>"; };
  1294. F7EDE51A262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSelectCommandViewCopyMove.xib; sourceTree = "<group>"; };
  1295. F7EE66AC2A20B226009AE765 /* UILabel+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UILabel+Extension.swift"; sourceTree = "<group>"; };
  1296. F7EFA47725ADBA500083159A /* NCViewerProviderContextMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerProviderContextMenu.swift; sourceTree = "<group>"; };
  1297. F7EFC0CC256BF8DD00461AAD /* NCUserStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUserStatus.swift; sourceTree = "<group>"; };
  1298. F7F1E54B2492369A00E42386 /* NCMediaCommandView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCMediaCommandView.xib; sourceTree = "<group>"; };
  1299. F7F35B592578FB63003F5589 /* CollaboraOnlineWebViewKeyboardManager.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CollaboraOnlineWebViewKeyboardManager.framework; path = Carthage/Build/iOS/CollaboraOnlineWebViewKeyboardManager.framework; sourceTree = "<group>"; };
  1300. F7F4F0FD27ECDBDB008676F9 /* Inconsolata-SemiBold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-SemiBold.ttf"; sourceTree = "<group>"; };
  1301. F7F4F0FE27ECDBDB008676F9 /* Inconsolata-Medium.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Medium.ttf"; sourceTree = "<group>"; };
  1302. F7F4F0FF27ECDBDB008676F9 /* Inconsolata-Black.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Black.ttf"; sourceTree = "<group>"; };
  1303. F7F4F10027ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-ExtraLight.ttf"; sourceTree = "<group>"; };
  1304. F7F4F10127ECDBDB008676F9 /* Inconsolata-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Bold.ttf"; sourceTree = "<group>"; };
  1305. F7F4F10227ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-ExtraBold.ttf"; sourceTree = "<group>"; };
  1306. F7F4F10327ECDBDB008676F9 /* Inconsolata-Light.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Light.ttf"; sourceTree = "<group>"; };
  1307. F7F4F10427ECDBDB008676F9 /* Inconsolata-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Regular.ttf"; sourceTree = "<group>"; };
  1308. F7F4F10F27ECDC4A008676F9 /* UIDevice+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIDevice+Extension.swift"; sourceTree = "<group>"; };
  1309. F7F4F11127ECDC52008676F9 /* UIFont+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIFont+Extension.swift"; sourceTree = "<group>"; };
  1310. F7F67BB81A24D27800EE80DA /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  1311. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEndToEndMetadata.swift; sourceTree = "<group>"; };
  1312. F7F9D1BA25397CE000D9BFF5 /* NCViewer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewer.swift; sourceTree = "<group>"; };
  1313. F7FAFD3928BFA947000777FE /* NCNotification+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCNotification+Menu.swift"; sourceTree = "<group>"; };
  1314. F7FC5EE02A1768D700D921F5 /* NCCapabilitiesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCapabilitiesView.swift; sourceTree = "<group>"; };
  1315. F7FC7D551DC1F93800BB2C6A /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  1316. F7FF2CB02842159500EBB7A1 /* NCSectionHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSectionHeader.xib; sourceTree = "<group>"; };
  1317. /* End PBXFileReference section */
  1318. /* Begin PBXFrameworksBuildPhase section */
  1319. 2C33C47C23E2C475005F963B /* Frameworks */ = {
  1320. isa = PBXFrameworksBuildPhase;
  1321. buildActionMask = 2147483647;
  1322. files = (
  1323. F72AD71128C24BBB006CB92D /* NextcloudKit in Frameworks */,
  1324. F314F1112A30C11200BC7FAB /* PreviewSnapshots in Frameworks */,
  1325. F710FC88277B7D3F00AA9FBF /* RealmSwift in Frameworks */,
  1326. F7EBCDD3277B821700A4EF67 /* UICKeyChainStore in Frameworks */,
  1327. );
  1328. runOnlyForDeploymentPostprocessing = 0;
  1329. };
  1330. AF8ED1F62757821000B8DBC4 /* Frameworks */ = {
  1331. isa = PBXFrameworksBuildPhase;
  1332. buildActionMask = 2147483647;
  1333. files = (
  1334. );
  1335. runOnlyForDeploymentPostprocessing = 0;
  1336. };
  1337. C0046CD72A17B98400D87C9D /* Frameworks */ = {
  1338. isa = PBXFrameworksBuildPhase;
  1339. buildActionMask = 2147483647;
  1340. files = (
  1341. C04E2F1B2A17BAAB001BAD85 /* UICKeyChainStore in Frameworks */,
  1342. C04E2F192A17BA78001BAD85 /* XLForm in Frameworks */,
  1343. );
  1344. runOnlyForDeploymentPostprocessing = 0;
  1345. };
  1346. C04E2F1D2A17BB4D001BAD85 /* Frameworks */ = {
  1347. isa = PBXFrameworksBuildPhase;
  1348. buildActionMask = 2147483647;
  1349. files = (
  1350. F30A96382A2DFD2900D7BCFE /* FirebaseDatabase in Frameworks */,
  1351. F30A963C2A2DFD3600D7BCFE /* SVGKit in Frameworks */,
  1352. F30A96362A2DFCD000D7BCFE /* RealmSwift in Frameworks */,
  1353. F30A96342A2DFCD000D7BCFE /* Realm in Frameworks */,
  1354. C03BA14C2A17BC60002C8BA3 /* UICKeyChainStore in Frameworks */,
  1355. F30A963A2A2DFD3100D7BCFE /* JGProgressHUD in Frameworks */,
  1356. C03BA14A2A17BC57002C8BA3 /* XLForm in Frameworks */,
  1357. );
  1358. runOnlyForDeploymentPostprocessing = 0;
  1359. };
  1360. F31F693F2A2F6D4500162F76 /* Frameworks */ = {
  1361. isa = PBXFrameworksBuildPhase;
  1362. buildActionMask = 2147483647;
  1363. files = (
  1364. F31F695C2A2F89C400162F76 /* Realm in Frameworks */,
  1365. F31F695A2A2F89C400162F76 /* UICKeyChainStore in Frameworks */,
  1366. F31F69582A2F89C400162F76 /* XLForm in Frameworks */,
  1367. F31F69542A2F89C400162F76 /* SwiftRichString in Frameworks */,
  1368. F31F69662A2F929600162F76 /* PreviewSnapshotsTesting in Frameworks */,
  1369. F31F695E2A2F89C400162F76 /* JGProgressHUD in Frameworks */,
  1370. F31F69522A2F89C400162F76 /* SVGKit in Frameworks */,
  1371. F31F69562A2F89C400162F76 /* FirebaseDatabase in Frameworks */,
  1372. F31F69692A2F92F000162F76 /* SnapshotTestingHEIC in Frameworks */,
  1373. F31F694D2A2F6EFB00162F76 /* SnapshotTesting in Frameworks */,
  1374. );
  1375. runOnlyForDeploymentPostprocessing = 0;
  1376. };
  1377. F70716E02987F81400E72C1D /* Frameworks */ = {
  1378. isa = PBXFrameworksBuildPhase;
  1379. buildActionMask = 2147483647;
  1380. files = (
  1381. F7490E8B29882CE4009DCE94 /* NextcloudKit in Frameworks */,
  1382. F7490E8929882CC8009DCE94 /* SwiftEntryKit in Frameworks */,
  1383. F7490E7229882BB4009DCE94 /* RealmSwift in Frameworks */,
  1384. F70716F929881CFA00E72C1D /* UICKeyChainStore in Frameworks */,
  1385. );
  1386. runOnlyForDeploymentPostprocessing = 0;
  1387. };
  1388. F7145A141D12E3B700CAFEEC /* Frameworks */ = {
  1389. isa = PBXFrameworksBuildPhase;
  1390. buildActionMask = 2147483647;
  1391. files = (
  1392. F710FC80277B7D2700AA9FBF /* RealmSwift in Frameworks */,
  1393. F72AD70F28C24BA1006CB92D /* NextcloudKit in Frameworks */,
  1394. F72CD01227A7E92400E59476 /* JGProgressHUD in Frameworks */,
  1395. F73ADD2126554F8E0069EA0D /* SwiftEntryKit in Frameworks */,
  1396. F7EBCDCF277B81FF00A4EF67 /* UICKeyChainStore in Frameworks */,
  1397. F70821D829E59E6D001CA2D7 /* TagListView in Frameworks */,
  1398. F72D7EB7263B1207000B3DFC /* MarkdownKit in Frameworks */,
  1399. );
  1400. runOnlyForDeploymentPostprocessing = 0;
  1401. };
  1402. F7346E0D28B0EF5B006CE2D2 /* Frameworks */ = {
  1403. isa = PBXFrameworksBuildPhase;
  1404. buildActionMask = 2147483647;
  1405. files = (
  1406. F787AC0B298BCB540001BB00 /* SVGKitSwift in Frameworks */,
  1407. F7346E2528B0FEFA006CE2D2 /* UICKeyChainStore in Frameworks */,
  1408. F783034428B5142B00B84583 /* NextcloudKit in Frameworks */,
  1409. F7346E1328B0EF5B006CE2D2 /* SwiftUI.framework in Frameworks */,
  1410. F7346E2928B0FFF2006CE2D2 /* RealmSwift in Frameworks */,
  1411. F783030D28B4C59A00B84583 /* SwiftEntryKit in Frameworks */,
  1412. F7346E1228B0EF5B006CE2D2 /* WidgetKit.framework in Frameworks */,
  1413. );
  1414. runOnlyForDeploymentPostprocessing = 0;
  1415. };
  1416. F771E3CD20E2392D00AFB62D /* Frameworks */ = {
  1417. isa = PBXFrameworksBuildPhase;
  1418. buildActionMask = 2147483647;
  1419. files = (
  1420. F7EBCDD1277B820D00A4EF67 /* UICKeyChainStore in Frameworks */,
  1421. F73ADD2426554FE20069EA0D /* SwiftEntryKit in Frameworks */,
  1422. F710FC84277B7D3500AA9FBF /* RealmSwift in Frameworks */,
  1423. F72AD71328C24BCC006CB92D /* NextcloudKit in Frameworks */,
  1424. );
  1425. runOnlyForDeploymentPostprocessing = 0;
  1426. };
  1427. F77B0EDC1D118A16002130FE /* Frameworks */ = {
  1428. isa = PBXFrameworksBuildPhase;
  1429. buildActionMask = 2147483647;
  1430. files = (
  1431. F7D56B1A2972405500FA46C4 /* Mantis in Frameworks */,
  1432. F7ED547C25EEA65400956C55 /* QRCodeReader in Frameworks */,
  1433. F788ECC7263AAAFA00ADC67F /* MarkdownKit in Frameworks */,
  1434. F77BC3EB293E5268005F2B08 /* Swifter in Frameworks */,
  1435. F7BB7E4727A18C56009B9F29 /* Parchment in Frameworks */,
  1436. F734B06628E75C0100E180D5 /* TLPhotoPicker in Frameworks */,
  1437. F787AC09298BCB4A0001BB00 /* SVGKitSwift in Frameworks */,
  1438. F770768E263A8C3400A1BA94 /* FloatingPanel in Frameworks */,
  1439. F710FC7C277B7D0000AA9FBF /* RealmSwift in Frameworks */,
  1440. F758A01227A7F03E0069468B /* JGProgressHUD in Frameworks */,
  1441. F77333882927A72100466E35 /* OpenSSL in Frameworks */,
  1442. F76DA966277B76F30082465B /* UICKeyChainStore in Frameworks */,
  1443. F7792DE529EEE02D005930CE /* MobileVLCKit.xcframework in Frameworks */,
  1444. F753BA93281FD8020015BFB6 /* EasyTipView in Frameworks */,
  1445. F76DA95B277B75A90082465B /* TOPasscodeViewController.xcframework in Frameworks */,
  1446. F76DA963277B760E0082465B /* Queuer in Frameworks */,
  1447. F72AD70D28C24B93006CB92D /* NextcloudKit in Frameworks */,
  1448. F70B86752642CE3B00ED5349 /* FirebaseCrashlytics in Frameworks */,
  1449. F7A1050E29E587AF00FFD92B /* TagListView in Frameworks */,
  1450. F76DA969277B77EA0082465B /* DropDown in Frameworks */,
  1451. F75EAED826D2552E00F4320E /* MarqueeLabel in Frameworks */,
  1452. F710FC7A277B7D0000AA9FBF /* Realm in Frameworks */,
  1453. F72DA9B425F53E4E00B87DB1 /* SwiftRichString in Frameworks */,
  1454. F74E7720277A2EF40013B958 /* XLForm in Frameworks */,
  1455. F73ADD1C265546890069EA0D /* SwiftEntryKit in Frameworks */,
  1456. F31F69642A2F929600162F76 /* PreviewSnapshots in Frameworks */,
  1457. );
  1458. runOnlyForDeploymentPostprocessing = 0;
  1459. };
  1460. F7C9738D28F17131002C43E2 /* Frameworks */ = {
  1461. isa = PBXFrameworksBuildPhase;
  1462. buildActionMask = 2147483647;
  1463. files = (
  1464. F7A8D72828F17728008BBE1C /* RealmSwift in Frameworks */,
  1465. F7A8D72E28F17764008BBE1C /* UICKeyChainStore in Frameworks */,
  1466. F7A8D72428F1771B008BBE1C /* NextcloudKit in Frameworks */,
  1467. F7C9739228F17131002C43E2 /* Intents.framework in Frameworks */,
  1468. );
  1469. runOnlyForDeploymentPostprocessing = 0;
  1470. };
  1471. /* End PBXFrameworksBuildPhase section */
  1472. /* Begin PBXGroup section */
  1473. 2C33C48023E2C475005F963B /* Notification Service Extension */ = {
  1474. isa = PBXGroup;
  1475. children = (
  1476. 2C33C48123E2C475005F963B /* NotificationService.swift */,
  1477. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */,
  1478. );
  1479. path = "Notification Service Extension";
  1480. sourceTree = "<group>";
  1481. };
  1482. 371B5A2F23D0B04B00FAFAE9 /* Menu */ = {
  1483. isa = PBXGroup;
  1484. children = (
  1485. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */,
  1486. 371B5A2D23D0B04500FAFAE9 /* NCMenu.swift */,
  1487. AF68326927BE65A90010BF0B /* NCMenuAction.swift */,
  1488. F7FAFD3928BFA947000777FE /* NCNotification+Menu.swift */,
  1489. AF935066276B84E700BD078F /* NCMenu+FloatingPanel.swift */,
  1490. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */,
  1491. 8491B1CC273BBA82001C8C5B /* UIViewController+Menu.swift */,
  1492. F77A697C250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift */,
  1493. F7581D1925EFDA60004DC699 /* NCLoginWeb+Menu.swift */,
  1494. F7581D2325EFDDDF004DC699 /* NCMedia+Menu.swift */,
  1495. F7CBC31B24F78E79004D3812 /* NCSortMenu.swift */,
  1496. F75D19E225EFE09000D74598 /* NCTrash+Menu.swift */,
  1497. AF93471127E2341B002537EE /* NCShare+Menu.swift */,
  1498. F710D2012405826100A6033D /* NCViewer+Menu.swift */,
  1499. F78C6FDD296D677300C952C3 /* NCContextMenu.swift */,
  1500. );
  1501. path = Menu;
  1502. sourceTree = "<group>";
  1503. };
  1504. AF8ED1FA2757821000B8DBC4 /* NextcloudUnitTests */ = {
  1505. isa = PBXGroup;
  1506. children = (
  1507. AF8ED1FB2757821000B8DBC4 /* NextcloudUnitTests.swift */,
  1508. );
  1509. path = NextcloudUnitTests;
  1510. sourceTree = "<group>";
  1511. };
  1512. AF93471327E235EB002537EE /* Advanced */ = {
  1513. isa = PBXGroup;
  1514. children = (
  1515. AF93471627E2361E002537EE /* NCShareAdvancePermission.swift */,
  1516. AF93471827E2361E002537EE /* NCShareAdvancePermissionFooter.swift */,
  1517. AF93471427E2361E002537EE /* NCShareAdvancePermissionFooter.xib */,
  1518. AF93471527E2361E002537EE /* NCShareAdvancePermissionHeader.swift */,
  1519. AF93471727E2361E002537EE /* NCShareAdvancePermissionHeader.xib */,
  1520. AFCE353627E4ED7B00FEA6C2 /* NCShareCells.swift */,
  1521. AF93474D27E3F211002537EE /* NCShareNewUserAddComment.swift */,
  1522. );
  1523. path = Advanced;
  1524. sourceTree = "<group>";
  1525. };
  1526. C0046CDB2A17B98400D87C9D /* NextcloudUITests */ = {
  1527. isa = PBXGroup;
  1528. children = (
  1529. C0046CDC2A17B98400D87C9D /* LoginUITests.swift */,
  1530. F3A7AFC52A41AA82001FC89C /* BaseUIXCTestCase.swift */,
  1531. );
  1532. path = NextcloudUITests;
  1533. sourceTree = "<group>";
  1534. };
  1535. C04E2F212A17BB4D001BAD85 /* NextcloudIntegrationTests */ = {
  1536. isa = PBXGroup;
  1537. children = (
  1538. C04E2F222A17BB4D001BAD85 /* FilesIntegrationTests.swift */,
  1539. );
  1540. path = NextcloudIntegrationTests;
  1541. sourceTree = "<group>";
  1542. };
  1543. F30A962A2A27A9C800D7BCFE /* Tests */ = {
  1544. isa = PBXGroup;
  1545. children = (
  1546. AF8ED1FA2757821000B8DBC4 /* NextcloudUnitTests */,
  1547. F31F69432A2F6D4600162F76 /* NextcloudSnapshotTests */,
  1548. C04E2F212A17BB4D001BAD85 /* NextcloudIntegrationTests */,
  1549. C0046CDB2A17B98400D87C9D /* NextcloudUITests */,
  1550. );
  1551. path = Tests;
  1552. sourceTree = "<group>";
  1553. };
  1554. F30A962B2A27AC4000D7BCFE /* Sourcery */ = {
  1555. isa = PBXGroup;
  1556. children = (
  1557. F30A962E2A27ADF900D7BCFE /* EnvVars.stencil */,
  1558. );
  1559. path = Sourcery;
  1560. sourceTree = "<group>";
  1561. };
  1562. F31F69432A2F6D4600162F76 /* NextcloudSnapshotTests */ = {
  1563. isa = PBXGroup;
  1564. children = (
  1565. F31F69602A2F907800162F76 /* __Snapshots__ */,
  1566. F31F694E2A2F703300162F76 /* Extensions */,
  1567. F31F69442A2F6D4600162F76 /* NextcloudSnapshotTests.swift */,
  1568. );
  1569. path = NextcloudSnapshotTests;
  1570. sourceTree = "<group>";
  1571. };
  1572. F31F694E2A2F703300162F76 /* Extensions */ = {
  1573. isa = PBXGroup;
  1574. children = (
  1575. F31F694F2A2F707E00162F76 /* SwiftUIView+Extensions.swift */,
  1576. );
  1577. path = Extensions;
  1578. sourceTree = "<group>";
  1579. };
  1580. F70211F31BAC56E9003FC03E /* Main */ = {
  1581. isa = PBXGroup;
  1582. children = (
  1583. F702F2E325EE5C82008F8E80 /* AudioRecorder */,
  1584. F7DFB7E9219C5A0500680748 /* Create cloud */,
  1585. F78ACD50219046AC0088454D /* Section Header Footer */,
  1586. F7603298252F0E550015A421 /* Collection Common */,
  1587. 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */,
  1588. F7226EDB1EE4089300EBECB1 /* Main.storyboard */,
  1589. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */,
  1590. F75B0ABC244C4DBB00E58DCA /* NCActionCenter.swift */,
  1591. F77444F7222816D5000D5EB0 /* NCPickerViewController.swift */,
  1592. );
  1593. path = Main;
  1594. sourceTree = "<group>";
  1595. };
  1596. F702F2E325EE5C82008F8E80 /* AudioRecorder */ = {
  1597. isa = PBXGroup;
  1598. children = (
  1599. F702F2E425EE5C82008F8E80 /* NCAudioRecorderViewController.swift */,
  1600. F702F2E525EE5C82008F8E80 /* NCAudioRecorderViewController.storyboard */,
  1601. );
  1602. path = AudioRecorder;
  1603. sourceTree = "<group>";
  1604. };
  1605. F702F2FC25EE5D2C008F8E80 /* NYMnemonic */ = {
  1606. isa = PBXGroup;
  1607. children = (
  1608. F702F2FD25EE5D2C008F8E80 /* NYMnemonic.m */,
  1609. F702F2FE25EE5D2C008F8E80 /* languages */,
  1610. F702F30025EE5D2C008F8E80 /* NYMnemonic.h */,
  1611. );
  1612. path = NYMnemonic;
  1613. sourceTree = "<group>";
  1614. };
  1615. F702F2FE25EE5D2C008F8E80 /* languages */ = {
  1616. isa = PBXGroup;
  1617. children = (
  1618. F702F2FF25EE5D2C008F8E80 /* english.txt */,
  1619. );
  1620. path = languages;
  1621. sourceTree = "<group>";
  1622. };
  1623. F70716E42987F81500E72C1D /* File Provider Extension UI */ = {
  1624. isa = PBXGroup;
  1625. children = (
  1626. F70716F52987FA2F00E72C1D /* FileProviderExtensionUI-Bridging-Header.h */,
  1627. F70716E52987F81500E72C1D /* DocumentActionViewController.swift */,
  1628. F70716E72987F81500E72C1D /* MainInterface.storyboard */,
  1629. );
  1630. path = "File Provider Extension UI";
  1631. sourceTree = "<group>";
  1632. };
  1633. F70B866A2642A21300ED5349 /* Color */ = {
  1634. isa = PBXGroup;
  1635. children = (
  1636. F719D9DF288D37A300762E33 /* NCColorPicker.storyboard */,
  1637. F719D9E1288D396100762E33 /* NCColorPicker.swift */,
  1638. );
  1639. path = Color;
  1640. sourceTree = "<group>";
  1641. };
  1642. F70D87CC25EE6E58008CBBBD /* Rename file */ = {
  1643. isa = PBXGroup;
  1644. children = (
  1645. F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */,
  1646. F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */,
  1647. );
  1648. path = "Rename file";
  1649. sourceTree = "<group>";
  1650. };
  1651. F713418B2597513800768D21 /* PushNotification */ = {
  1652. isa = PBXGroup;
  1653. children = (
  1654. F7134184259747BA00768D21 /* NCPushNotification.h */,
  1655. F7134185259747BA00768D21 /* NCPushNotification.m */,
  1656. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */,
  1657. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */,
  1658. );
  1659. path = PushNotification;
  1660. sourceTree = "<group>";
  1661. };
  1662. F7169A161EE590930086BD69 /* Shares */ = {
  1663. isa = PBXGroup;
  1664. children = (
  1665. F74C0435253F1CDC009762AB /* NCShares.storyboard */,
  1666. F74C0434253F1CDC009762AB /* NCShares.swift */,
  1667. );
  1668. path = Shares;
  1669. sourceTree = "<group>";
  1670. };
  1671. F720B5B72507B9A5008C94E5 /* Cell */ = {
  1672. isa = PBXGroup;
  1673. children = (
  1674. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */,
  1675. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */,
  1676. );
  1677. path = Cell;
  1678. sourceTree = "<group>";
  1679. };
  1680. F7239861253C95D500257F49 /* NCViewerRichdocument */ = {
  1681. isa = PBXGroup;
  1682. children = (
  1683. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */,
  1684. F723985B253C95CE00257F49 /* NCViewerRichdocument.storyboard */,
  1685. );
  1686. path = NCViewerRichdocument;
  1687. sourceTree = "<group>";
  1688. };
  1689. F723986A253C9C0E00257F49 /* NCViewerQuickLook */ = {
  1690. isa = PBXGroup;
  1691. children = (
  1692. F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */,
  1693. F7A48412297022E000BD1B49 /* ViewerQuickLook.swift */,
  1694. );
  1695. path = NCViewerQuickLook;
  1696. sourceTree = "<group>";
  1697. };
  1698. F723986F253D867900257F49 /* EmptyView */ = {
  1699. isa = PBXGroup;
  1700. children = (
  1701. F7239870253D86B600257F49 /* NCEmptyDataSet.swift */,
  1702. F7239876253D86D300257F49 /* NCEmptyView.xib */,
  1703. );
  1704. path = EmptyView;
  1705. sourceTree = "<group>";
  1706. };
  1707. F728CE741BF6322C00E69702 /* Share */ = {
  1708. isa = PBXGroup;
  1709. children = (
  1710. AF93471327E235EB002537EE /* Advanced */,
  1711. F700510022DF63AC003A3356 /* NCShare.storyboard */,
  1712. F700510422DF6A89003A3356 /* NCShare.swift */,
  1713. AFCE353827E5DE0400FEA6C2 /* NCShare+Helper.swift */,
  1714. AF730AF727834B1400B7520E /* NCShare+NCCellDelegate.swift */,
  1715. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */,
  1716. F7E4D9C322ED929B003675FD /* NCShareCommentsCell.swift */,
  1717. F769454522E9F1B0000A798A /* NCShareCommon.swift */,
  1718. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */,
  1719. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */,
  1720. AF2D7C7B2742556F00ADF566 /* NCShareLinkCell.swift */,
  1721. F769454722E9F20D000A798A /* NCShareNetworking.swift */,
  1722. F769453F22E9F077000A798A /* NCSharePaging.swift */,
  1723. F774264822EB4D0000B23912 /* NCSearchUserDropDownCell.xib */,
  1724. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */,
  1725. AF2D7C7D2742559100ADF566 /* NCShareUserCell.swift */,
  1726. );
  1727. path = Share;
  1728. sourceTree = "<group>";
  1729. };
  1730. F72B60941A24F04E004EF66F /* Localizations */ = {
  1731. isa = PBXGroup;
  1732. children = (
  1733. F7E70DE91A24DE4100E1B66A /* Localizable.strings */,
  1734. F72685E927C78E490019EF5E /* InfoPlist.strings */,
  1735. );
  1736. name = Localizations;
  1737. sourceTree = "<group>";
  1738. };
  1739. F72EA95528B7BAD100C88F0C /* Dashboard */ = {
  1740. isa = PBXGroup;
  1741. children = (
  1742. F7E0710028B13BB00001B882 /* DashboardData.swift */,
  1743. F72EA95128B7BA2A00C88F0C /* DashboardWidgetProvider.swift */,
  1744. F72A17D728B221E300F3F159 /* DashboardWidgetView.swift */,
  1745. );
  1746. path = Dashboard;
  1747. sourceTree = "<group>";
  1748. };
  1749. F72EA95628B7BAE700C88F0C /* Files */ = {
  1750. isa = PBXGroup;
  1751. children = (
  1752. F72EA95728B7BC4F00C88F0C /* FilesData.swift */,
  1753. F72EA95328B7BABA00C88F0C /* FilesWidgetProvider.swift */,
  1754. F72EA95928B7BD0D00C88F0C /* FilesWidgetView.swift */,
  1755. );
  1756. path = Files;
  1757. sourceTree = "<group>";
  1758. };
  1759. F7346E1428B0EF5B006CE2D2 /* Widget */ = {
  1760. isa = PBXGroup;
  1761. children = (
  1762. F7346E2228B0FEBA006CE2D2 /* Assets.xcassets */,
  1763. F72EA95528B7BAD100C88F0C /* Dashboard */,
  1764. F72EA95628B7BAE700C88F0C /* Files */,
  1765. F76DEE9A28F808BC0041B1C9 /* Lockscreen */,
  1766. F77ED59628C9CEEE00E24ED0 /* Toolbar */,
  1767. F75DD764290AB369002EB562 /* Intent */,
  1768. F7346E2028B0FA3A006CE2D2 /* Widget-Brinding-header.h */,
  1769. F7346E1528B0EF5C006CE2D2 /* Widget.swift */,
  1770. );
  1771. path = Widget;
  1772. sourceTree = "<group>";
  1773. };
  1774. F7381ED9218218A4000B1560 /* Offline */ = {
  1775. isa = PBXGroup;
  1776. children = (
  1777. F7381EDE218218C9000B1560 /* NCOffline.storyboard */,
  1778. F7381EDA218218C9000B1560 /* NCOffline.swift */,
  1779. );
  1780. path = Offline;
  1781. sourceTree = "<group>";
  1782. };
  1783. F73D11FF253C5F5400DF9BEC /* NCViewerNextcloudText */ = {
  1784. isa = PBXGroup;
  1785. children = (
  1786. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */,
  1787. F73D11F9253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard */,
  1788. );
  1789. path = NCViewerNextcloudText;
  1790. sourceTree = "<group>";
  1791. };
  1792. F73FAEE224D2CA830090692E /* Diagnostics */ = {
  1793. isa = PBXGroup;
  1794. children = (
  1795. F7FC5EE02A1768D700D921F5 /* NCCapabilitiesView.swift */,
  1796. );
  1797. path = Diagnostics;
  1798. sourceTree = "<group>";
  1799. };
  1800. F74D3DB81BAC1941000BAE4B /* Networking */ = {
  1801. isa = PBXGroup;
  1802. children = (
  1803. F7C30DF8291BCBF00017149B /* E2EE */,
  1804. F72CD63925C19EBF00F46F9A /* NCAutoUpload.swift */,
  1805. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */,
  1806. F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */,
  1807. F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */,
  1808. F70D8D8024A4A9BF000A5756 /* NCNetworkingProcessUpload.swift */,
  1809. F72A47EB2487B06B005AD489 /* NCOperationQueue.swift */,
  1810. F755BD9A20594AC7008C5FBB /* NCService.swift */,
  1811. F77BC3EC293E528A005F2B08 /* NCConfigServer.swift */,
  1812. );
  1813. path = Networking;
  1814. sourceTree = "<group>";
  1815. };
  1816. F757CC8929E82D0500F31428 /* Groupfolders */ = {
  1817. isa = PBXGroup;
  1818. children = (
  1819. F757CC8A29E82D0500F31428 /* NCGroupfolders.storyboard */,
  1820. F757CC8B29E82D0500F31428 /* NCGroupfolders.swift */,
  1821. );
  1822. path = Groupfolders;
  1823. sourceTree = "<group>";
  1824. };
  1825. F758B41E212C516300515F55 /* Scan document */ = {
  1826. isa = PBXGroup;
  1827. children = (
  1828. F758B457212C564000515F55 /* NCScan.storyboard */,
  1829. F758B45D212C569C00515F55 /* NCScanCell.swift */,
  1830. F758B45F212C56A400515F55 /* NCScan.swift */,
  1831. F7B6B70327C4E7FA00A7F6EB /* NCScan+CollectionView.swift */,
  1832. F765E9CC295C585800A09ED8 /* NCUploadScanDocument.swift */,
  1833. F714560F296433C80038D028 /* NCDocumentCamera.swift */,
  1834. );
  1835. path = "Scan document";
  1836. sourceTree = "<group>";
  1837. };
  1838. F75DD764290AB369002EB562 /* Intent */ = {
  1839. isa = PBXGroup;
  1840. children = (
  1841. F75DD769290ABB25002EB562 /* Intent.intentdefinition */,
  1842. );
  1843. path = Intent;
  1844. sourceTree = "<group>";
  1845. };
  1846. F7603298252F0E550015A421 /* Collection Common */ = {
  1847. isa = PBXGroup;
  1848. children = (
  1849. F70D7C3525FFBF81002B9E34 /* NCCollectionViewCommon.swift */,
  1850. AF7E504F27A2D92300B5E4AF /* NCSelectableNavigationView.swift */,
  1851. F78ACD3F21903CC20088454D /* NCGridCell.swift */,
  1852. F78ACD4521903D010088454D /* NCGridCell.xib */,
  1853. F78ACD4121903CE00088454D /* NCListCell.swift */,
  1854. F78ACD4321903CF20088454D /* NCListCell.xib */,
  1855. );
  1856. path = "Collection Common";
  1857. sourceTree = "<group>";
  1858. };
  1859. F761856529E98543006EB3B0 /* Intro */ = {
  1860. isa = PBXGroup;
  1861. children = (
  1862. F761856629E98543006EB3B0 /* NCIntro.storyboard */,
  1863. F761856729E98543006EB3B0 /* NCIntroViewController.swift */,
  1864. F761856829E98543006EB3B0 /* NCIntroCollectionViewCell.swift */,
  1865. F761856929E98543006EB3B0 /* NCIntroCollectionViewCell.xib */,
  1866. );
  1867. path = Intro;
  1868. sourceTree = "<group>";
  1869. };
  1870. F765F72E25237E3F00391DBE /* Recent */ = {
  1871. isa = PBXGroup;
  1872. children = (
  1873. F765F73025237E3F00391DBE /* NCRecent.storyboard */,
  1874. F765F72F25237E3F00391DBE /* NCRecent.swift */,
  1875. );
  1876. path = Recent;
  1877. sourceTree = "<group>";
  1878. };
  1879. F769CA1B2966EF4F00039397 /* GUI */ = {
  1880. isa = PBXGroup;
  1881. children = (
  1882. F769CA182966EA3C00039397 /* ComponentView.swift */,
  1883. F75CA1462962F13700B01130 /* HUDView.swift */,
  1884. );
  1885. path = GUI;
  1886. sourceTree = "<group>";
  1887. };
  1888. F76D3CEF2428B3DD005DFA87 /* NCViewerPDF */ = {
  1889. isa = PBXGroup;
  1890. children = (
  1891. F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */,
  1892. F710D1F42405770F00A6033D /* NCViewerPDF.swift */,
  1893. F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */,
  1894. F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */,
  1895. );
  1896. path = NCViewerPDF;
  1897. sourceTree = "<group>";
  1898. };
  1899. F76DEE9A28F808BC0041B1C9 /* Lockscreen */ = {
  1900. isa = PBXGroup;
  1901. children = (
  1902. F76DEE9428F808AF0041B1C9 /* LockscreenData.swift */,
  1903. F76DEE9528F808AF0041B1C9 /* LockscreenWidgetProvider.swift */,
  1904. F76DEE9628F808AF0041B1C9 /* LockscreenWidgetView.swift */,
  1905. );
  1906. path = Lockscreen;
  1907. sourceTree = "<group>";
  1908. };
  1909. F771E3D120E2392D00AFB62D /* File Provider Extension */ = {
  1910. isa = PBXGroup;
  1911. children = (
  1912. F771E3F220E239A600AFB62D /* FileProviderData.swift */,
  1913. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */,
  1914. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */,
  1915. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */,
  1916. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */,
  1917. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */,
  1918. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */,
  1919. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */,
  1920. F76673EF22C90433007ED366 /* FileProviderUtility.swift */,
  1921. );
  1922. path = "File Provider Extension";
  1923. sourceTree = "<group>";
  1924. };
  1925. F7725A5D251F33BB00D125E0 /* Files */ = {
  1926. isa = PBXGroup;
  1927. children = (
  1928. F7725A5F251F33BB00D125E0 /* NCFiles.storyboard */,
  1929. F7725A5E251F33BB00D125E0 /* NCFiles.swift */,
  1930. );
  1931. path = Files;
  1932. sourceTree = "<group>";
  1933. };
  1934. F77ED59628C9CEEE00E24ED0 /* Toolbar */ = {
  1935. isa = PBXGroup;
  1936. children = (
  1937. F77ED59028C9CE9D00E24ED0 /* ToolbarData.swift */,
  1938. F77ED59228C9CEA000E24ED0 /* ToolbarWidgetProvider.swift */,
  1939. F77ED59428C9CEA300E24ED0 /* ToolbarWidgetView.swift */,
  1940. );
  1941. path = Toolbar;
  1942. sourceTree = "<group>";
  1943. };
  1944. F78ACD4721903F850088454D /* Cell */ = {
  1945. isa = PBXGroup;
  1946. children = (
  1947. F78ACD4821903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift */,
  1948. F78ACD4921903F850088454D /* NCTrashListCell.xib */,
  1949. );
  1950. path = Cell;
  1951. sourceTree = "<group>";
  1952. };
  1953. F78ACD50219046AC0088454D /* Section Header Footer */ = {
  1954. isa = PBXGroup;
  1955. children = (
  1956. F78ACD53219047D40088454D /* NCSectionFooter.xib */,
  1957. F7FF2CB02842159500EBB7A1 /* NCSectionHeader.xib */,
  1958. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */,
  1959. F78ACD51219046DC0088454D /* NCSectionHeaderMenu.swift */,
  1960. );
  1961. path = "Section Header Footer";
  1962. sourceTree = "<group>";
  1963. };
  1964. F78F74322163753B00C2ADAD /* Trash */ = {
  1965. isa = PBXGroup;
  1966. children = (
  1967. F78ACD4721903F850088454D /* Cell */,
  1968. F78F74332163757000C2ADAD /* NCTrash.storyboard */,
  1969. F78F74352163781100C2ADAD /* NCTrash.swift */,
  1970. AF3FDCC12796ECC300710F60 /* NCTrash+CollectionView.swift */,
  1971. );
  1972. path = Trash;
  1973. sourceTree = "<group>";
  1974. };
  1975. F79018B1240962C7007C9B6D /* NCViewerMedia */ = {
  1976. isa = PBXGroup;
  1977. children = (
  1978. F718C24D254D507B00C5C256 /* NCViewerMediaDetailView.swift */,
  1979. F70753F62542A9C000972D44 /* NCViewerMediaPage.storyboard */,
  1980. F70753EA2542A99800972D44 /* NCViewerMediaPage.swift */,
  1981. F70753F02542A9A200972D44 /* NCViewerMedia.swift */,
  1982. F79EDA9E26B004980007D134 /* NCPlayer */,
  1983. );
  1984. path = NCViewerMedia;
  1985. sourceTree = "<group>";
  1986. };
  1987. F7903A4A2948CAC300203DA5 /* ExternalResources */ = {
  1988. isa = PBXGroup;
  1989. children = (
  1990. F71CD6C92930D7B1006C95C1 /* NCApplicationHandle.swift */,
  1991. );
  1992. path = ExternalResources;
  1993. sourceTree = "<group>";
  1994. };
  1995. F79630EC215526B60015EEA5 /* Viewer */ = {
  1996. isa = PBXGroup;
  1997. children = (
  1998. F7F9D1BA25397CE000D9BFF5 /* NCViewer.swift */,
  1999. F7EFA47725ADBA500083159A /* NCViewerProviderContextMenu.swift */,
  2000. F79018B1240962C7007C9B6D /* NCViewerMedia */,
  2001. F723986A253C9C0E00257F49 /* NCViewerQuickLook */,
  2002. F76D3CEF2428B3DD005DFA87 /* NCViewerPDF */,
  2003. F73D11FF253C5F5400DF9BEC /* NCViewerNextcloudText */,
  2004. F7239861253C95D500257F49 /* NCViewerRichdocument */,
  2005. );
  2006. path = Viewer;
  2007. sourceTree = "<group>";
  2008. };
  2009. F79A65C12191D8DC00FF6DCC /* Select */ = {
  2010. isa = PBXGroup;
  2011. children = (
  2012. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */,
  2013. F79A65C52191D95E00FF6DCC /* NCSelect.swift */,
  2014. F7EDE51A262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib */,
  2015. F7EDE513262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib */,
  2016. F7EDE508262DA9D600414FE6 /* NCSelectCommandViewSelect.xib */,
  2017. );
  2018. path = Select;
  2019. sourceTree = "<group>";
  2020. };
  2021. F79EDA9E26B004980007D134 /* NCPlayer */ = {
  2022. isa = PBXGroup;
  2023. children = (
  2024. F79EDAA126B004980007D134 /* NCPlayer.swift */,
  2025. F732D23227CF8AED000B0F1B /* NCPlayerToolBar.xib */,
  2026. F79EDA9F26B004980007D134 /* NCPlayerToolBar.swift */,
  2027. );
  2028. path = NCPlayer;
  2029. sourceTree = "<group>";
  2030. };
  2031. F7A0D14E259229FA008F8A13 /* Extensions */ = {
  2032. isa = PBXGroup;
  2033. children = (
  2034. F7AC1CAF28AB94490032D99F /* Array+Extension.swift */,
  2035. F7817CF729801A3500FFBC65 /* Data+Extension.swift */,
  2036. F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */,
  2037. F79B869A265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift */,
  2038. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */,
  2039. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */,
  2040. AFCE353427E4ED5900FEA6C2 /* DateFormatter+Extension.swift */,
  2041. F343A4BA2A1E734600DDA874 /* Optional+Extension.swift */,
  2042. F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */,
  2043. F7A0D1342591FBC5008F8A13 /* String+Extension.swift */,
  2044. AF1A9B6327D0CA1E00F17A9E /* UIAlertController+Extension.swift */,
  2045. AFD3323F276A02C000F5AE02 /* UIApplication+Extension.swift */,
  2046. AF7E504D27A2D8FF00B5E4AF /* UIBarButton+Extension.swift */,
  2047. F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */,
  2048. F79B645F26CA661600838ACA /* UIControl+Extension.swift */,
  2049. F7F4F10F27ECDC4A008676F9 /* UIDevice+Extension.swift */,
  2050. F7F4F11127ECDC52008676F9 /* UIFont+Extension.swift */,
  2051. F713FEFE2472764000214AF6 /* UIImage+animatedGIF.h */,
  2052. F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */,
  2053. F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */,
  2054. F77BB7492899857B0090FC19 /* UINavigationController+Extension.swift */,
  2055. F77BB747289985270090FC19 /* UITabBarController+Extension.swift */,
  2056. AFCE353227E4ED1900FEA6C2 /* UIToolbar+Extension.swift */,
  2057. F7E41315294A19B300839300 /* UIView+Extension.swift */,
  2058. F77BB745289984CA0090FC19 /* UIViewController+Extension.swift */,
  2059. F7E8A390295DC5E0006CB2D0 /* View+Extension.swift */,
  2060. F7EE66AC2A20B226009AE765 /* UILabel+Extension.swift */,
  2061. );
  2062. path = Extensions;
  2063. sourceTree = "<group>";
  2064. };
  2065. F7A3214D1E9E2A070069AD1B /* Favorites */ = {
  2066. isa = PBXGroup;
  2067. children = (
  2068. F717402B24F699A5000C87D5 /* NCFavorite.storyboard */,
  2069. F717402C24F699A5000C87D5 /* NCFavorite.swift */,
  2070. );
  2071. path = Favorites;
  2072. sourceTree = "<group>";
  2073. };
  2074. F7A321621E9E37960069AD1B /* Activity */ = {
  2075. isa = PBXGroup;
  2076. children = (
  2077. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */,
  2078. AF56C1DB2784856200D8BAE2 /* NCActivityCommentView.xib */,
  2079. F7C9555421F0C5470024296E /* NCActivity.swift */,
  2080. AFA2AC8427849604008E1EA7 /* NCActivityCommentView.swift */,
  2081. D5B6AA7727200C7200D49C24 /* NCActivityTableViewCell.swift */,
  2082. );
  2083. path = Activity;
  2084. sourceTree = "<group>";
  2085. };
  2086. F7ACE4281BAC0268006C0017 /* Settings */ = {
  2087. isa = PBXGroup;
  2088. children = (
  2089. F77910A425DD517B00CEDB9E /* Settings.bundle */,
  2090. F77910AA25DD53C700CEDB9E /* NCSettingsBundleHelper.swift */,
  2091. F7CB689F254169530050EC94 /* NCSettings.storyboard */,
  2092. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */,
  2093. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */,
  2094. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */,
  2095. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */,
  2096. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */,
  2097. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */,
  2098. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */,
  2099. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */,
  2100. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */,
  2101. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */,
  2102. F7ACE4301BAC0268006C0017 /* NCSettings.h */,
  2103. F7ACE4311BAC0268006C0017 /* NCSettings.m */,
  2104. F7A7FA6229265CF4000603EF /* NCManageE2EE.swift */,
  2105. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */,
  2106. );
  2107. path = Settings;
  2108. sourceTree = "<group>";
  2109. };
  2110. F7AE00F6230E8191007ACF8A /* BrowserWeb */ = {
  2111. isa = PBXGroup;
  2112. children = (
  2113. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */,
  2114. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */,
  2115. );
  2116. path = BrowserWeb;
  2117. sourceTree = "<group>";
  2118. };
  2119. F7BAAD951ED5A63D00B7EAD4 /* Data */ = {
  2120. isa = PBXGroup;
  2121. children = (
  2122. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */,
  2123. F7C1EEA425053A9C00866ACC /* NCDataSource.swift */,
  2124. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */,
  2125. AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */,
  2126. AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */,
  2127. F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */,
  2128. F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */,
  2129. F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */,
  2130. F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */,
  2131. F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */,
  2132. F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */,
  2133. F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */,
  2134. AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */,
  2135. F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */,
  2136. F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */,
  2137. );
  2138. path = Data;
  2139. sourceTree = "<group>";
  2140. };
  2141. F7BFFA621A24D7300044ED85 /* Login */ = {
  2142. isa = PBXGroup;
  2143. children = (
  2144. F702F2F025EE5CDA008F8E80 /* NCLogin.storyboard */,
  2145. F702F2F625EE5CEC008F8E80 /* NCLogin.swift */,
  2146. F738D48F2756740100CD1D38 /* NCLoginNavigationController.swift */,
  2147. F745B252222D88AE00346520 /* NCLoginQRCode.swift */,
  2148. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */,
  2149. F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */,
  2150. F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */,
  2151. );
  2152. path = Login;
  2153. sourceTree = "<group>";
  2154. };
  2155. F7BFFA991A24D7BB0044ED85 /* Utility */ = {
  2156. isa = PBXGroup;
  2157. children = (
  2158. F7053E3C1C639DF500741EA5 /* CCUtility.h */,
  2159. F7053E3D1C639DF500741EA5 /* CCUtility.m */,
  2160. F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */,
  2161. F733598025C1C188002ABA72 /* NCAskAuthorization.swift */,
  2162. F77C97382953131000FDDD09 /* NCCameraRoll.swift */,
  2163. F765608E23BF813500765969 /* NCContentPresenter.swift */,
  2164. F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */,
  2165. F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */,
  2166. F707C26421A2DC5200F6181E /* NCStoreReview.swift */,
  2167. AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */,
  2168. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */,
  2169. AF93474B27E34120002537EE /* NCUtility+Image.swift */,
  2170. F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */,
  2171. F702F2FC25EE5D2C008F8E80 /* NYMnemonic */,
  2172. AF36077027BFA4E8001A243D /* ParallelWorker.swift */,
  2173. F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */,
  2174. );
  2175. path = Utility;
  2176. sourceTree = "<group>";
  2177. };
  2178. F7C0F46D1C8880540059EC54 /* Share */ = {
  2179. isa = PBXGroup;
  2180. children = (
  2181. F714803A262EBE3900693E51 /* MainInterface.storyboard */,
  2182. F7148040262EBE4000693E51 /* NCShareExtension.swift */,
  2183. AF730AF927843E4C00B7520E /* NCShareExtension+NCDelegate.swift */,
  2184. AF22B215277D196700DAB0CC /* NCShareExtension+DataSource.swift */,
  2185. AF22B216277D196700DAB0CC /* NCShareExtension+Files.swift */,
  2186. AF22B20B277C6F4D00DAB0CC /* NCShareCell.swift */,
  2187. F7148046262EBE4B00693E51 /* Share-Bridging-Header.h */,
  2188. );
  2189. path = Share;
  2190. sourceTree = "<group>";
  2191. };
  2192. F7C1CDD91E6DFC6F005D92BE /* Brand */ = {
  2193. isa = PBXGroup;
  2194. children = (
  2195. F761856529E98543006EB3B0 /* Intro */,
  2196. F700222B1EC479840080073F /* Custom.xcassets */,
  2197. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */,
  2198. F78E2D6429AF02DB0024D4F3 /* Database.swift */,
  2199. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */,
  2200. );
  2201. path = Brand;
  2202. sourceTree = "<group>";
  2203. };
  2204. F7C30DF8291BCBF00017149B /* E2EE */ = {
  2205. isa = PBXGroup;
  2206. children = (
  2207. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */,
  2208. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */,
  2209. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */,
  2210. F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */,
  2211. F7C30DF9291BCF790017149B /* NCNetworkingE2EECreateFolder.swift */,
  2212. F7C30DFC291BD0B80017149B /* NCNetworkingE2EEDelete.swift */,
  2213. F7C30DFF291BD2610017149B /* NCNetworkingE2EERename.swift */,
  2214. F7C30DF5291BC0CA0017149B /* NCNetworkingE2EEUpload.swift */,
  2215. );
  2216. path = E2EE;
  2217. sourceTree = "<group>";
  2218. };
  2219. F7C5259A1E3B441D00FFE02C /* Notification */ = {
  2220. isa = PBXGroup;
  2221. children = (
  2222. F73B42292476764F00A30FD3 /* NCNotification.storyboard */,
  2223. F73B422A2476764F00A30FD3 /* NCNotification.swift */,
  2224. );
  2225. name = Notification;
  2226. sourceTree = "<group>";
  2227. };
  2228. F7C9739328F17131002C43E2 /* WidgetDashboardIntentHandler */ = {
  2229. isa = PBXGroup;
  2230. children = (
  2231. F7A8D72228F176B6008BBE1C /* WidgetDashboardIntentHandler-Brinding-header.h */,
  2232. F7C9739428F17131002C43E2 /* IntentHandler.swift */,
  2233. );
  2234. path = WidgetDashboardIntentHandler;
  2235. sourceTree = "<group>";
  2236. };
  2237. F7CA213725F1372B00826ABB /* Account Request */ = {
  2238. isa = PBXGroup;
  2239. children = (
  2240. F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */,
  2241. F7CA212B25F1333200826ABB /* NCAccountRequest.swift */,
  2242. F7A60F85292D215000FCE1F2 /* NCShareAccounts.storyboard */,
  2243. F7A60F84292D215000FCE1F2 /* NCShareAccounts.swift */,
  2244. );
  2245. path = "Account Request";
  2246. sourceTree = "<group>";
  2247. };
  2248. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */ = {
  2249. isa = PBXGroup;
  2250. children = (
  2251. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */,
  2252. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */,
  2253. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */,
  2254. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */,
  2255. );
  2256. path = RichWorkspace;
  2257. sourceTree = "<group>";
  2258. };
  2259. F7CB68942541670D0050EC94 /* More */ = {
  2260. isa = PBXGroup;
  2261. children = (
  2262. F7CF16A22A4D7C7A000FF107 /* NCMoreUserCell.xib */,
  2263. F7CB68992541676B0050EC94 /* NCMore.storyboard */,
  2264. F73F537E1E929C8500F8678D /* NCMore.swift */,
  2265. );
  2266. path = More;
  2267. sourceTree = "<group>";
  2268. };
  2269. F7DFB7E9219C5A0500680748 /* Create cloud */ = {
  2270. isa = PBXGroup;
  2271. children = (
  2272. F769CA162965AB7C00039397 /* NCUploadAssets.swift */,
  2273. F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */,
  2274. F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */,
  2275. F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */,
  2276. F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */,
  2277. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */,
  2278. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */,
  2279. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */,
  2280. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */,
  2281. );
  2282. path = "Create cloud";
  2283. sourceTree = "<group>";
  2284. };
  2285. F7E9C41320F4CA870040CF18 /* Transfers */ = {
  2286. isa = PBXGroup;
  2287. children = (
  2288. F760329D252F0F8E0015A421 /* NCTransferCell.swift */,
  2289. F760329E252F0F8E0015A421 /* NCTransferCell.xib */,
  2290. F74DE14225135B6800917068 /* NCTransfers.storyboard */,
  2291. F74DE14125135B6800917068 /* NCTransfers.swift */,
  2292. );
  2293. path = Transfers;
  2294. sourceTree = "<group>";
  2295. };
  2296. F7EC9CB921185F2000F1C5CE /* Media */ = {
  2297. isa = PBXGroup;
  2298. children = (
  2299. F720B5B72507B9A5008C94E5 /* Cell */,
  2300. F7501C302212E57400FB1415 /* NCMedia.storyboard */,
  2301. F7501C312212E57400FB1415 /* NCMedia.swift */,
  2302. F7F1E54B2492369A00E42386 /* NCMediaCommandView.xib */,
  2303. );
  2304. path = Media;
  2305. sourceTree = "<group>";
  2306. };
  2307. F7EFC0CB256BF89300461AAD /* UserStatus */ = {
  2308. isa = PBXGroup;
  2309. children = (
  2310. F7EFC0CC256BF8DD00461AAD /* NCUserStatus.swift */,
  2311. F7E0CDCE265CE8610044854E /* NCUserStatus.storyboard */,
  2312. );
  2313. path = UserStatus;
  2314. sourceTree = "<group>";
  2315. };
  2316. F7F4F0FB27ECDBDA008676F9 /* Font */ = {
  2317. isa = PBXGroup;
  2318. children = (
  2319. F7F4F0FC27ECDBDB008676F9 /* Inconsolata */,
  2320. );
  2321. path = Font;
  2322. sourceTree = "<group>";
  2323. };
  2324. F7F4F0FC27ECDBDB008676F9 /* Inconsolata */ = {
  2325. isa = PBXGroup;
  2326. children = (
  2327. F7F4F0FD27ECDBDB008676F9 /* Inconsolata-SemiBold.ttf */,
  2328. F7F4F0FE27ECDBDB008676F9 /* Inconsolata-Medium.ttf */,
  2329. F7F4F0FF27ECDBDB008676F9 /* Inconsolata-Black.ttf */,
  2330. F7F4F10027ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf */,
  2331. F7F4F10127ECDBDB008676F9 /* Inconsolata-Bold.ttf */,
  2332. F7F4F10227ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf */,
  2333. F7F4F10327ECDBDB008676F9 /* Inconsolata-Light.ttf */,
  2334. F7F4F10427ECDBDB008676F9 /* Inconsolata-Regular.ttf */,
  2335. );
  2336. path = Inconsolata;
  2337. sourceTree = "<group>";
  2338. };
  2339. F7F67B9F1A24D27800EE80DA = {
  2340. isa = PBXGroup;
  2341. children = (
  2342. F30A96302A27AEBF00D7BCFE /* EnvVars.generated.swift */,
  2343. F7B8B82F25681C3400967775 /* GoogleService-Info.plist */,
  2344. F7C1CDD91E6DFC6F005D92BE /* Brand */,
  2345. F7F67BAA1A24D27800EE80DA /* iOSClient */,
  2346. F7F67BAB1A24D27800EE80DA /* Supporting Files */,
  2347. F771E3D120E2392D00AFB62D /* File Provider Extension */,
  2348. F70716E42987F81500E72C1D /* File Provider Extension UI */,
  2349. F7C0F46D1C8880540059EC54 /* Share */,
  2350. 2C33C48023E2C475005F963B /* Notification Service Extension */,
  2351. F7346E1428B0EF5B006CE2D2 /* Widget */,
  2352. F7C9739328F17131002C43E2 /* WidgetDashboardIntentHandler */,
  2353. F7903A4A2948CAC300203DA5 /* ExternalResources */,
  2354. F7FC7D651DC1F98700BB2C6A /* Products */,
  2355. F7FC7D541DC1F93700BB2C6A /* Frameworks */,
  2356. F30A962B2A27AC4000D7BCFE /* Sourcery */,
  2357. F30A962A2A27A9C800D7BCFE /* Tests */,
  2358. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */,
  2359. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */,
  2360. AF8ED1F92757821000B8DBC4 /* NextcloudUnitTests.xctest */,
  2361. F7346E1028B0EF5B006CE2D2 /* Widget.appex */,
  2362. F7C9739028F17131002C43E2 /* WidgetDashboardIntentHandler.appex */,
  2363. F70716E32987F81500E72C1D /* File Provider Extension UI.appex */,
  2364. C0046CDA2A17B98400D87C9D /* NextcloudUITests.xctest */,
  2365. C04E2F202A17BB4D001BAD85 /* NextcloudIntegrationTests.xctest */,
  2366. F31F69422A2F6D4500162F76 /* NextcloudSnapshotTests.xctest */,
  2367. );
  2368. sourceTree = "<group>";
  2369. };
  2370. F7F67BAA1A24D27800EE80DA /* iOSClient */ = {
  2371. isa = PBXGroup;
  2372. children = (
  2373. F702F2CC25EE5B4F008F8E80 /* AppDelegate.swift */,
  2374. F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */,
  2375. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */,
  2376. F70F96AF2874394B006C8379 /* Nextcloud-Bridging-Header.h */,
  2377. F7F67BB81A24D27800EE80DA /* Images.xcassets */,
  2378. F769CA1B2966EF4F00039397 /* GUI */,
  2379. F70211F31BAC56E9003FC03E /* Main */,
  2380. F7CA213725F1372B00826ABB /* Account Request */,
  2381. F7A321621E9E37960069AD1B /* Activity */,
  2382. F7AE00F6230E8191007ACF8A /* BrowserWeb */,
  2383. F70B866A2642A21300ED5349 /* Color */,
  2384. F7BAAD951ED5A63D00B7EAD4 /* Data */,
  2385. F73FAEE224D2CA830090692E /* Diagnostics */,
  2386. F723986F253D867900257F49 /* EmptyView */,
  2387. F7A0D14E259229FA008F8A13 /* Extensions */,
  2388. F7A3214D1E9E2A070069AD1B /* Favorites */,
  2389. F7725A5D251F33BB00D125E0 /* Files */,
  2390. F757CC8929E82D0500F31428 /* Groupfolders */,
  2391. F7BFFA621A24D7300044ED85 /* Login */,
  2392. F7EC9CB921185F2000F1C5CE /* Media */,
  2393. 371B5A2F23D0B04B00FAFAE9 /* Menu */,
  2394. F7CB68942541670D0050EC94 /* More */,
  2395. F74D3DB81BAC1941000BAE4B /* Networking */,
  2396. F7C5259A1E3B441D00FFE02C /* Notification */,
  2397. F7381ED9218218A4000B1560 /* Offline */,
  2398. F713418B2597513800768D21 /* PushNotification */,
  2399. F765F72E25237E3F00391DBE /* Recent */,
  2400. F70D87CC25EE6E58008CBBBD /* Rename file */,
  2401. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */,
  2402. F758B41E212C516300515F55 /* Scan document */,
  2403. F79A65C12191D8DC00FF6DCC /* Select */,
  2404. F7ACE4281BAC0268006C0017 /* Settings */,
  2405. F728CE741BF6322C00E69702 /* Share */,
  2406. F7169A161EE590930086BD69 /* Shares */,
  2407. F7E9C41320F4CA870040CF18 /* Transfers */,
  2408. F78F74322163753B00C2ADAD /* Trash */,
  2409. F7EFC0CB256BF89300461AAD /* UserStatus */,
  2410. F7BFFA991A24D7BB0044ED85 /* Utility */,
  2411. F79630EC215526B60015EEA5 /* Viewer */,
  2412. );
  2413. path = iOSClient;
  2414. sourceTree = "<group>";
  2415. };
  2416. F7F67BAB1A24D27800EE80DA /* Supporting Files */ = {
  2417. isa = PBXGroup;
  2418. children = (
  2419. F7AC9349296193050002BC0F /* Reasons to use Nextcloud.pdf */,
  2420. F7A48414297028FC00BD1B49 /* Nextcloud Hub.png */,
  2421. F7F4F0FB27ECDBDA008676F9 /* Font */,
  2422. F72B60941A24F04E004EF66F /* Localizations */,
  2423. );
  2424. name = "Supporting Files";
  2425. path = iOSClient;
  2426. sourceTree = "<group>";
  2427. };
  2428. F7FC7D541DC1F93700BB2C6A /* Frameworks */ = {
  2429. isa = PBXGroup;
  2430. children = (
  2431. F30A96042A27299D00D7BCFE /* XCTest.framework */,
  2432. F7792DE429EEE02D005930CE /* MobileVLCKit.xcframework */,
  2433. F783031028B4C86200B84583 /* libc++.1.tbd */,
  2434. F783031128B4C86200B84583 /* libc++abi.tbd */,
  2435. F783030E28B4C83F00B84583 /* libc++.tbd */,
  2436. F702867E2773609C00ADA8BE /* libiconv.tbd */,
  2437. F702864E27735D1400ADA8BE /* ffmpegkit.xcframework */,
  2438. F702865127735D1500ADA8BE /* gmp.xcframework */,
  2439. F702865A27735D1700ADA8BE /* gnutls.xcframework */,
  2440. F702865227735D1500ADA8BE /* libavcodec.xcframework */,
  2441. F702864D27735D1400ADA8BE /* libavdevice.xcframework */,
  2442. F702865527735D1600ADA8BE /* libavfilter.xcframework */,
  2443. F702865827735D1600ADA8BE /* libavformat.xcframework */,
  2444. F702865327735D1500ADA8BE /* libavutil.xcframework */,
  2445. F702865627735D1600ADA8BE /* libhogweed.xcframework */,
  2446. F702864F27735D1500ADA8BE /* libnettle.xcframework */,
  2447. F702865927735D1600ADA8BE /* libswresample.xcframework */,
  2448. F702865027735D1500ADA8BE /* libswscale.xcframework */,
  2449. F702865427735D1500ADA8BE /* openh264.xcframework */,
  2450. F702865727735D1600ADA8BE /* x264.xcframework */,
  2451. F79BCEEA270B49C800B5B71F /* SwiftUI.framework */,
  2452. F70B86842642CF5500ED5349 /* DropDown.xcframework */,
  2453. F70B86832642CF5500ED5349 /* FSCalendar.xcframework */,
  2454. F70B867E2642CF5400ED5349 /* KTVCocoaHTTPServer.xcframework */,
  2455. F70B86792642CF5300ED5349 /* KTVHTTPCache.xcframework */,
  2456. F70B86802642CF5400ED5349 /* OpenSSL.xcframework */,
  2457. F70B867C2642CF5300ED5349 /* Queuer.xcframework */,
  2458. F70B867F2642CF5400ED5349 /* QuickLayout.xcframework */,
  2459. F70B86812642CF5500ED5349 /* SwiftEntryKit.xcframework */,
  2460. F70B867A2642CF5300ED5349 /* TLPhotoPicker.xcframework */,
  2461. F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */,
  2462. F70B867D2642CF5400ED5349 /* UICKeyChainStore.xcframework */,
  2463. F70B867B2642CF5300ED5349 /* XLForm.xcframework */,
  2464. F70B866F2642CA9500ED5349 /* ChromaColorPicker.xcframework */,
  2465. F7B1076C25D3CF2800E72DE2 /* BackgroundTasks.framework */,
  2466. F7F35B592578FB63003F5589 /* CollaboraOnlineWebViewKeyboardManager.framework */,
  2467. F7176DDA256672D90017E83C /* libsqlite3.tbd */,
  2468. F7176DB9256672640017E83C /* FIRAnalyticsConnector.framework */,
  2469. F7176DB7256672640017E83C /* FirebaseAnalytics.framework */,
  2470. F7176DB6256672640017E83C /* FirebaseCore.framework */,
  2471. F7176DAF256672630017E83C /* FirebaseCoreDiagnostics.framework */,
  2472. F7176DAE256672630017E83C /* FirebaseCrashlytics.framework */,
  2473. F7176DB1256672630017E83C /* FirebaseInstallations.framework */,
  2474. F7176DB8256672640017E83C /* GoogleAppMeasurement.framework */,
  2475. F7176DB0256672630017E83C /* GoogleDataTransport.framework */,
  2476. F7176DB3256672630017E83C /* GoogleUtilities.framework */,
  2477. F7176DB4256672630017E83C /* nanopb.framework */,
  2478. F7176DB2256672630017E83C /* PromisesObjC.framework */,
  2479. F7176DB5256672640017E83C /* Protobuf.framework */,
  2480. F76FDEAA24859C3D0095B6C2 /* Queuer.framework */,
  2481. F710C5EF2471A6D1009AD8B7 /* Sentry.framework */,
  2482. F7AF7632246BEDFE00B86E3C /* TOPasscodeViewController.framework */,
  2483. F7D2C772246470CA008513AE /* XLForm.framework */,
  2484. F79018A424092EF4007C9B6D /* ATGMediaBrowser.framework */,
  2485. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */,
  2486. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */,
  2487. F765608A23BF80A400765969 /* SwiftEntryKit.framework */,
  2488. F765608623BF806C00765969 /* QuickLayout.framework */,
  2489. F716FE7723795E5000FABE50 /* NCCommunication.framework */,
  2490. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */,
  2491. F736B551234DCF57008A5C9F /* Alamofire.framework */,
  2492. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */,
  2493. F774264022EB3F7300B23912 /* DropDown.framework */,
  2494. F74AFCE822E8B024003DE61F /* FSCalendar.framework */,
  2495. F700510222DF6897003A3356 /* Parchment.framework */,
  2496. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */,
  2497. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */,
  2498. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */,
  2499. F76E71E42244DF6900690001 /* Zip.framework */,
  2500. F745B250222D871800346520 /* QRCodeReader.framework */,
  2501. F75153232226920200323DDC /* FastScroll.framework */,
  2502. F78AA20521F783E900D0F205 /* SwiftRichString.framework */,
  2503. F72E0B9C21AD60BC00898D7B /* WeScan.framework */,
  2504. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */,
  2505. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */,
  2506. F7063DEC2199E55F003F38DA /* SVGKit.framework */,
  2507. F7C40C112199BA620004137E /* RealmSwift.framework */,
  2508. F7C40C0F2199BA5D0004137E /* Realm.framework */,
  2509. F7C40BF22199978B0004137E /* MBProgressHUD.framework */,
  2510. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */,
  2511. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */,
  2512. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */,
  2513. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */,
  2514. F7C40BE8219991A60004137E /* EAIntroView.framework */,
  2515. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */,
  2516. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */,
  2517. F7C40BE221998C050004137E /* PDFGenerator.framework */,
  2518. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */,
  2519. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */,
  2520. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */,
  2521. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */,
  2522. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */,
  2523. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */,
  2524. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */,
  2525. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */,
  2526. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */,
  2527. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */,
  2528. F7FC7D551DC1F93800BB2C6A /* libz.tbd */,
  2529. F7346E1128B0EF5B006CE2D2 /* WidgetKit.framework */,
  2530. F7C9739128F17131002C43E2 /* Intents.framework */,
  2531. );
  2532. name = Frameworks;
  2533. sourceTree = "<group>";
  2534. };
  2535. F7FC7D651DC1F98700BB2C6A /* Products */ = {
  2536. isa = PBXGroup;
  2537. children = (
  2538. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */,
  2539. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */,
  2540. );
  2541. name = Products;
  2542. sourceTree = "<group>";
  2543. };
  2544. /* End PBXGroup section */
  2545. /* Begin PBXNativeTarget section */
  2546. 2C33C47E23E2C475005F963B /* Notification Service Extension */ = {
  2547. isa = PBXNativeTarget;
  2548. buildConfigurationList = 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */;
  2549. buildPhases = (
  2550. 2C33C47B23E2C475005F963B /* Sources */,
  2551. 2C33C47C23E2C475005F963B /* Frameworks */,
  2552. 2C33C47D23E2C475005F963B /* Resources */,
  2553. );
  2554. buildRules = (
  2555. );
  2556. dependencies = (
  2557. );
  2558. name = "Notification Service Extension";
  2559. packageProductDependencies = (
  2560. F710FC87277B7D3F00AA9FBF /* RealmSwift */,
  2561. F7EBCDD2277B821700A4EF67 /* UICKeyChainStore */,
  2562. F72AD71028C24BBB006CB92D /* NextcloudKit */,
  2563. F314F1102A30C11200BC7FAB /* PreviewSnapshots */,
  2564. );
  2565. productName = "Notification Service Extension";
  2566. productReference = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */;
  2567. productType = "com.apple.product-type.app-extension";
  2568. };
  2569. AF8ED1F82757821000B8DBC4 /* NextcloudUnitTests */ = {
  2570. isa = PBXNativeTarget;
  2571. buildConfigurationList = AF8ED2012757821000B8DBC4 /* Build configuration list for PBXNativeTarget "NextcloudUnitTests" */;
  2572. buildPhases = (
  2573. AF8ED1F52757821000B8DBC4 /* Sources */,
  2574. AF8ED1F62757821000B8DBC4 /* Frameworks */,
  2575. AF8ED1F72757821000B8DBC4 /* Resources */,
  2576. );
  2577. buildRules = (
  2578. );
  2579. dependencies = (
  2580. AF8ED1FE2757821000B8DBC4 /* PBXTargetDependency */,
  2581. );
  2582. name = NextcloudUnitTests;
  2583. productName = NextcloudTests;
  2584. productReference = AF8ED1F92757821000B8DBC4 /* NextcloudUnitTests.xctest */;
  2585. productType = "com.apple.product-type.bundle.unit-test";
  2586. };
  2587. C0046CD92A17B98400D87C9D /* NextcloudUITests */ = {
  2588. isa = PBXNativeTarget;
  2589. buildConfigurationList = C0046CE42A17B98400D87C9D /* Build configuration list for PBXNativeTarget "NextcloudUITests" */;
  2590. buildPhases = (
  2591. C0046CD62A17B98400D87C9D /* Sources */,
  2592. C0046CD72A17B98400D87C9D /* Frameworks */,
  2593. C0046CD82A17B98400D87C9D /* Resources */,
  2594. );
  2595. buildRules = (
  2596. );
  2597. dependencies = (
  2598. C0046CE12A17B98400D87C9D /* PBXTargetDependency */,
  2599. );
  2600. name = NextcloudUITests;
  2601. packageProductDependencies = (
  2602. C04E2F182A17BA78001BAD85 /* XLForm */,
  2603. C04E2F1A2A17BAAB001BAD85 /* UICKeyChainStore */,
  2604. );
  2605. productName = NextcloudUITests;
  2606. productReference = C0046CDA2A17B98400D87C9D /* NextcloudUITests.xctest */;
  2607. productType = "com.apple.product-type.bundle.ui-testing";
  2608. };
  2609. C04E2F1F2A17BB4D001BAD85 /* NextcloudIntegrationTests */ = {
  2610. isa = PBXNativeTarget;
  2611. buildConfigurationList = C04E2F262A17BB4E001BAD85 /* Build configuration list for PBXNativeTarget "NextcloudIntegrationTests" */;
  2612. buildPhases = (
  2613. C04E2F1C2A17BB4D001BAD85 /* Sources */,
  2614. C04E2F1D2A17BB4D001BAD85 /* Frameworks */,
  2615. C04E2F1E2A17BB4D001BAD85 /* Resources */,
  2616. );
  2617. buildRules = (
  2618. );
  2619. dependencies = (
  2620. C04E2F252A17BB4D001BAD85 /* PBXTargetDependency */,
  2621. );
  2622. name = NextcloudIntegrationTests;
  2623. packageProductDependencies = (
  2624. C03BA1492A17BC57002C8BA3 /* XLForm */,
  2625. C03BA14B2A17BC60002C8BA3 /* UICKeyChainStore */,
  2626. F30A96332A2DFCD000D7BCFE /* Realm */,
  2627. F30A96352A2DFCD000D7BCFE /* RealmSwift */,
  2628. F30A96372A2DFD2900D7BCFE /* FirebaseDatabase */,
  2629. F30A96392A2DFD3100D7BCFE /* JGProgressHUD */,
  2630. F30A963B2A2DFD3600D7BCFE /* SVGKit */,
  2631. );
  2632. productName = NextcloudIntegrationTests;
  2633. productReference = C04E2F202A17BB4D001BAD85 /* NextcloudIntegrationTests.xctest */;
  2634. productType = "com.apple.product-type.bundle.unit-test";
  2635. };
  2636. F31F69412A2F6D4500162F76 /* NextcloudSnapshotTests */ = {
  2637. isa = PBXNativeTarget;
  2638. buildConfigurationList = F31F694A2A2F6D4600162F76 /* Build configuration list for PBXNativeTarget "NextcloudSnapshotTests" */;
  2639. buildPhases = (
  2640. F31F693E2A2F6D4500162F76 /* Sources */,
  2641. F31F693F2A2F6D4500162F76 /* Frameworks */,
  2642. F31F69402A2F6D4500162F76 /* Resources */,
  2643. );
  2644. buildRules = (
  2645. );
  2646. dependencies = (
  2647. F31F69472A2F6D4600162F76 /* PBXTargetDependency */,
  2648. );
  2649. name = NextcloudSnapshotTests;
  2650. packageProductDependencies = (
  2651. F31F694C2A2F6EFB00162F76 /* SnapshotTesting */,
  2652. F31F69512A2F89C400162F76 /* SVGKit */,
  2653. F31F69532A2F89C400162F76 /* SwiftRichString */,
  2654. F31F69552A2F89C400162F76 /* FirebaseDatabase */,
  2655. F31F69572A2F89C400162F76 /* XLForm */,
  2656. F31F69592A2F89C400162F76 /* UICKeyChainStore */,
  2657. F31F695B2A2F89C400162F76 /* Realm */,
  2658. F31F695D2A2F89C400162F76 /* JGProgressHUD */,
  2659. F31F69652A2F929600162F76 /* PreviewSnapshotsTesting */,
  2660. F31F69682A2F92F000162F76 /* SnapshotTestingHEIC */,
  2661. );
  2662. productName = NextcloudSnapshotTests;
  2663. productReference = F31F69422A2F6D4500162F76 /* NextcloudSnapshotTests.xctest */;
  2664. productType = "com.apple.product-type.bundle.unit-test";
  2665. };
  2666. F70716E22987F81400E72C1D /* File Provider Extension UI */ = {
  2667. isa = PBXNativeTarget;
  2668. buildConfigurationList = F70716F02987F81600E72C1D /* Build configuration list for PBXNativeTarget "File Provider Extension UI" */;
  2669. buildPhases = (
  2670. F70716DF2987F81400E72C1D /* Sources */,
  2671. F70716E02987F81400E72C1D /* Frameworks */,
  2672. F70716E12987F81400E72C1D /* Resources */,
  2673. );
  2674. buildRules = (
  2675. );
  2676. dependencies = (
  2677. );
  2678. name = "File Provider Extension UI";
  2679. packageProductDependencies = (
  2680. F70716F829881CFA00E72C1D /* UICKeyChainStore */,
  2681. F7490E7129882BB4009DCE94 /* RealmSwift */,
  2682. F7490E8829882CC8009DCE94 /* SwiftEntryKit */,
  2683. F7490E8A29882CE4009DCE94 /* NextcloudKit */,
  2684. );
  2685. productName = "File Provider Extension UI";
  2686. productReference = F70716E32987F81500E72C1D /* File Provider Extension UI.appex */;
  2687. productType = "com.apple.product-type.app-extension";
  2688. };
  2689. F71459B41D12E3B700CAFEEC /* Share */ = {
  2690. isa = PBXNativeTarget;
  2691. buildConfigurationList = F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */;
  2692. buildPhases = (
  2693. F71459B51D12E3B700CAFEEC /* Sources */,
  2694. F7145A141D12E3B700CAFEEC /* Frameworks */,
  2695. F7145A181D12E3B700CAFEEC /* Resources */,
  2696. );
  2697. buildRules = (
  2698. );
  2699. dependencies = (
  2700. );
  2701. name = Share;
  2702. packageProductDependencies = (
  2703. F72D7EB6263B1207000B3DFC /* MarkdownKit */,
  2704. F73ADD2026554F8E0069EA0D /* SwiftEntryKit */,
  2705. F710FC7F277B7D2700AA9FBF /* RealmSwift */,
  2706. F7EBCDCE277B81FF00A4EF67 /* UICKeyChainStore */,
  2707. F72CD01127A7E92400E59476 /* JGProgressHUD */,
  2708. F72AD70E28C24BA1006CB92D /* NextcloudKit */,
  2709. F70821D729E59E6D001CA2D7 /* TagListView */,
  2710. );
  2711. productName = "Share Ext";
  2712. productReference = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */;
  2713. productType = "com.apple.product-type.app-extension";
  2714. };
  2715. F7346E0F28B0EF5B006CE2D2 /* Widget */ = {
  2716. isa = PBXNativeTarget;
  2717. buildConfigurationList = F7346E1F28B0EF5E006CE2D2 /* Build configuration list for PBXNativeTarget "Widget" */;
  2718. buildPhases = (
  2719. F7346E0C28B0EF5B006CE2D2 /* Sources */,
  2720. F7346E0D28B0EF5B006CE2D2 /* Frameworks */,
  2721. F7346E0E28B0EF5B006CE2D2 /* Resources */,
  2722. );
  2723. buildRules = (
  2724. );
  2725. dependencies = (
  2726. );
  2727. name = Widget;
  2728. packageProductDependencies = (
  2729. F7346E2428B0FEFA006CE2D2 /* UICKeyChainStore */,
  2730. F7346E2828B0FFF2006CE2D2 /* RealmSwift */,
  2731. F783030C28B4C59A00B84583 /* SwiftEntryKit */,
  2732. F783034328B5142B00B84583 /* NextcloudKit */,
  2733. F787AC0A298BCB540001BB00 /* SVGKitSwift */,
  2734. );
  2735. productName = DashboardWidgetExtension;
  2736. productReference = F7346E1028B0EF5B006CE2D2 /* Widget.appex */;
  2737. productType = "com.apple.product-type.app-extension";
  2738. };
  2739. F771E3CF20E2392D00AFB62D /* File Provider Extension */ = {
  2740. isa = PBXNativeTarget;
  2741. buildConfigurationList = F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */;
  2742. buildPhases = (
  2743. F771E3CC20E2392D00AFB62D /* Sources */,
  2744. F771E3CD20E2392D00AFB62D /* Frameworks */,
  2745. F771E3CE20E2392D00AFB62D /* Resources */,
  2746. );
  2747. buildRules = (
  2748. );
  2749. dependencies = (
  2750. );
  2751. name = "File Provider Extension";
  2752. packageProductDependencies = (
  2753. F73ADD2326554FE20069EA0D /* SwiftEntryKit */,
  2754. F710FC83277B7D3500AA9FBF /* RealmSwift */,
  2755. F7EBCDD0277B820D00A4EF67 /* UICKeyChainStore */,
  2756. F72AD71228C24BCC006CB92D /* NextcloudKit */,
  2757. );
  2758. productName = "File Provider Extension";
  2759. productReference = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */;
  2760. productType = "com.apple.product-type.app-extension";
  2761. };
  2762. F77B0DEB1D118A16002130FE /* Nextcloud */ = {
  2763. isa = PBXNativeTarget;
  2764. buildConfigurationList = F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */;
  2765. buildPhases = (
  2766. F30A961C2A2766D900D7BCFE /* Generate env vars */,
  2767. F77B0DEF1D118A16002130FE /* Sources */,
  2768. F77B0EDC1D118A16002130FE /* Frameworks */,
  2769. F77B0EE91D118A16002130FE /* Resources */,
  2770. F77B0F981D118A16002130FE /* Embed Foundation Extensions */,
  2771. AFBFD01327551A54002244BC /* ShellScript */,
  2772. F76DA934277B75710082465B /* Embed Frameworks */,
  2773. );
  2774. buildRules = (
  2775. );
  2776. dependencies = (
  2777. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */,
  2778. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */,
  2779. 2C33C48523E2C475005F963B /* PBXTargetDependency */,
  2780. F7346E1B28B0EF5E006CE2D2 /* PBXTargetDependency */,
  2781. F7C9739828F17131002C43E2 /* PBXTargetDependency */,
  2782. F70716EC2987F81500E72C1D /* PBXTargetDependency */,
  2783. );
  2784. name = Nextcloud;
  2785. packageProductDependencies = (
  2786. F7ED547B25EEA65400956C55 /* QRCodeReader */,
  2787. F72DA9B325F53E4E00B87DB1 /* SwiftRichString */,
  2788. F770768D263A8C3400A1BA94 /* FloatingPanel */,
  2789. F788ECC6263AAAFA00ADC67F /* MarkdownKit */,
  2790. F70B86742642CE3B00ED5349 /* FirebaseCrashlytics */,
  2791. F73ADD1B265546890069EA0D /* SwiftEntryKit */,
  2792. F75EAED726D2552E00F4320E /* MarqueeLabel */,
  2793. F74E771F277A2EF40013B958 /* XLForm */,
  2794. F76DA962277B760E0082465B /* Queuer */,
  2795. F76DA965277B76F30082465B /* UICKeyChainStore */,
  2796. F76DA968277B77EA0082465B /* DropDown */,
  2797. F710FC79277B7D0000AA9FBF /* Realm */,
  2798. F710FC7B277B7D0000AA9FBF /* RealmSwift */,
  2799. F7BB7E4627A18C56009B9F29 /* Parchment */,
  2800. F758A01127A7F03E0069468B /* JGProgressHUD */,
  2801. F753BA92281FD8020015BFB6 /* EasyTipView */,
  2802. F72AD70C28C24B93006CB92D /* NextcloudKit */,
  2803. F734B06528E75C0100E180D5 /* TLPhotoPicker */,
  2804. F77333872927A72100466E35 /* OpenSSL */,
  2805. F77BC3EA293E5268005F2B08 /* Swifter */,
  2806. F7D56B192972405500FA46C4 /* Mantis */,
  2807. F787AC08298BCB4A0001BB00 /* SVGKitSwift */,
  2808. F7A1050D29E587AF00FFD92B /* TagListView */,
  2809. F31F69632A2F929600162F76 /* PreviewSnapshots */,
  2810. );
  2811. productName = "Crypto Cloud";
  2812. productReference = F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */;
  2813. productType = "com.apple.product-type.application";
  2814. };
  2815. F7C9738F28F17131002C43E2 /* WidgetDashboardIntentHandler */ = {
  2816. isa = PBXNativeTarget;
  2817. buildConfigurationList = F7C9739A28F17132002C43E2 /* Build configuration list for PBXNativeTarget "WidgetDashboardIntentHandler" */;
  2818. buildPhases = (
  2819. F7C9738C28F17131002C43E2 /* Sources */,
  2820. F7C9738D28F17131002C43E2 /* Frameworks */,
  2821. F7C9738E28F17131002C43E2 /* Resources */,
  2822. );
  2823. buildRules = (
  2824. );
  2825. dependencies = (
  2826. );
  2827. name = WidgetDashboardIntentHandler;
  2828. packageProductDependencies = (
  2829. F7A8D72328F1771B008BBE1C /* NextcloudKit */,
  2830. F7A8D72728F17728008BBE1C /* RealmSwift */,
  2831. F7A8D72D28F17764008BBE1C /* UICKeyChainStore */,
  2832. );
  2833. productName = WidgetDashboardIntentHandler;
  2834. productReference = F7C9739028F17131002C43E2 /* WidgetDashboardIntentHandler.appex */;
  2835. productType = "com.apple.product-type.app-extension";
  2836. };
  2837. /* End PBXNativeTarget section */
  2838. /* Begin PBXProject section */
  2839. F7F67BA01A24D27800EE80DA /* Project object */ = {
  2840. isa = PBXProject;
  2841. attributes = {
  2842. LastSwiftUpdateCheck = 1430;
  2843. LastUpgradeCheck = 1400;
  2844. ORGANIZATIONNAME = "Marino Faggiana";
  2845. TargetAttributes = {
  2846. 2C33C47E23E2C475005F963B = {
  2847. CreatedOnToolsVersion = 11.3.1;
  2848. ProvisioningStyle = Automatic;
  2849. };
  2850. AF8ED1F82757821000B8DBC4 = {
  2851. CreatedOnToolsVersion = 13.1;
  2852. TestTargetID = F77B0DEB1D118A16002130FE;
  2853. };
  2854. C0046CD92A17B98400D87C9D = {
  2855. CreatedOnToolsVersion = 14.2;
  2856. TestTargetID = F77B0DEB1D118A16002130FE;
  2857. };
  2858. C04E2F1F2A17BB4D001BAD85 = {
  2859. CreatedOnToolsVersion = 14.2;
  2860. TestTargetID = F77B0DEB1D118A16002130FE;
  2861. };
  2862. F31F69412A2F6D4500162F76 = {
  2863. CreatedOnToolsVersion = 14.3;
  2864. TestTargetID = F77B0DEB1D118A16002130FE;
  2865. };
  2866. F70716E22987F81400E72C1D = {
  2867. CreatedOnToolsVersion = 14.2;
  2868. };
  2869. F71459B41D12E3B700CAFEEC = {
  2870. LastSwiftMigration = 1020;
  2871. SystemCapabilities = {
  2872. com.apple.ApplicationGroups.iOS = {
  2873. enabled = 1;
  2874. };
  2875. com.apple.iCloud = {
  2876. enabled = 0;
  2877. };
  2878. };
  2879. };
  2880. F7346E0F28B0EF5B006CE2D2 = {
  2881. CreatedOnToolsVersion = 13.4.1;
  2882. };
  2883. F771E3CF20E2392D00AFB62D = {
  2884. CreatedOnToolsVersion = 9.4.1;
  2885. LastSwiftMigration = 1020;
  2886. ProvisioningStyle = Automatic;
  2887. };
  2888. F77B0DEB1D118A16002130FE = {
  2889. LastSwiftMigration = 1020;
  2890. ProvisioningStyle = Automatic;
  2891. SystemCapabilities = {
  2892. com.apple.Push = {
  2893. enabled = 1;
  2894. };
  2895. com.apple.iCloud = {
  2896. enabled = 1;
  2897. };
  2898. };
  2899. };
  2900. F7C9738F28F17131002C43E2 = {
  2901. CreatedOnToolsVersion = 14.0;
  2902. };
  2903. };
  2904. };
  2905. buildConfigurationList = F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */;
  2906. compatibilityVersion = "Xcode 3.2";
  2907. developmentRegion = en;
  2908. hasScannedForEncodings = 0;
  2909. knownRegions = (
  2910. en,
  2911. Base,
  2912. de,
  2913. fr,
  2914. "pt-BR",
  2915. ru,
  2916. it,
  2917. tr,
  2918. "es-MX",
  2919. "nb-NO",
  2920. pl,
  2921. sv,
  2922. es,
  2923. is,
  2924. nl,
  2925. "sk-SK",
  2926. "en-GB",
  2927. "zh-Hans",
  2928. "ka-GE",
  2929. hu,
  2930. "zh-Hant-TW",
  2931. sr,
  2932. "es-CL",
  2933. "es-CO",
  2934. "es-CR",
  2935. "es-DO",
  2936. "es-EC",
  2937. "es-GT",
  2938. "es-HN",
  2939. "es-NI",
  2940. "es-PA",
  2941. "es-PE",
  2942. "es-PR",
  2943. "es-PY",
  2944. "es-SV",
  2945. "es-UY",
  2946. "cs-CZ",
  2947. ko,
  2948. "es-419",
  2949. "pt-PT",
  2950. "ja-JP",
  2951. gl,
  2952. ca,
  2953. da,
  2954. eu,
  2955. );
  2956. mainGroup = F7F67B9F1A24D27800EE80DA;
  2957. packageReferences = (
  2958. F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */,
  2959. F7ED547A25EEA65400956C55 /* XCRemoteSwiftPackageReference "QRCodeReader" */,
  2960. F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */,
  2961. F770768C263A8C3400A1BA94 /* XCRemoteSwiftPackageReference "FloatingPanel" */,
  2962. F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */,
  2963. F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */,
  2964. F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */,
  2965. F75EAED626D2552E00F4320E /* XCRemoteSwiftPackageReference "MarqueeLabel" */,
  2966. F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */,
  2967. F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */,
  2968. F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */,
  2969. F76DA967277B77E90082465B /* XCRemoteSwiftPackageReference "DropDown" */,
  2970. F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */,
  2971. F7BB7E4527A18C56009B9F29 /* XCRemoteSwiftPackageReference "Parchment" */,
  2972. F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */,
  2973. F753BA91281FD8010015BFB6 /* XCRemoteSwiftPackageReference "EasyTipView" */,
  2974. F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */,
  2975. F734B06428E75C0100E180D5 /* XCRemoteSwiftPackageReference "TLPhotoPicker" */,
  2976. F77333862927A72100466E35 /* XCRemoteSwiftPackageReference "OpenSSL" */,
  2977. F77BC3E9293E5268005F2B08 /* XCRemoteSwiftPackageReference "swifter" */,
  2978. F7D56B182972405400FA46C4 /* XCRemoteSwiftPackageReference "Mantis" */,
  2979. F7A1050C29E587AF00FFD92B /* XCRemoteSwiftPackageReference "TagListView" */,
  2980. F31F694B2A2F6EFA00162F76 /* XCRemoteSwiftPackageReference "swift-snapshot-testing" */,
  2981. F31F69622A2F929600162F76 /* XCRemoteSwiftPackageReference "swiftui-preview-snapshots" */,
  2982. F31F69672A2F92F000162F76 /* XCRemoteSwiftPackageReference "SnapshotTestingHEIC" */,
  2983. );
  2984. productRefGroup = F7F67B9F1A24D27800EE80DA;
  2985. projectDirPath = "";
  2986. projectRoot = "";
  2987. targets = (
  2988. F77B0DEB1D118A16002130FE /* Nextcloud */,
  2989. F7346E0F28B0EF5B006CE2D2 /* Widget */,
  2990. F7C9738F28F17131002C43E2 /* WidgetDashboardIntentHandler */,
  2991. F71459B41D12E3B700CAFEEC /* Share */,
  2992. F771E3CF20E2392D00AFB62D /* File Provider Extension */,
  2993. F70716E22987F81400E72C1D /* File Provider Extension UI */,
  2994. 2C33C47E23E2C475005F963B /* Notification Service Extension */,
  2995. AF8ED1F82757821000B8DBC4 /* NextcloudUnitTests */,
  2996. C04E2F1F2A17BB4D001BAD85 /* NextcloudIntegrationTests */,
  2997. F31F69412A2F6D4500162F76 /* NextcloudSnapshotTests */,
  2998. C0046CD92A17B98400D87C9D /* NextcloudUITests */,
  2999. );
  3000. };
  3001. /* End PBXProject section */
  3002. /* Begin PBXResourcesBuildPhase section */
  3003. 2C33C47D23E2C475005F963B /* Resources */ = {
  3004. isa = PBXResourcesBuildPhase;
  3005. buildActionMask = 2147483647;
  3006. files = (
  3007. F746EC53273906C50052598D /* NCViewCertificateDetails.storyboard in Resources */,
  3008. );
  3009. runOnlyForDeploymentPostprocessing = 0;
  3010. };
  3011. AF8ED1F72757821000B8DBC4 /* Resources */ = {
  3012. isa = PBXResourcesBuildPhase;
  3013. buildActionMask = 2147483647;
  3014. files = (
  3015. );
  3016. runOnlyForDeploymentPostprocessing = 0;
  3017. };
  3018. C0046CD82A17B98400D87C9D /* Resources */ = {
  3019. isa = PBXResourcesBuildPhase;
  3020. buildActionMask = 2147483647;
  3021. files = (
  3022. );
  3023. runOnlyForDeploymentPostprocessing = 0;
  3024. };
  3025. C04E2F1E2A17BB4D001BAD85 /* Resources */ = {
  3026. isa = PBXResourcesBuildPhase;
  3027. buildActionMask = 2147483647;
  3028. files = (
  3029. F30A962F2A27ADF900D7BCFE /* EnvVars.stencil in Resources */,
  3030. );
  3031. runOnlyForDeploymentPostprocessing = 0;
  3032. };
  3033. F31F69402A2F6D4500162F76 /* Resources */ = {
  3034. isa = PBXResourcesBuildPhase;
  3035. buildActionMask = 2147483647;
  3036. files = (
  3037. );
  3038. runOnlyForDeploymentPostprocessing = 0;
  3039. };
  3040. F70716E12987F81400E72C1D /* Resources */ = {
  3041. isa = PBXResourcesBuildPhase;
  3042. buildActionMask = 2147483647;
  3043. files = (
  3044. F7490E8D29882F5B009DCE94 /* Custom.xcassets in Resources */,
  3045. F7490E8E2988334A009DCE94 /* Localizable.strings in Resources */,
  3046. F70716E92987F81500E72C1D /* MainInterface.storyboard in Resources */,
  3047. );
  3048. runOnlyForDeploymentPostprocessing = 0;
  3049. };
  3050. F7145A181D12E3B700CAFEEC /* Resources */ = {
  3051. isa = PBXResourcesBuildPhase;
  3052. buildActionMask = 2147483647;
  3053. files = (
  3054. F7148059262ED52200693E51 /* NCSectionHeaderMenu.xib in Resources */,
  3055. F714803B262EBE3900693E51 /* MainInterface.storyboard in Resources */,
  3056. F7148054262ED51000693E51 /* NCListCell.xib in Resources */,
  3057. F7D57C8626317BDA00DE301D /* NCAccountRequest.storyboard in Resources */,
  3058. AF22B209277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.xib in Resources */,
  3059. F7148063262ED66200693E51 /* NCEmptyView.xib in Resources */,
  3060. AF22B207277B4E4C00DAB0CC /* NCCreateFormUploadConflict.storyboard in Resources */,
  3061. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */,
  3062. F746EC51273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */,
  3063. F76C26A62850D3A500E42BDF /* Images.xcassets in Resources */,
  3064. F79EC784263161BA004E59D6 /* NCRenameFile.storyboard in Resources */,
  3065. F714804F262ED4F900693E51 /* NCGridCell.xib in Resources */,
  3066. F714805E262ED52900693E51 /* NCSectionFooter.xib in Resources */,
  3067. F700222D1EC479840080073F /* Custom.xcassets in Resources */,
  3068. );
  3069. runOnlyForDeploymentPostprocessing = 0;
  3070. };
  3071. F7346E0E28B0EF5B006CE2D2 /* Resources */ = {
  3072. isa = PBXResourcesBuildPhase;
  3073. buildActionMask = 2147483647;
  3074. files = (
  3075. F7C7B25128B8B0C400E7115D /* Images.xcassets in Resources */,
  3076. F7C7B25028B8AD4500E7115D /* Localizable.strings in Resources */,
  3077. F7346E2328B0FEBA006CE2D2 /* Assets.xcassets in Resources */,
  3078. );
  3079. runOnlyForDeploymentPostprocessing = 0;
  3080. };
  3081. F771E3CE20E2392D00AFB62D /* Resources */ = {
  3082. isa = PBXResourcesBuildPhase;
  3083. buildActionMask = 2147483647;
  3084. files = (
  3085. F746EC52273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */,
  3086. );
  3087. runOnlyForDeploymentPostprocessing = 0;
  3088. };
  3089. F77B0EE91D118A16002130FE /* Resources */ = {
  3090. isa = PBXResourcesBuildPhase;
  3091. buildActionMask = 2147483647;
  3092. files = (
  3093. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */,
  3094. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */,
  3095. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */,
  3096. F7F4F10727ECDBDB008676F9 /* Inconsolata-Black.ttf in Resources */,
  3097. F761856D29E98543006EB3B0 /* NCIntroCollectionViewCell.xib in Resources */,
  3098. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */,
  3099. F7F4F10827ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf in Resources */,
  3100. F72685E727C78E490019EF5E /* InfoPlist.strings in Resources */,
  3101. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */,
  3102. F7F4F10927ECDBDB008676F9 /* Inconsolata-Bold.ttf in Resources */,
  3103. F76D3CF52428D0C1005DFA87 /* NCViewerPDF.storyboard in Resources */,
  3104. F700222C1EC479840080073F /* Custom.xcassets in Resources */,
  3105. F702F2F125EE5CDB008F8E80 /* NCLogin.storyboard in Resources */,
  3106. F723985C253C95CE00257F49 /* NCViewerRichdocument.storyboard in Resources */,
  3107. F758B45A212C564000515F55 /* NCScan.storyboard in Resources */,
  3108. F70D87CF25EE6E58008CBBBD /* NCRenameFile.storyboard in Resources */,
  3109. F765F73225237E3F00391DBE /* NCRecent.storyboard in Resources */,
  3110. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */,
  3111. F702F30225EE5D2C008F8E80 /* english.txt in Resources */,
  3112. F757CC8C29E82D0500F31428 /* NCGroupfolders.storyboard in Resources */,
  3113. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */,
  3114. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */,
  3115. F31F69612A2F907800162F76 /* __Snapshots__ in Resources */,
  3116. F702F2E725EE5C86008F8E80 /* NCAudioRecorderViewController.storyboard in Resources */,
  3117. AF56C1DC2784856200D8BAE2 /* NCActivityCommentView.xib in Resources */,
  3118. F7F4F10B27ECDBDB008676F9 /* Inconsolata-Light.ttf in Resources */,
  3119. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */,
  3120. AF93471C27E2361E002537EE /* NCShareAdvancePermissionHeader.xib in Resources */,
  3121. F7F1E54C2492369A00E42386 /* NCMediaCommandView.xib in Resources */,
  3122. F76032A0252F0F8E0015A421 /* NCTransferCell.xib in Resources */,
  3123. F7F4F10527ECDBDB008676F9 /* Inconsolata-SemiBold.ttf in Resources */,
  3124. F7A48415297028FC00BD1B49 /* Nextcloud Hub.png in Resources */,
  3125. F74C0437253F1CDC009762AB /* NCShares.storyboard in Resources */,
  3126. F7F4F10C27ECDBDB008676F9 /* Inconsolata-Regular.ttf in Resources */,
  3127. F7B8B83025681C3400967775 /* GoogleService-Info.plist in Resources */,
  3128. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */,
  3129. F7E0CDCF265CE8610044854E /* NCUserStatus.storyboard in Resources */,
  3130. F76D3CF32428B94E005DFA87 /* NCViewerPDFSearchCell.xib in Resources */,
  3131. F7CA212E25F1333300826ABB /* NCAccountRequest.storyboard in Resources */,
  3132. F717402D24F699A5000C87D5 /* NCFavorite.storyboard in Resources */,
  3133. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */,
  3134. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */,
  3135. AF93471927E2361E002537EE /* NCShareAdvancePermissionFooter.xib in Resources */,
  3136. F7725A61251F33BB00D125E0 /* NCFiles.storyboard in Resources */,
  3137. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */,
  3138. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */,
  3139. F70753F72542A9C000972D44 /* NCViewerMediaPage.storyboard in Resources */,
  3140. F7F4F10627ECDBDB008676F9 /* Inconsolata-Medium.ttf in Resources */,
  3141. F7AC934A296193050002BC0F /* Reasons to use Nextcloud.pdf in Resources */,
  3142. F7A60F87292D215000FCE1F2 /* NCShareAccounts.storyboard in Resources */,
  3143. F7239877253D86D300257F49 /* NCEmptyView.xib in Resources */,
  3144. F761856A29E98543006EB3B0 /* NCIntro.storyboard in Resources */,
  3145. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */,
  3146. F719D9E0288D37A300762E33 /* NCColorPicker.storyboard in Resources */,
  3147. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */,
  3148. F7F4F10A27ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf in Resources */,
  3149. F704B5E72430C06700632F5F /* NCCreateFormUploadConflictCell.xib in Resources */,
  3150. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */,
  3151. F7BC287E26663F6C004D46C5 /* NCViewCertificateDetails.storyboard in Resources */,
  3152. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */,
  3153. F704B5E32430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard in Resources */,
  3154. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */,
  3155. F7EDE509262DA9D600414FE6 /* NCSelectCommandViewSelect.xib in Resources */,
  3156. F732D23327CF8AED000B0F1B /* NCPlayerToolBar.xib in Resources */,
  3157. F7CF16A32A4D7C7A000FF107 /* NCMoreUserCell.xib in Resources */,
  3158. F73D11FA253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard in Resources */,
  3159. F7EDE51B262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib in Resources */,
  3160. F73B422B2476764F00A30FD3 /* NCNotification.storyboard in Resources */,
  3161. F7FF2CB12842159500EBB7A1 /* NCSectionHeader.xib in Resources */,
  3162. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */,
  3163. F77B0F631D118A16002130FE /* Localizable.strings in Resources */,
  3164. F774264A22EB4D0000B23912 /* NCSearchUserDropDownCell.xib in Resources */,
  3165. F7CB689A2541676B0050EC94 /* NCMore.storyboard in Resources */,
  3166. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */,
  3167. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */,
  3168. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */,
  3169. F7EDE514262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib in Resources */,
  3170. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */,
  3171. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */,
  3172. F74DE14425135B6800917068 /* NCTransfers.storyboard in Resources */,
  3173. F77910A525DD517B00CEDB9E /* Settings.bundle in Resources */,
  3174. F7CB68A0254169530050EC94 /* NCSettings.storyboard in Resources */,
  3175. );
  3176. runOnlyForDeploymentPostprocessing = 0;
  3177. };
  3178. F7C9738E28F17131002C43E2 /* Resources */ = {
  3179. isa = PBXResourcesBuildPhase;
  3180. buildActionMask = 2147483647;
  3181. files = (
  3182. );
  3183. runOnlyForDeploymentPostprocessing = 0;
  3184. };
  3185. /* End PBXResourcesBuildPhase section */
  3186. /* Begin PBXShellScriptBuildPhase section */
  3187. AFBFD01327551A54002244BC /* ShellScript */ = {
  3188. isa = PBXShellScriptBuildPhase;
  3189. alwaysOutOfDate = 1;
  3190. buildActionMask = 2147483647;
  3191. files = (
  3192. );
  3193. inputFileListPaths = (
  3194. );
  3195. inputPaths = (
  3196. );
  3197. outputFileListPaths = (
  3198. );
  3199. outputPaths = (
  3200. );
  3201. runOnlyForDeploymentPostprocessing = 0;
  3202. shellPath = /bin/sh;
  3203. 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";
  3204. };
  3205. F30A961C2A2766D900D7BCFE /* Generate env vars */ = {
  3206. isa = PBXShellScriptBuildPhase;
  3207. buildActionMask = 2147483647;
  3208. files = (
  3209. );
  3210. inputFileListPaths = (
  3211. );
  3212. inputPaths = (
  3213. "$(SRCROOT)/.env-vars",
  3214. );
  3215. name = "Generate env vars";
  3216. outputFileListPaths = (
  3217. );
  3218. outputPaths = (
  3219. $PROJECT_DIR/Sourcery/EnvVars.generated.swift,
  3220. );
  3221. runOnlyForDeploymentPostprocessing = 0;
  3222. shellPath = /bin/sh;
  3223. shellScript = "#This generates an env-vars file that the project uses for various tasks, mostly testing. If you want to modify the env vars, open .env-vars in the root dir.\n#It also generates a .swift file in the project that contains the env vars as swift constants for easy use. Check EnvVars.generated.swift\n\nif [ ! -f \".env-vars\" ]; then\n touch .env-vars\n echo \"export TEST_SERVER_URL=\" >> .env-vars\n echo \"export TEST_USER=\" >> .env-vars\n echo \"export TEST_APP_PASSWORD=\" >> .env-vars\n #add more env vars here\nfi\n\nsource .env-vars\n\nSourcery/bin/sourcery --templates Sourcery --output Sourcery --sources . --args TEST_USER=$TEST_USER,TEST_APP_PASSWORD=$TEST_APP_PASSWORD,TEST_SERVER_URL=$TEST_SERVER_URL\n";
  3224. };
  3225. /* End PBXShellScriptBuildPhase section */
  3226. /* Begin PBXSourcesBuildPhase section */
  3227. 2C33C47B23E2C475005F963B /* Sources */ = {
  3228. isa = PBXSourcesBuildPhase;
  3229. buildActionMask = 2147483647;
  3230. files = (
  3231. F785EEA52461A4CF00B3F945 /* CCUtility.m in Sources */,
  3232. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */,
  3233. F770768A263A8A2500A1BA94 /* NCUtilityFileSystem.swift in Sources */,
  3234. F76D364928A4F8BF00214537 /* NCActivityIndicator.swift in Sources */,
  3235. F7817CFD29801A3500FFBC65 /* Data+Extension.swift in Sources */,
  3236. AF4BF62127562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
  3237. F702F2D225EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
  3238. F7707689263A896A00A1BA94 /* UIImage+Extension.swift in Sources */,
  3239. 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */,
  3240. F72FD3BA297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */,
  3241. F7E98C1927E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */,
  3242. 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */,
  3243. F314F1142A30E2DE00BC7FAB /* View+Extension.swift in Sources */,
  3244. F7D68FD028CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3245. F343A4C12A1E734600DDA874 /* Optional+Extension.swift in Sources */,
  3246. F7245927289BB59300474787 /* ThreadSafeDictionary.swift in Sources */,
  3247. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */,
  3248. AF4BF617275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
  3249. F7BF9D872934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
  3250. F749B64F297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
  3251. D575039F27146F93008DC9DC /* String+Extension.swift in Sources */,
  3252. F769CA1A2966EA3C00039397 /* ComponentView.swift in Sources */,
  3253. F757CC8829E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3254. F79B646326CA661600838ACA /* UIControl+Extension.swift in Sources */,
  3255. F78A10C429322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
  3256. F75CA1482962F13700B01130 /* HUDView.swift in Sources */,
  3257. AF4BF61C27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */,
  3258. AF817EF4274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
  3259. F78E2D6B29AF02DB0024D4F3 /* Database.swift in Sources */,
  3260. F7817CFF29802D1A00FFBC65 /* NCPushNotificationEncryption.m in Sources */,
  3261. F798F0EC2588060A000DAFFD /* UIColor+Extension.swift in Sources */,
  3262. F343A4B92A1E084400DDA874 /* PHAsset+Extension.swift in Sources */,
  3263. F763D2A32A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3264. F749B656297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
  3265. F782FDC424E6933900666099 /* NCUtility.swift in Sources */,
  3266. );
  3267. runOnlyForDeploymentPostprocessing = 0;
  3268. };
  3269. AF8ED1F52757821000B8DBC4 /* Sources */ = {
  3270. isa = PBXSourcesBuildPhase;
  3271. buildActionMask = 2147483647;
  3272. files = (
  3273. AF8ED1FC2757821000B8DBC4 /* NextcloudUnitTests.swift in Sources */,
  3274. F78E2D6C29AF02DB0024D4F3 /* Database.swift in Sources */,
  3275. F7817CFE29801A3500FFBC65 /* Data+Extension.swift in Sources */,
  3276. );
  3277. runOnlyForDeploymentPostprocessing = 0;
  3278. };
  3279. C0046CD62A17B98400D87C9D /* Sources */ = {
  3280. isa = PBXSourcesBuildPhase;
  3281. buildActionMask = 2147483647;
  3282. files = (
  3283. F3A7AFC62A41AA82001FC89C /* BaseUIXCTestCase.swift in Sources */,
  3284. F32ED5062A2F254400EABA81 /* EnvVars.generated.swift in Sources */,
  3285. C0046CDD2A17B98400D87C9D /* LoginUITests.swift in Sources */,
  3286. );
  3287. runOnlyForDeploymentPostprocessing = 0;
  3288. };
  3289. C04E2F1C2A17BB4D001BAD85 /* Sources */ = {
  3290. isa = PBXSourcesBuildPhase;
  3291. buildActionMask = 2147483647;
  3292. files = (
  3293. F30A96322A27AEDD00D7BCFE /* EnvVars.generated.swift in Sources */,
  3294. C04E2F232A17BB4D001BAD85 /* FilesIntegrationTests.swift in Sources */,
  3295. );
  3296. runOnlyForDeploymentPostprocessing = 0;
  3297. };
  3298. F31F693E2A2F6D4500162F76 /* Sources */ = {
  3299. isa = PBXSourcesBuildPhase;
  3300. buildActionMask = 2147483647;
  3301. files = (
  3302. F31F69452A2F6D4600162F76 /* NextcloudSnapshotTests.swift in Sources */,
  3303. );
  3304. runOnlyForDeploymentPostprocessing = 0;
  3305. };
  3306. F70716DF2987F81400E72C1D /* Sources */ = {
  3307. isa = PBXSourcesBuildPhase;
  3308. buildActionMask = 2147483647;
  3309. files = (
  3310. F7490E8329882C84009DCE94 /* NCManageDatabase+LayoutForView.swift in Sources */,
  3311. F7490E7629882BF3009DCE94 /* NCUserBaseUrl.swift in Sources */,
  3312. F7490E8029882C76009DCE94 /* NCManageDatabase+Avatar.swift in Sources */,
  3313. F343A4B82A1E084300DDA874 /* PHAsset+Extension.swift in Sources */,
  3314. F78E2D6A29AF02DB0024D4F3 /* Database.swift in Sources */,
  3315. F7490E7429882BCC009DCE94 /* NCManageDatabase.swift in Sources */,
  3316. F7490E6E29882B56009DCE94 /* NCBrand.swift in Sources */,
  3317. F7490E8129882C79009DCE94 /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3318. F7490E8629882C99009DCE94 /* NCUtilityFileSystem.swift in Sources */,
  3319. F763D2A22A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3320. F343A4C02A1E734600DDA874 /* Optional+Extension.swift in Sources */,
  3321. F7490E8529882C8C009DCE94 /* NCManageDatabase+Video.swift in Sources */,
  3322. F7490E8C29882D02009DCE94 /* CCUtility.m in Sources */,
  3323. F7490E7729882C10009DCE94 /* UIColor+Extension.swift in Sources */,
  3324. F70716E62987F81500E72C1D /* DocumentActionViewController.swift in Sources */,
  3325. F7490E8429882C89009DCE94 /* NCManageDatabase+Share.swift in Sources */,
  3326. F7490E6F29882B67009DCE94 /* UIImage+Extension.swift in Sources */,
  3327. F7490E7E29882C6E009DCE94 /* NCManageDatabase+Account.swift in Sources */,
  3328. F7490E7329882BC8009DCE94 /* NCDatabase.swift in Sources */,
  3329. F7490E7029882B9B009DCE94 /* NCManageDatabase+Metadata.swift in Sources */,
  3330. F7490E6C29882AEA009DCE94 /* String+Extension.swift in Sources */,
  3331. F7490E6B29882A92009DCE94 /* NCGlobal.swift in Sources */,
  3332. F7490E7529882BE2009DCE94 /* NCManageDatabase+Directory.swift in Sources */,
  3333. F7490E8729882CA8009DCE94 /* ThreadSafeDictionary.swift in Sources */,
  3334. F757CC8729E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3335. F7490E8229882C80009DCE94 /* NCManageDatabase+E2EE.swift in Sources */,
  3336. F7490E7829882C28009DCE94 /* NCUtility.swift in Sources */,
  3337. F7490E7F29882C73009DCE94 /* NCManageDatabase+Activity.swift in Sources */,
  3338. );
  3339. runOnlyForDeploymentPostprocessing = 0;
  3340. };
  3341. F71459B51D12E3B700CAFEEC /* Sources */ = {
  3342. isa = PBXSourcesBuildPhase;
  3343. buildActionMask = 2147483647;
  3344. files = (
  3345. F7245925289BB59100474787 /* ThreadSafeDictionary.swift in Sources */,
  3346. F7EDE4E5262D7BBE00414FE6 /* NCSectionHeaderMenu.swift in Sources */,
  3347. F7BF9D852934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
  3348. F79EC78926316AC4004E59D6 /* NCPopupViewController.swift in Sources */,
  3349. F7C30DFB291BCF790017149B /* NCNetworkingE2EECreateFolder.swift in Sources */,
  3350. F7817CFB29801A3500FFBC65 /* Data+Extension.swift in Sources */,
  3351. AF4BF61F27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
  3352. F7A0D1362591FBC5008F8A13 /* String+Extension.swift in Sources */,
  3353. F7EDE4D6262D7B9600414FE6 /* NCListCell.swift in Sources */,
  3354. F7707687263A853700A1BA94 /* NCContentPresenter.swift in Sources */,
  3355. F343A4B62A1E084200DDA874 /* PHAsset+Extension.swift in Sources */,
  3356. F70460532499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */,
  3357. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3358. AF22B20C277C6F4D00DAB0CC /* NCShareCell.swift in Sources */,
  3359. F7E98C1727E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */,
  3360. F79B646126CA661600838ACA /* UIControl+Extension.swift in Sources */,
  3361. F77C973A2953143A00FDDD09 /* NCCameraRoll.swift in Sources */,
  3362. F740BEF02A35C2AD00E9B6D5 /* UILabel+Extension.swift in Sources */,
  3363. F7EDE4CC262D7B6F00414FE6 /* NCEmptyDataSet.swift in Sources */,
  3364. F7C30E01291BD2610017149B /* NCNetworkingE2EERename.swift in Sources */,
  3365. AF4BF61A27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */,
  3366. AF4BF615275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
  3367. F798F0E225880608000DAFFD /* UIColor+Extension.swift in Sources */,
  3368. AF3FDCC32796F3FB00710F60 /* NCTrashListCell+NCTrashCellProtocol.swift in Sources */,
  3369. AF817EF2274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
  3370. F78E2D6829AF02DB0024D4F3 /* Database.swift in Sources */,
  3371. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */,
  3372. F7C30DFE291BD0B80017149B /* NCNetworkingE2EEDelete.swift in Sources */,
  3373. F74AF3A5247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */,
  3374. AF1A9B6527D0CC0500F17A9E /* UIAlertController+Extension.swift in Sources */,
  3375. AF22B206277B4E4C00DAB0CC /* NCCreateFormUploadConflict.swift in Sources */,
  3376. F7BD71E62636EAFC00643C34 /* NCNetworkingE2EE.swift in Sources */,
  3377. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3378. AF22B218277D196700DAB0CC /* NCShareExtension+Files.swift in Sources */,
  3379. F702F2D025EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
  3380. F343A4BE2A1E734600DDA874 /* Optional+Extension.swift in Sources */,
  3381. F7EDE4DB262D7BA200414FE6 /* NCCellProtocol.swift in Sources */,
  3382. F7EDE4D1262D7B8400414FE6 /* NCDataSource.swift in Sources */,
  3383. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */,
  3384. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3385. AF730AFA27843E4C00B7520E /* NCShareExtension+NCDelegate.swift in Sources */,
  3386. F749B64D297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
  3387. F72FD3B8297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */,
  3388. F7EDE4E0262D7BAF00414FE6 /* NCGridCell.swift in Sources */,
  3389. F7A76DC8256A71CD00119AB3 /* UIImage+Extension.swift in Sources */,
  3390. F7B8CD96261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */,
  3391. F763D2A02A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3392. F757CC8529E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3393. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3394. F7817D0129802D5F00FFBC65 /* NCViewCertificateDetails.swift in Sources */,
  3395. F7D57C8B26317BDE00DE301D /* NCAccountRequest.swift in Sources */,
  3396. F7C30DF7291BC0D30017149B /* NCNetworkingE2EEUpload.swift in Sources */,
  3397. F78A10C229322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
  3398. F7D68FCE28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3399. AF22B217277D196700DAB0CC /* NCShareExtension+DataSource.swift in Sources */,
  3400. F76D364728A4F8BF00214537 /* NCActivityIndicator.swift in Sources */,
  3401. F749B654297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
  3402. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3403. F79EC77F26316193004E59D6 /* NCRenameFile.swift in Sources */,
  3404. AF22B208277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.swift in Sources */,
  3405. F7148041262EBE4000693E51 /* NCShareExtension.swift in Sources */,
  3406. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3407. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3408. );
  3409. runOnlyForDeploymentPostprocessing = 0;
  3410. };
  3411. F7346E0C28B0EF5B006CE2D2 /* Sources */ = {
  3412. isa = PBXSourcesBuildPhase;
  3413. buildActionMask = 2147483647;
  3414. files = (
  3415. F78302FD28B4C42B00B84583 /* NCUserBaseUrl.swift in Sources */,
  3416. F793E5A128B76541005E4B02 /* NotificationCenter+MainThread.swift in Sources */,
  3417. F76DEE9928F808AF0041B1C9 /* LockscreenWidgetView.swift in Sources */,
  3418. F7817D0029802D3D00FFBC65 /* NCViewCertificateDetails.swift in Sources */,
  3419. F78302F928B4C3E600B84583 /* NCManageDatabase+Account.swift in Sources */,
  3420. F7E0710128B13BB00001B882 /* DashboardData.swift in Sources */,
  3421. F783030328B4C4DD00B84583 /* ThreadSafeDictionary.swift in Sources */,
  3422. F77ED59128C9CE9D00E24ED0 /* ToolbarData.swift in Sources */,
  3423. F78302F728B4C3C900B84583 /* NCManageDatabase.swift in Sources */,
  3424. F7346E1628B0EF5C006CE2D2 /* Widget.swift in Sources */,
  3425. F78302F828B4C3E100B84583 /* NCManageDatabase+Activity.swift in Sources */,
  3426. F783030228B4C4B800B84583 /* NCUtility.swift in Sources */,
  3427. F711D63128F44801003F43C8 /* IntentHandler.swift in Sources */,
  3428. F76DEE9728F808AF0041B1C9 /* LockscreenData.swift in Sources */,
  3429. F72EA95A28B7BD0D00C88F0C /* FilesWidgetView.swift in Sources */,
  3430. F78302FE28B4C44700B84583 /* NCBrand.swift in Sources */,
  3431. F749B64B297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
  3432. F7817CF929801A3500FFBC65 /* Data+Extension.swift in Sources */,
  3433. F343A4B42A1E084100DDA874 /* PHAsset+Extension.swift in Sources */,
  3434. F793E59F28B764F6005E4B02 /* NCContentPresenter.swift in Sources */,
  3435. F76DEE9828F808AF0041B1C9 /* LockscreenWidgetProvider.swift in Sources */,
  3436. F78A10C029322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
  3437. F78302FA28B4C3EA00B84583 /* NCManageDatabase+Metadata.swift in Sources */,
  3438. F78E2D6629AF02DB0024D4F3 /* Database.swift in Sources */,
  3439. F783030728B4C52800B84583 /* UIColor+Extension.swift in Sources */,
  3440. F783030028B4C45800B84583 /* NCGlobal.swift in Sources */,
  3441. F793E59D28B761E7005E4B02 /* NCNetworking.swift in Sources */,
  3442. F7BF9D832934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
  3443. F757CC8329E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3444. F749B652297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
  3445. F783030628B4C51E00B84583 /* String+Extension.swift in Sources */,
  3446. F763D29E2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3447. F77ED59328C9CEA000E24ED0 /* ToolbarWidgetProvider.swift in Sources */,
  3448. F72A17D828B221E300F3F159 /* DashboardWidgetView.swift in Sources */,
  3449. F77ED59528C9CEA400E24ED0 /* ToolbarWidgetView.swift in Sources */,
  3450. F78302FB28B4C3EE00B84583 /* NCManageDatabase+Video.swift in Sources */,
  3451. F72EA95228B7BA2A00C88F0C /* DashboardWidgetProvider.swift in Sources */,
  3452. F343A4BC2A1E734600DDA874 /* Optional+Extension.swift in Sources */,
  3453. F793E5A228B76580005E4B02 /* NCNetworkingChunkedUpload.swift in Sources */,
  3454. F783031228B4C8EC00B84583 /* CCUtility.m in Sources */,
  3455. F72EA95828B7BC4F00C88F0C /* FilesData.swift in Sources */,
  3456. F793E59E28B763C2005E4B02 /* NCAskAuthorization.swift in Sources */,
  3457. F78302FF28B4C45000B84583 /* NCUtilityFileSystem.swift in Sources */,
  3458. F75DD766290ABB25002EB562 /* Intent.intentdefinition in Sources */,
  3459. F78302F628B4C3C500B84583 /* NCDatabase.swift in Sources */,
  3460. F7D68FCD28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3461. F72FD3B6297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */,
  3462. F783030128B4C49700B84583 /* UIImage+Extension.swift in Sources */,
  3463. F72EA95428B7BABA00C88F0C /* FilesWidgetProvider.swift in Sources */,
  3464. );
  3465. runOnlyForDeploymentPostprocessing = 0;
  3466. };
  3467. F771E3CC20E2392D00AFB62D /* Sources */ = {
  3468. isa = PBXSourcesBuildPhase;
  3469. buildActionMask = 2147483647;
  3470. files = (
  3471. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */,
  3472. F7245926289BB59300474787 /* ThreadSafeDictionary.swift in Sources */,
  3473. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */,
  3474. F763D2A12A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3475. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */,
  3476. F757CC8629E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3477. F702F2D125EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
  3478. F76D364828A4F8BF00214537 /* NCActivityIndicator.swift in Sources */,
  3479. F7817D0229802D7700FFBC65 /* NCViewCertificateDetails.swift in Sources */,
  3480. F7434B3820E2400600417916 /* NCBrand.swift in Sources */,
  3481. F785EE9E2461A09900B3F945 /* NCNetworking.swift in Sources */,
  3482. F749B655297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
  3483. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */,
  3484. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */,
  3485. AF4BF616275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
  3486. F343A4B72A1E084300DDA874 /* PHAsset+Extension.swift in Sources */,
  3487. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */,
  3488. F798F0E725880609000DAFFD /* UIColor+Extension.swift in Sources */,
  3489. F7D68FCF28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3490. AF4BF61B27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */,
  3491. F70460542499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */,
  3492. F78A10C329322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
  3493. F7BF9D862934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
  3494. F7E98C1827E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */,
  3495. F785EEA42461A4A600B3F945 /* NCUtility.swift in Sources */,
  3496. F79B646226CA661600838ACA /* UIControl+Extension.swift in Sources */,
  3497. F78E2D6929AF02DB0024D4F3 /* Database.swift in Sources */,
  3498. F749B64E297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
  3499. AF817EF3274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
  3500. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */,
  3501. F7B8CD9B261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */,
  3502. F7A0D1372591FBC5008F8A13 /* String+Extension.swift in Sources */,
  3503. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */,
  3504. F74AF3A6247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */,
  3505. F7817CFC29801A3500FFBC65 /* Data+Extension.swift in Sources */,
  3506. F7A76DCD256A71CE00119AB3 /* UIImage+Extension.swift in Sources */,
  3507. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */,
  3508. F343A4BF2A1E734600DDA874 /* Optional+Extension.swift in Sources */,
  3509. AF4BF62027562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
  3510. F785EEA62461A4FB00B3F945 /* CCUtility.m in Sources */,
  3511. F73ADD2226554FD10069EA0D /* NCContentPresenter.swift in Sources */,
  3512. F72FD3B9297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */,
  3513. );
  3514. runOnlyForDeploymentPostprocessing = 0;
  3515. };
  3516. F77B0DEF1D118A16002130FE /* Sources */ = {
  3517. isa = PBXSourcesBuildPhase;
  3518. buildActionMask = 2147483647;
  3519. files = (
  3520. F30A96312A27AEBF00D7BCFE /* EnvVars.generated.swift in Sources */,
  3521. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */,
  3522. F78C6FDE296D677300C952C3 /* NCContextMenu.swift in Sources */,
  3523. F769CA172965AB7C00039397 /* NCUploadAssets.swift in Sources */,
  3524. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */,
  3525. F702F30825EE5D47008F8E80 /* NCPopupViewController.swift in Sources */,
  3526. F733598125C1C188002ABA72 /* NCAskAuthorization.swift in Sources */,
  3527. 370D26AF248A3D7A00121797 /* NCCellProtocol.swift in Sources */,
  3528. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */,
  3529. F70D87D025EE6E58008CBBBD /* NCRenameFile.swift in Sources */,
  3530. F71CD6CA2930D7B1006C95C1 /* NCApplicationHandle.swift in Sources */,
  3531. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */,
  3532. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */,
  3533. F761856B29E98543006EB3B0 /* NCIntroViewController.swift in Sources */,
  3534. F75B0ABD244C4DBB00E58DCA /* NCActionCenter.swift in Sources */,
  3535. AF935067276B84E700BD078F /* NCMenu+FloatingPanel.swift in Sources */,
  3536. F702F2CD25EE5B4F008F8E80 /* AppDelegate.swift in Sources */,
  3537. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */,
  3538. F7EE66AD2A20B226009AE765 /* UILabel+Extension.swift in Sources */,
  3539. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */,
  3540. F76D3CF12428B40E005DFA87 /* NCViewerPDFSearch.swift in Sources */,
  3541. F7245924289BB50C00474787 /* ThreadSafeDictionary.swift in Sources */,
  3542. F73F537F1E929C8500F8678D /* NCMore.swift in Sources */,
  3543. F702F2CF25EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
  3544. F72CD63A25C19EBF00F46F9A /* NCAutoUpload.swift in Sources */,
  3545. AF93471D27E2361E002537EE /* NCShareAdvancePermissionFooter.swift in Sources */,
  3546. AF1A9B6427D0CA1E00F17A9E /* UIAlertController+Extension.swift in Sources */,
  3547. F73B422C2476764F00A30FD3 /* NCNotification.swift in Sources */,
  3548. 371B5A2E23D0B04500FAFAE9 /* NCMenu.swift in Sources */,
  3549. F757CC8229E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3550. F79EDAA326B004980007D134 /* NCPlayerToolBar.swift in Sources */,
  3551. F77444F8222816D5000D5EB0 /* NCPickerViewController.swift in Sources */,
  3552. F77BB74A2899857B0090FC19 /* UINavigationController+Extension.swift in Sources */,
  3553. F72A47EC2487B06B005AD489 /* NCOperationQueue.swift in Sources */,
  3554. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */,
  3555. F70753F12542A9A200972D44 /* NCViewerMedia.swift in Sources */,
  3556. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */,
  3557. F7A60F86292D215000FCE1F2 /* NCShareAccounts.swift in Sources */,
  3558. F77910AB25DD53C700CEDB9E /* NCSettingsBundleHelper.swift in Sources */,
  3559. AF4BF61927562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */,
  3560. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */,
  3561. AFA2AC8527849604008E1EA7 /* NCActivityCommentView.swift in Sources */,
  3562. AFCE353727E4ED7B00FEA6C2 /* NCShareCells.swift in Sources */,
  3563. AF36077127BFA4E8001A243D /* ParallelWorker.swift in Sources */,
  3564. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3565. F758B460212C56A400515F55 /* NCScan.swift in Sources */,
  3566. F78ACD52219046DC0088454D /* NCSectionHeaderMenu.swift in Sources */,
  3567. F710D2022405826100A6033D /* NCViewer+Menu.swift in Sources */,
  3568. F765E9CD295C585800A09ED8 /* NCUploadScanDocument.swift in Sources */,
  3569. F77A697D250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift in Sources */,
  3570. F7BF9D822934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
  3571. AF7E504E27A2D8FF00B5E4AF /* UIBarButton+Extension.swift in Sources */,
  3572. F78A10BF29322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
  3573. F704B5E92430C0B800632F5F /* NCCreateFormUploadConflictCell.swift in Sources */,
  3574. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */,
  3575. AFCE353927E5DE0500FEA6C2 /* NCShare+Helper.swift in Sources */,
  3576. F77BB746289984CA0090FC19 /* UIViewController+Extension.swift in Sources */,
  3577. F700510522DF6A89003A3356 /* NCShare.swift in Sources */,
  3578. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */,
  3579. F785EE9D246196DF00B3F945 /* NCNetworkingE2EE.swift in Sources */,
  3580. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */,
  3581. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */,
  3582. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */,
  3583. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3584. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */,
  3585. F78ACD4A21903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift in Sources */,
  3586. F7B8CD91261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift in Sources */,
  3587. F757CC8D29E82D0500F31428 /* NCGroupfolders.swift in Sources */,
  3588. F760329F252F0F8E0015A421 /* NCTransferCell.swift in Sources */,
  3589. AF68326A27BE65A90010BF0B /* NCMenuAction.swift in Sources */,
  3590. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */,
  3591. F7A0D1352591FBC5008F8A13 /* String+Extension.swift in Sources */,
  3592. F77B0E5F1D118A16002130FE /* NCSettings.m in Sources */,
  3593. F7F9D1BB25397CE000D9BFF5 /* NCViewer.swift in Sources */,
  3594. AF730AF827834B1400B7520E /* NCShare+NCCellDelegate.swift in Sources */,
  3595. F70460522499061800BB98A7 /* NotificationCenter+MainThread.swift in Sources */,
  3596. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */,
  3597. AF817EF1274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
  3598. AF2D7C7C2742556F00ADF566 /* NCShareLinkCell.swift in Sources */,
  3599. F7E41316294A19B300839300 /* UIView+Extension.swift in Sources */,
  3600. F31F69502A2F707E00162F76 /* SwiftUIView+Extensions.swift in Sources */,
  3601. F7C30E00291BD2610017149B /* NCNetworkingE2EERename.swift in Sources */,
  3602. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */,
  3603. F74AF3A4247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */,
  3604. F7239871253D86B600257F49 /* NCEmptyDataSet.swift in Sources */,
  3605. AFCE353327E4ED1900FEA6C2 /* UIToolbar+Extension.swift in Sources */,
  3606. 8491B1CD273BBA82001C8C5B /* UIViewController+Menu.swift in Sources */,
  3607. F761856C29E98543006EB3B0 /* NCIntroCollectionViewCell.swift in Sources */,
  3608. F75DD765290ABB25002EB562 /* Intent.intentdefinition in Sources */,
  3609. F702F2F725EE5CED008F8E80 /* NCLogin.swift in Sources */,
  3610. F7E98C1627E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */,
  3611. F7F4F11227ECDC52008676F9 /* UIFont+Extension.swift in Sources */,
  3612. AF93471A27E2361E002537EE /* NCShareAdvancePermissionHeader.swift in Sources */,
  3613. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3614. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */,
  3615. F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */,
  3616. F7B6B70427C4E7FA00A7F6EB /* NCScan+CollectionView.swift in Sources */,
  3617. F7C30DF6291BC0CA0017149B /* NCNetworkingE2EEUpload.swift in Sources */,
  3618. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */,
  3619. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3620. F79EDAA526B004980007D134 /* NCPlayer.swift in Sources */,
  3621. F7C1EEA525053A9C00866ACC /* NCDataSource.swift in Sources */,
  3622. F713FF002472764100214AF6 /* UIImage+animatedGIF.m in Sources */,
  3623. AFCE353527E4ED5900FEA6C2 /* DateFormatter+Extension.swift in Sources */,
  3624. F718C24E254D507B00C5C256 /* NCViewerMediaDetailView.swift in Sources */,
  3625. F7145610296433C80038D028 /* NCDocumentCamera.swift in Sources */,
  3626. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */,
  3627. F719D9E2288D396100762E33 /* NCColorPicker.swift in Sources */,
  3628. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3629. F79B646026CA661600838ACA /* UIControl+Extension.swift in Sources */,
  3630. F7CA212D25F1333300826ABB /* NCAccountRequest.swift in Sources */,
  3631. F765F73125237E3F00391DBE /* NCRecent.swift in Sources */,
  3632. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3633. F7581D2425EFDDDF004DC699 /* NCMedia+Menu.swift in Sources */,
  3634. F738D4902756740100CD1D38 /* NCLoginNavigationController.swift in Sources */,
  3635. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
  3636. F769CA192966EA3C00039397 /* ComponentView.swift in Sources */,
  3637. AF93474C27E34120002537EE /* NCUtility+Image.swift in Sources */,
  3638. F702F30125EE5D2C008F8E80 /* NYMnemonic.m in Sources */,
  3639. AF93474E27E3F212002537EE /* NCShareNewUserAddComment.swift in Sources */,
  3640. F7C30DFD291BD0B80017149B /* NCNetworkingE2EEDelete.swift in Sources */,
  3641. F72FD3B5297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */,
  3642. AF93471227E2341B002537EE /* NCShare+Menu.swift in Sources */,
  3643. F7EFA47825ADBA500083159A /* NCViewerProviderContextMenu.swift in Sources */,
  3644. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */,
  3645. F7E8A391295DC5E0006CB2D0 /* View+Extension.swift in Sources */,
  3646. AFD33240276A02C100F5AE02 /* UIApplication+Extension.swift in Sources */,
  3647. F79B869B265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift in Sources */,
  3648. F7B7504B2397D38F004E13EC /* UIImage+Extension.swift in Sources */,
  3649. F7EFC0CD256BF8DD00461AAD /* NCUserStatus.swift in Sources */,
  3650. AF3FDCC22796ECC300710F60 /* NCTrash+CollectionView.swift in Sources */,
  3651. F70D7C3725FFBF82002B9E34 /* NCCollectionViewCommon.swift in Sources */,
  3652. F76D364628A4F8BF00214537 /* NCActivityIndicator.swift in Sources */,
  3653. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */,
  3654. F7134186259747BA00768D21 /* NCPushNotification.m in Sources */,
  3655. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */,
  3656. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */,
  3657. F75D19E325EFE09000D74598 /* NCTrash+Menu.swift in Sources */,
  3658. F7FC5EE12A1768D700D921F5 /* NCCapabilitiesView.swift in Sources */,
  3659. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */,
  3660. AF93471B27E2361E002537EE /* NCShareAdvancePermission.swift in Sources */,
  3661. F77BC3ED293E528A005F2B08 /* NCConfigServer.swift in Sources */,
  3662. F70753EB2542A99800972D44 /* NCViewerMediaPage.swift in Sources */,
  3663. F7817CF829801A3500FFBC65 /* Data+Extension.swift in Sources */,
  3664. F749B651297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
  3665. F7FAFD3A28BFA948000777FE /* NCNotification+Menu.swift in Sources */,
  3666. F74C0436253F1CDC009762AB /* NCShares.swift in Sources */,
  3667. F7AC1CB028AB94490032D99F /* Array+Extension.swift in Sources */,
  3668. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */,
  3669. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */,
  3670. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3671. F77C97392953131000FDDD09 /* NCCameraRoll.swift in Sources */,
  3672. F343A4B32A1E01FF00DDA874 /* PHAsset+Extension.swift in Sources */,
  3673. F70968A424212C4E00ED60E5 /* NCLivePhoto.swift in Sources */,
  3674. F7C30DFA291BCF790017149B /* NCNetworkingE2EECreateFolder.swift in Sources */,
  3675. F7BC288026663F85004D46C5 /* NCViewCertificateDetails.swift in Sources */,
  3676. F702F2E625EE5C86008F8E80 /* NCAudioRecorderViewController.swift in Sources */,
  3677. D5B6AA7827200C7200D49C24 /* NCActivityTableViewCell.swift in Sources */,
  3678. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */,
  3679. F7CBC31C24F78E79004D3812 /* NCSortMenu.swift in Sources */,
  3680. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */,
  3681. F749B64A297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
  3682. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */,
  3683. F7725A60251F33BB00D125E0 /* NCFiles.swift in Sources */,
  3684. F704B5E52430AA8000632F5F /* NCCreateFormUploadConflict.swift in Sources */,
  3685. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */,
  3686. F343A4BB2A1E734600DDA874 /* Optional+Extension.swift in Sources */,
  3687. F7D68FCC28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3688. F78E2D6529AF02DB0024D4F3 /* Database.swift in Sources */,
  3689. F70CEF5623E9C7E50007035B /* UIColor+Extension.swift in Sources */,
  3690. F75CA1472962F13700B01130 /* HUDView.swift in Sources */,
  3691. F7A48413297022E000BD1B49 /* ViewerQuickLook.swift in Sources */,
  3692. F77BB748289985270090FC19 /* UITabBarController+Extension.swift in Sources */,
  3693. F763D29D2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3694. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */,
  3695. F7A7FA6329265CF4000603EF /* NCManageE2EE.swift in Sources */,
  3696. F7C7B489245EBA4100D93E60 /* NCViewerQuickLook.swift in Sources */,
  3697. F758B45E212C569D00515F55 /* NCScanCell.swift in Sources */,
  3698. F7581D1A25EFDA61004DC699 /* NCLoginWeb+Menu.swift in Sources */,
  3699. F7F4F11027ECDC4A008676F9 /* UIDevice+Extension.swift in Sources */,
  3700. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
  3701. F70D8D8124A4A9BF000A5756 /* NCNetworkingProcessUpload.swift in Sources */,
  3702. F7D96FCC246ED7E200536D73 /* NCNetworkingCheckRemoteUser.swift in Sources */,
  3703. F7E4D9C422ED929B003675FD /* NCShareCommentsCell.swift in Sources */,
  3704. F717402E24F699A5000C87D5 /* NCFavorite.swift in Sources */,
  3705. AF2D7C7E2742559100ADF566 /* NCShareUserCell.swift in Sources */,
  3706. AF7E505027A2D92300B5E4AF /* NCSelectableNavigationView.swift in Sources */,
  3707. F74DE14325135B6800917068 /* NCTransfers.swift in Sources */,
  3708. AF4BF614275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
  3709. AF4BF61E27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
  3710. );
  3711. runOnlyForDeploymentPostprocessing = 0;
  3712. };
  3713. F7C9738C28F17131002C43E2 /* Sources */ = {
  3714. isa = PBXSourcesBuildPhase;
  3715. buildActionMask = 2147483647;
  3716. files = (
  3717. F78A10C129322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
  3718. F343A4BD2A1E734600DDA874 /* Optional+Extension.swift in Sources */,
  3719. F7A8D73528F17E16008BBE1C /* NCManageDatabase.swift in Sources */,
  3720. F7A8D74428F1827B008BBE1C /* ThreadSafeDictionary.swift in Sources */,
  3721. F7C9739528F17131002C43E2 /* IntentHandler.swift in Sources */,
  3722. F7A8D73D28F181D3008BBE1C /* NCUtilityFileSystem.swift in Sources */,
  3723. F7A8D74528F1828E008BBE1C /* CCUtility.m in Sources */,
  3724. F75DD767290ABB25002EB562 /* Intent.intentdefinition in Sources */,
  3725. F749B64C297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
  3726. F7A8D73F28F181EF008BBE1C /* NCGlobal.swift in Sources */,
  3727. F749B653297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
  3728. F763D29F2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3729. F7A8D74328F1826F008BBE1C /* String+Extension.swift in Sources */,
  3730. F7A8D73728F17E1E008BBE1C /* NCManageDatabase+Account.swift in Sources */,
  3731. F7817CFA29801A3500FFBC65 /* Data+Extension.swift in Sources */,
  3732. F7BF9D842934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
  3733. F7A8D73C28F181BC008BBE1C /* NCBrand.swift in Sources */,
  3734. F7A8D74228F18261008BBE1C /* NCUtility.swift in Sources */,
  3735. F7A8D73A28F17E28008BBE1C /* NCManageDatabase+Video.swift in Sources */,
  3736. F7A8D73828F17E21008BBE1C /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3737. F7A8D73928F17E25008BBE1C /* NCManageDatabase+Metadata.swift in Sources */,
  3738. F343A4B52A1E084200DDA874 /* PHAsset+Extension.swift in Sources */,
  3739. F72FD3B7297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */,
  3740. F7A8D74128F18254008BBE1C /* UIColor+Extension.swift in Sources */,
  3741. F7A8D73428F17E12008BBE1C /* NCDatabase.swift in Sources */,
  3742. F7A8D74028F18212008BBE1C /* UIImage+Extension.swift in Sources */,
  3743. F757CC8429E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3744. F78E2D6729AF02DB0024D4F3 /* Database.swift in Sources */,
  3745. F7A8D73628F17E1A008BBE1C /* NCManageDatabase+Activity.swift in Sources */,
  3746. F7A8D73E28F181E2008BBE1C /* NCUserBaseUrl.swift in Sources */,
  3747. );
  3748. runOnlyForDeploymentPostprocessing = 0;
  3749. };
  3750. /* End PBXSourcesBuildPhase section */
  3751. /* Begin PBXTargetDependency section */
  3752. 2C33C48523E2C475005F963B /* PBXTargetDependency */ = {
  3753. isa = PBXTargetDependency;
  3754. target = 2C33C47E23E2C475005F963B /* Notification Service Extension */;
  3755. targetProxy = 2C33C48423E2C475005F963B /* PBXContainerItemProxy */;
  3756. };
  3757. AF8ED1FE2757821000B8DBC4 /* PBXTargetDependency */ = {
  3758. isa = PBXTargetDependency;
  3759. target = F77B0DEB1D118A16002130FE /* Nextcloud */;
  3760. targetProxy = AF8ED1FD2757821000B8DBC4 /* PBXContainerItemProxy */;
  3761. };
  3762. C0046CE12A17B98400D87C9D /* PBXTargetDependency */ = {
  3763. isa = PBXTargetDependency;
  3764. target = F77B0DEB1D118A16002130FE /* Nextcloud */;
  3765. targetProxy = C0046CE02A17B98400D87C9D /* PBXContainerItemProxy */;
  3766. };
  3767. C04E2F252A17BB4D001BAD85 /* PBXTargetDependency */ = {
  3768. isa = PBXTargetDependency;
  3769. target = F77B0DEB1D118A16002130FE /* Nextcloud */;
  3770. targetProxy = C04E2F242A17BB4D001BAD85 /* PBXContainerItemProxy */;
  3771. };
  3772. F31F69472A2F6D4600162F76 /* PBXTargetDependency */ = {
  3773. isa = PBXTargetDependency;
  3774. target = F77B0DEB1D118A16002130FE /* Nextcloud */;
  3775. targetProxy = F31F69462A2F6D4600162F76 /* PBXContainerItemProxy */;
  3776. };
  3777. F70716EC2987F81500E72C1D /* PBXTargetDependency */ = {
  3778. isa = PBXTargetDependency;
  3779. target = F70716E22987F81400E72C1D /* File Provider Extension UI */;
  3780. targetProxy = F70716EB2987F81500E72C1D /* PBXContainerItemProxy */;
  3781. };
  3782. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */ = {
  3783. isa = PBXTargetDependency;
  3784. target = F71459B41D12E3B700CAFEEC /* Share */;
  3785. targetProxy = F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */;
  3786. };
  3787. F7346E1B28B0EF5E006CE2D2 /* PBXTargetDependency */ = {
  3788. isa = PBXTargetDependency;
  3789. target = F7346E0F28B0EF5B006CE2D2 /* Widget */;
  3790. targetProxy = F7346E1A28B0EF5E006CE2D2 /* PBXContainerItemProxy */;
  3791. };
  3792. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */ = {
  3793. isa = PBXTargetDependency;
  3794. target = F771E3CF20E2392D00AFB62D /* File Provider Extension */;
  3795. targetProxy = F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */;
  3796. };
  3797. F7C9739828F17131002C43E2 /* PBXTargetDependency */ = {
  3798. isa = PBXTargetDependency;
  3799. target = F7C9738F28F17131002C43E2 /* WidgetDashboardIntentHandler */;
  3800. targetProxy = F7C9739728F17131002C43E2 /* PBXContainerItemProxy */;
  3801. };
  3802. /* End PBXTargetDependency section */
  3803. /* Begin PBXVariantGroup section */
  3804. F70716E72987F81500E72C1D /* MainInterface.storyboard */ = {
  3805. isa = PBXVariantGroup;
  3806. children = (
  3807. F70716E82987F81500E72C1D /* Base */,
  3808. );
  3809. name = MainInterface.storyboard;
  3810. sourceTree = "<group>";
  3811. };
  3812. F72685E927C78E490019EF5E /* InfoPlist.strings */ = {
  3813. isa = PBXVariantGroup;
  3814. children = (
  3815. F72685E827C78E490019EF5E /* en */,
  3816. F7AA41B827C7CF4600494705 /* ca */,
  3817. F7AA41B927C7CF4B00494705 /* zh-Hans */,
  3818. F7AA41BA27C7CF5000494705 /* zh-Hant-TW */,
  3819. F7AA41BB27C7CF5100494705 /* cs-CZ */,
  3820. F7AA41BC27C7CF5300494705 /* da */,
  3821. F7AA41BD27C7CF5400494705 /* nl */,
  3822. F7AA41BE27C7CF5600494705 /* ja-JP */,
  3823. F7AA41BF27C7CF5700494705 /* fr */,
  3824. F7AA41C027C7CF5800494705 /* en-GB */,
  3825. F7AA41C127C7CF5900494705 /* gl */,
  3826. F7AA41C227C7CF5A00494705 /* ka-GE */,
  3827. F7AA41C327C7CF5B00494705 /* de */,
  3828. F7AA41C427C7CF5C00494705 /* hu */,
  3829. F7AA41C527C7CF5D00494705 /* is */,
  3830. F7AA41C627C7CF5E00494705 /* it */,
  3831. F7AA41C727C7CF6000494705 /* tr */,
  3832. F7AA41C827C7CF6200494705 /* es-HN */,
  3833. F7AA41C927C7CF6300494705 /* es-DO */,
  3834. F7AA41CA27C7CF6400494705 /* ko */,
  3835. F7AA41CB27C7CF6500494705 /* nb-NO */,
  3836. F7AA41CC27C7CF6600494705 /* pl */,
  3837. F7AA41CD27C7CF6700494705 /* pt-BR */,
  3838. F7AA41CE27C7CF6800494705 /* pt-PT */,
  3839. F7AA41CF27C7CF6900494705 /* ru */,
  3840. F7AA41D027C7CF6900494705 /* sk-SK */,
  3841. F7AA41D127C7CF6A00494705 /* sr */,
  3842. F7AA41D227C7CF6C00494705 /* es-CO */,
  3843. F7AA41D327C7CF6D00494705 /* es-CL */,
  3844. F7AA41D427C7CF6E00494705 /* es */,
  3845. F7AA41D527C7CF6F00494705 /* es-CR */,
  3846. F7AA41D627C7CF7100494705 /* es-GT */,
  3847. F7AA41D727C7CF7200494705 /* es-SV */,
  3848. F7AA41D827C7CF7300494705 /* es-EC */,
  3849. F7AA41D927C7CF7500494705 /* es-PR */,
  3850. F7AA41DA27C7CF7600494705 /* sv */,
  3851. F7AA41DB27C7CF7800494705 /* es-UY */,
  3852. F7AA41DC27C7CF7900494705 /* es-PE */,
  3853. F7AA41DD27C7CF7B00494705 /* es-419 */,
  3854. F7AA41DE27C7CF7D00494705 /* es-PA */,
  3855. F7AA41DF27C7CF7E00494705 /* es-PY */,
  3856. F7AA41E027C7CF8000494705 /* es-NI */,
  3857. F7AA41E127C7CF8100494705 /* es-MX */,
  3858. F79131C728AFB86E00577277 /* eu */,
  3859. );
  3860. name = InfoPlist.strings;
  3861. path = "Supporting Files";
  3862. sourceTree = "<group>";
  3863. };
  3864. F75DD769290ABB25002EB562 /* Intent.intentdefinition */ = {
  3865. isa = PBXVariantGroup;
  3866. children = (
  3867. F75DD768290ABB25002EB562 /* Base */,
  3868. F7BE7C25290AC8C9002ABB61 /* en */,
  3869. F7BE7C27290ADEFD002ABB61 /* eu */,
  3870. F7BE7C29290ADEFD002ABB61 /* ca */,
  3871. F7BE7C2B290ADEFE002ABB61 /* zh-Hans */,
  3872. F7BE7C2D290ADEFF002ABB61 /* cs-CZ */,
  3873. F7BE7C2F290ADF00002ABB61 /* zh-Hant-TW */,
  3874. F7BE7C31290ADF00002ABB61 /* nl */,
  3875. F7BE7C33290ADF01002ABB61 /* da */,
  3876. F7BE7C35290ADF03002ABB61 /* tr */,
  3877. F7BE7C37290ADF03002ABB61 /* sv */,
  3878. F7BE7C39290ADF04002ABB61 /* es-UY */,
  3879. F7BE7C3B290ADF04002ABB61 /* es-PR */,
  3880. F7BE7C3D290ADF05002ABB61 /* es-PE */,
  3881. F7BE7C3F290ADF06002ABB61 /* es-PY */,
  3882. F7BE7C41290ADF06002ABB61 /* es-PA */,
  3883. F7BE7C43290ADF06002ABB61 /* es-NI */,
  3884. F7BE7C45290ADF07002ABB61 /* es-MX */,
  3885. F7BE7C47290ADF07002ABB61 /* es-419 */,
  3886. F7BE7C49290ADF08002ABB61 /* es-HN */,
  3887. F7BE7C4B290ADF09002ABB61 /* ru */,
  3888. F7BE7C4D290ADF0A002ABB61 /* sr */,
  3889. F7BE7C4F290ADF0A002ABB61 /* sk-SK */,
  3890. F7BE7C51290ADF0B002ABB61 /* es */,
  3891. F7BE7C53290ADF0B002ABB61 /* es-CL */,
  3892. F7BE7C55290ADF0C002ABB61 /* es-CO */,
  3893. F7BE7C57290ADF0C002ABB61 /* es-CR */,
  3894. F7BE7C59290ADF0D002ABB61 /* es-DO */,
  3895. F7BE7C5B290ADF0D002ABB61 /* es-EC */,
  3896. F7BE7C5D290ADF0E002ABB61 /* es-SV */,
  3897. F7BE7C5F290ADF0E002ABB61 /* es-GT */,
  3898. F7BE7C61290ADF10002ABB61 /* en-GB */,
  3899. F7BE7C63290ADF10002ABB61 /* fr */,
  3900. F7BE7C65290ADF10002ABB61 /* gl */,
  3901. F7BE7C67290ADF11002ABB61 /* ka-GE */,
  3902. F7BE7C69290ADF11002ABB61 /* de */,
  3903. F7BE7C6B290ADF12002ABB61 /* hu */,
  3904. F7BE7C6D290ADF12002ABB61 /* is */,
  3905. F7BE7C6F290ADF13002ABB61 /* it */,
  3906. F7BE7C71290ADF13002ABB61 /* ja-JP */,
  3907. F7BE7C73290ADF14002ABB61 /* ko */,
  3908. F7BE7C75290ADF14002ABB61 /* nb-NO */,
  3909. F7BE7C77290ADF15002ABB61 /* pl */,
  3910. F7BE7C79290ADF16002ABB61 /* pt-BR */,
  3911. F7BE7C7B290ADF16002ABB61 /* pt-PT */,
  3912. );
  3913. name = Intent.intentdefinition;
  3914. sourceTree = "<group>";
  3915. };
  3916. F7E70DE91A24DE4100E1B66A /* Localizable.strings */ = {
  3917. isa = PBXVariantGroup;
  3918. children = (
  3919. F7151A811D477A4B00E6AF45 /* en */,
  3920. F7B1A7761EBB3C8000BFB6D1 /* de */,
  3921. F75B91E21ECAE17800199C96 /* fr */,
  3922. F75B91F71ECAE26300199C96 /* pt-BR */,
  3923. F75B923D1ECAE55E00199C96 /* ru */,
  3924. F7169A301EE59BB70086BD69 /* it */,
  3925. F7169A4C1EE59C640086BD69 /* tr */,
  3926. F78D6F461F0B7CB9002F9619 /* es-MX */,
  3927. F78D6F4D1F0B7CE4002F9619 /* nb-NO */,
  3928. F78D6F541F0B7D47002F9619 /* pl */,
  3929. F7DE9AB01F482FA5008DFE10 /* sv */,
  3930. F7CC04E61F5AD50D00378CEF /* es */,
  3931. F7D532461F5D4123006568B1 /* is */,
  3932. F7D5324D1F5D4137006568B1 /* nl */,
  3933. F7D532541F5D4155006568B1 /* sk-SK */,
  3934. F7D5328F1F5D443B006568B1 /* en-GB */,
  3935. F7D532A41F5D4461006568B1 /* zh-Hans */,
  3936. F77438EB1FCD694900662C46 /* ka-GE */,
  3937. F77438F21FCD69D300662C46 /* hu */,
  3938. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */,
  3939. F77439001FCD6B7F00662C46 /* sr */,
  3940. F77439071FCD6BF000662C46 /* es-CL */,
  3941. F774390E1FCD6C0C00662C46 /* es-CO */,
  3942. F77439151FCD6C4A00662C46 /* es-CR */,
  3943. F774391C1FCD6C6700662C46 /* es-DO */,
  3944. F77439231FCD6C8700662C46 /* es-EC */,
  3945. F774392A1FCD6CAA00662C46 /* es-GT */,
  3946. F77439311FCD6CC400662C46 /* es-HN */,
  3947. F77439381FCD6CDE00662C46 /* es-NI */,
  3948. F774393F1FCD6D0B00662C46 /* es-PA */,
  3949. F77439461FCD6D2300662C46 /* es-PE */,
  3950. F774394D1FCD6D3E00662C46 /* es-PR */,
  3951. F77439541FCD6D6100662C46 /* es-PY */,
  3952. F774395B1FCD6D8200662C46 /* es-SV */,
  3953. F77439621FCD6D9C00662C46 /* es-UY */,
  3954. F7BB04851FD58ACB00BBFD2A /* cs-CZ */,
  3955. F7320934201B812F008A0888 /* ko */,
  3956. F732093B201B81E4008A0888 /* es-419 */,
  3957. F70A07C8205285FB00DC1231 /* pt-PT */,
  3958. F7E45E6D21E75BF200579249 /* ja-JP */,
  3959. F753701822723D620041C76C /* gl */,
  3960. F753701922723E0D0041C76C /* ca */,
  3961. F753701A22723EC80041C76C /* da */,
  3962. F79131C628AFB86E00577277 /* eu */,
  3963. );
  3964. name = Localizable.strings;
  3965. path = "Supporting Files";
  3966. sourceTree = "<group>";
  3967. };
  3968. /* End PBXVariantGroup section */
  3969. /* Begin XCBuildConfiguration section */
  3970. 2C33C48723E2C475005F963B /* Debug */ = {
  3971. isa = XCBuildConfiguration;
  3972. buildSettings = {
  3973. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/Notification_Service_Extension.entitlements";
  3974. GCC_PREPROCESSOR_DEFINITIONS = (
  3975. "$(inherited)",
  3976. EXTENSION,
  3977. EXTENSION_NOTIFICATION_SERVICE,
  3978. );
  3979. INFOPLIST_FILE = "$(SRCROOT)/Brand/Notification_Service_Extension.plist";
  3980. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  3981. PRODUCT_NAME = "$(TARGET_NAME)";
  3982. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_NOTIFICATION_SERVICE";
  3983. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  3984. };
  3985. name = Debug;
  3986. };
  3987. 2C33C48823E2C475005F963B /* Release */ = {
  3988. isa = XCBuildConfiguration;
  3989. buildSettings = {
  3990. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/Notification_Service_Extension.entitlements";
  3991. GCC_PREPROCESSOR_DEFINITIONS = (
  3992. "$(inherited)",
  3993. EXTENSION,
  3994. EXTENSION_NOTIFICATION_SERVICE,
  3995. );
  3996. INFOPLIST_FILE = "$(SRCROOT)/Brand/Notification_Service_Extension.plist";
  3997. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  3998. PRODUCT_NAME = "$(TARGET_NAME)";
  3999. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_NOTIFICATION_SERVICE";
  4000. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  4001. };
  4002. name = Release;
  4003. };
  4004. AF8ED1FF2757821000B8DBC4 /* Debug */ = {
  4005. isa = XCBuildConfiguration;
  4006. buildSettings = {
  4007. BUNDLE_LOADER = "$(TEST_HOST)";
  4008. "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
  4009. ENABLE_HARDENED_RUNTIME = YES;
  4010. GENERATE_INFOPLIST_FILE = YES;
  4011. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  4012. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudTests;
  4013. PRODUCT_NAME = "$(TARGET_NAME)";
  4014. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  4015. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Nextcloud.app/Nextcloud";
  4016. };
  4017. name = Debug;
  4018. };
  4019. AF8ED2002757821000B8DBC4 /* Release */ = {
  4020. isa = XCBuildConfiguration;
  4021. buildSettings = {
  4022. BUNDLE_LOADER = "$(TEST_HOST)";
  4023. "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
  4024. ENABLE_HARDENED_RUNTIME = YES;
  4025. GENERATE_INFOPLIST_FILE = YES;
  4026. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  4027. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudTests;
  4028. PRODUCT_NAME = "$(TARGET_NAME)";
  4029. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  4030. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Nextcloud.app/Nextcloud";
  4031. };
  4032. name = Release;
  4033. };
  4034. C0046CE22A17B98400D87C9D /* Debug */ = {
  4035. isa = XCBuildConfiguration;
  4036. buildSettings = {
  4037. ALWAYS_SEARCH_USER_PATHS = YES;
  4038. CLANG_ANALYZER_NONNULL = YES;
  4039. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4040. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4041. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4042. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4043. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4044. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4045. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4046. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4047. CODE_SIGN_STYLE = Automatic;
  4048. CURRENT_PROJECT_VERSION = 1;
  4049. DEBUG_INFORMATION_FORMAT = dwarf;
  4050. DEVELOPMENT_TEAM = NKUJUXUJ3B;
  4051. GCC_C_LANGUAGE_STANDARD = gnu11;
  4052. GCC_DYNAMIC_NO_PIC = NO;
  4053. GCC_PREPROCESSOR_DEFINITIONS = (
  4054. "DEBUG=1",
  4055. "$(inherited)",
  4056. );
  4057. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4058. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4059. GENERATE_INFOPLIST_FILE = YES;
  4060. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  4061. MARKETING_VERSION = 1.0;
  4062. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  4063. MTL_FAST_MATH = YES;
  4064. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudUITests.NextcloudUITests;
  4065. PRODUCT_NAME = "$(TARGET_NAME)";
  4066. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  4067. SWIFT_EMIT_LOC_STRINGS = NO;
  4068. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  4069. SWIFT_VERSION = 5.0;
  4070. TARGETED_DEVICE_FAMILY = "1,2";
  4071. TEST_TARGET_NAME = Nextcloud;
  4072. };
  4073. name = Debug;
  4074. };
  4075. C0046CE32A17B98400D87C9D /* Release */ = {
  4076. isa = XCBuildConfiguration;
  4077. buildSettings = {
  4078. ALWAYS_SEARCH_USER_PATHS = YES;
  4079. CLANG_ANALYZER_NONNULL = YES;
  4080. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4081. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4082. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4083. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4084. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4085. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4086. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4087. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4088. CODE_SIGN_STYLE = Automatic;
  4089. CURRENT_PROJECT_VERSION = 1;
  4090. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4091. DEVELOPMENT_TEAM = NKUJUXUJ3B;
  4092. ENABLE_NS_ASSERTIONS = NO;
  4093. GCC_C_LANGUAGE_STANDARD = gnu11;
  4094. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4095. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4096. GENERATE_INFOPLIST_FILE = YES;
  4097. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  4098. MARKETING_VERSION = 1.0;
  4099. MTL_ENABLE_DEBUG_INFO = NO;
  4100. MTL_FAST_MATH = YES;
  4101. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudUITests.NextcloudUITests;
  4102. PRODUCT_NAME = "$(TARGET_NAME)";
  4103. SWIFT_EMIT_LOC_STRINGS = NO;
  4104. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  4105. SWIFT_VERSION = 5.0;
  4106. TARGETED_DEVICE_FAMILY = "1,2";
  4107. TEST_TARGET_NAME = Nextcloud;
  4108. VALIDATE_PRODUCT = YES;
  4109. };
  4110. name = Release;
  4111. };
  4112. C04E2F272A17BB4E001BAD85 /* Debug */ = {
  4113. isa = XCBuildConfiguration;
  4114. buildSettings = {
  4115. ALWAYS_SEARCH_USER_PATHS = YES;
  4116. BUNDLE_LOADER = "$(TEST_HOST)";
  4117. CLANG_ANALYZER_NONNULL = YES;
  4118. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4119. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4120. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4121. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4122. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4123. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4124. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4125. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4126. CODE_SIGN_STYLE = Automatic;
  4127. CURRENT_PROJECT_VERSION = 1;
  4128. DEBUG_INFORMATION_FORMAT = dwarf;
  4129. DEVELOPMENT_TEAM = NKUJUXUJ3B;
  4130. GCC_C_LANGUAGE_STANDARD = gnu11;
  4131. GCC_DYNAMIC_NO_PIC = NO;
  4132. GCC_PREPROCESSOR_DEFINITIONS = (
  4133. "DEBUG=1",
  4134. "$(inherited)",
  4135. );
  4136. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4137. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4138. GENERATE_INFOPLIST_FILE = YES;
  4139. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  4140. MARKETING_VERSION = 1.0;
  4141. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  4142. MTL_FAST_MATH = YES;
  4143. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudIntegrationTests.NextcloudIntegrationTests;
  4144. PRODUCT_NAME = "$(TARGET_NAME)";
  4145. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  4146. SWIFT_EMIT_LOC_STRINGS = NO;
  4147. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  4148. SWIFT_VERSION = 5.0;
  4149. TARGETED_DEVICE_FAMILY = "1,2";
  4150. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Nextcloud.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Nextcloud";
  4151. };
  4152. name = Debug;
  4153. };
  4154. C04E2F282A17BB4E001BAD85 /* Release */ = {
  4155. isa = XCBuildConfiguration;
  4156. buildSettings = {
  4157. ALWAYS_SEARCH_USER_PATHS = YES;
  4158. BUNDLE_LOADER = "$(TEST_HOST)";
  4159. CLANG_ANALYZER_NONNULL = YES;
  4160. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4161. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4162. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4163. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4164. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4165. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4166. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4167. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4168. CODE_SIGN_STYLE = Automatic;
  4169. CURRENT_PROJECT_VERSION = 1;
  4170. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4171. DEVELOPMENT_TEAM = NKUJUXUJ3B;
  4172. ENABLE_NS_ASSERTIONS = NO;
  4173. GCC_C_LANGUAGE_STANDARD = gnu11;
  4174. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4175. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4176. GENERATE_INFOPLIST_FILE = YES;
  4177. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  4178. MARKETING_VERSION = 1.0;
  4179. MTL_ENABLE_DEBUG_INFO = NO;
  4180. MTL_FAST_MATH = YES;
  4181. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudIntegrationTests.NextcloudIntegrationTests;
  4182. PRODUCT_NAME = "$(TARGET_NAME)";
  4183. SWIFT_EMIT_LOC_STRINGS = NO;
  4184. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  4185. SWIFT_VERSION = 5.0;
  4186. TARGETED_DEVICE_FAMILY = "1,2";
  4187. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Nextcloud.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Nextcloud";
  4188. VALIDATE_PRODUCT = YES;
  4189. };
  4190. name = Release;
  4191. };
  4192. F31F69482A2F6D4600162F76 /* Debug */ = {
  4193. isa = XCBuildConfiguration;
  4194. buildSettings = {
  4195. ALWAYS_SEARCH_USER_PATHS = NO;
  4196. BUNDLE_LOADER = "$(TEST_HOST)";
  4197. CLANG_ANALYZER_NONNULL = YES;
  4198. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4199. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4200. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4201. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4202. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4203. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4204. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4205. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4206. CODE_SIGN_STYLE = Automatic;
  4207. CURRENT_PROJECT_VERSION = 1;
  4208. DEVELOPMENT_TEAM = NKUJUXUJ3B;
  4209. GCC_C_LANGUAGE_STANDARD = gnu11;
  4210. GCC_DYNAMIC_NO_PIC = NO;
  4211. GCC_PREPROCESSOR_DEFINITIONS = (
  4212. "DEBUG=1",
  4213. "$(inherited)",
  4214. );
  4215. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4216. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4217. GENERATE_INFOPLIST_FILE = YES;
  4218. IPHONEOS_DEPLOYMENT_TARGET = 16.4;
  4219. MARKETING_VERSION = 1.0;
  4220. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  4221. MTL_FAST_MATH = YES;
  4222. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudSnapshotTests;
  4223. PRODUCT_NAME = "$(TARGET_NAME)";
  4224. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  4225. SWIFT_EMIT_LOC_STRINGS = NO;
  4226. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  4227. SWIFT_VERSION = 5.0;
  4228. TARGETED_DEVICE_FAMILY = "1,2";
  4229. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Nextcloud.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Nextcloud";
  4230. };
  4231. name = Debug;
  4232. };
  4233. F31F69492A2F6D4600162F76 /* Release */ = {
  4234. isa = XCBuildConfiguration;
  4235. buildSettings = {
  4236. ALWAYS_SEARCH_USER_PATHS = NO;
  4237. BUNDLE_LOADER = "$(TEST_HOST)";
  4238. CLANG_ANALYZER_NONNULL = YES;
  4239. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4240. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4241. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4242. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4243. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4244. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4245. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4246. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4247. CODE_SIGN_STYLE = Automatic;
  4248. CURRENT_PROJECT_VERSION = 1;
  4249. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4250. DEVELOPMENT_TEAM = NKUJUXUJ3B;
  4251. ENABLE_NS_ASSERTIONS = NO;
  4252. GCC_C_LANGUAGE_STANDARD = gnu11;
  4253. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4254. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4255. GENERATE_INFOPLIST_FILE = YES;
  4256. IPHONEOS_DEPLOYMENT_TARGET = 16.4;
  4257. MARKETING_VERSION = 1.0;
  4258. MTL_ENABLE_DEBUG_INFO = NO;
  4259. MTL_FAST_MATH = YES;
  4260. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudSnapshotTests;
  4261. PRODUCT_NAME = "$(TARGET_NAME)";
  4262. SWIFT_EMIT_LOC_STRINGS = NO;
  4263. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  4264. SWIFT_VERSION = 5.0;
  4265. TARGETED_DEVICE_FAMILY = "1,2";
  4266. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Nextcloud.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Nextcloud";
  4267. VALIDATE_PRODUCT = YES;
  4268. };
  4269. name = Release;
  4270. };
  4271. F70716EE2987F81600E72C1D /* Debug */ = {
  4272. isa = XCBuildConfiguration;
  4273. buildSettings = {
  4274. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/File_Provider_Extension_UI.entitlements";
  4275. GCC_PREPROCESSOR_DEFINITIONS = (
  4276. "$(inherited)",
  4277. EXTENSION,
  4278. EXTENSION_FILE_PROVIDER_EXTENSION_UI,
  4279. );
  4280. INFOPLIST_FILE = "$(SRCROOT)/Brand/File_Provider_Extension_UI.plist";
  4281. INFOPLIST_KEY_CFBundleDisplayName = "File Provider Extension UI";
  4282. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  4283. MTL_FAST_MATH = YES;
  4284. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension-UI";
  4285. PRODUCT_NAME = "$(TARGET_NAME)";
  4286. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION_UI";
  4287. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/File Provider Extension UI/FileProviderExtensionUI-Bridging-Header.h";
  4288. };
  4289. name = Debug;
  4290. };
  4291. F70716EF2987F81600E72C1D /* Release */ = {
  4292. isa = XCBuildConfiguration;
  4293. buildSettings = {
  4294. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/File_Provider_Extension_UI.entitlements";
  4295. GCC_PREPROCESSOR_DEFINITIONS = (
  4296. "$(inherited)",
  4297. EXTENSION,
  4298. EXTENSION_FILE_PROVIDER_EXTENSION_UI,
  4299. );
  4300. INFOPLIST_FILE = "$(SRCROOT)/Brand/File_Provider_Extension_UI.plist";
  4301. INFOPLIST_KEY_CFBundleDisplayName = "File Provider Extension UI";
  4302. MTL_ENABLE_DEBUG_INFO = NO;
  4303. MTL_FAST_MATH = YES;
  4304. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension-UI";
  4305. PRODUCT_NAME = "$(TARGET_NAME)";
  4306. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION_UI";
  4307. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/File Provider Extension UI/FileProviderExtensionUI-Bridging-Header.h";
  4308. };
  4309. name = Release;
  4310. };
  4311. F7145A261D12E3B700CAFEEC /* Debug */ = {
  4312. isa = XCBuildConfiguration;
  4313. buildSettings = {
  4314. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/Share.entitlements";
  4315. GCC_PREPROCESSOR_DEFINITIONS = (
  4316. "$(inherited)",
  4317. EXTENSION,
  4318. EXTENSION_SHARE,
  4319. );
  4320. INFOPLIST_FILE = "$(SRCROOT)/Brand/Share.plist";
  4321. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  4322. PRODUCT_NAME = "$(TARGET_NAME)";
  4323. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_SHARE";
  4324. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Share/Share-Bridging-Header.h";
  4325. };
  4326. name = Debug;
  4327. };
  4328. F7145A271D12E3B700CAFEEC /* Release */ = {
  4329. isa = XCBuildConfiguration;
  4330. buildSettings = {
  4331. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/Share.entitlements";
  4332. GCC_PREPROCESSOR_DEFINITIONS = (
  4333. "$(inherited)",
  4334. EXTENSION,
  4335. EXTENSION_SHARE,
  4336. );
  4337. INFOPLIST_FILE = "$(SRCROOT)/Brand/Share.plist";
  4338. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  4339. PRODUCT_NAME = "$(TARGET_NAME)";
  4340. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_SHARE";
  4341. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Share/Share-Bridging-Header.h";
  4342. };
  4343. name = Release;
  4344. };
  4345. F7346E1D28B0EF5E006CE2D2 /* Debug */ = {
  4346. isa = XCBuildConfiguration;
  4347. buildSettings = {
  4348. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4349. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4350. CLANG_ANALYZER_NONNULL = YES;
  4351. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4352. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4353. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/Widget.entitlements";
  4354. GCC_PREPROCESSOR_DEFINITIONS = (
  4355. "$(inherited)",
  4356. EXTENSION,
  4357. EXTENSION_WIDGET,
  4358. );
  4359. GENERATE_INFOPLIST_FILE = YES;
  4360. INFOPLIST_FILE = "$(SRCROOT)/Brand/Widget.plist";
  4361. INFOPLIST_KEY_CFBundleDisplayName = Nextcloud;
  4362. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  4363. MTL_FAST_MATH = YES;
  4364. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Widget;
  4365. PRODUCT_NAME = "$(TARGET_NAME)";
  4366. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_WIDGET";
  4367. SWIFT_EMIT_LOC_STRINGS = YES;
  4368. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Widget/Widget-Brinding-header.h";
  4369. };
  4370. name = Debug;
  4371. };
  4372. F7346E1E28B0EF5E006CE2D2 /* Release */ = {
  4373. isa = XCBuildConfiguration;
  4374. buildSettings = {
  4375. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4376. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4377. CLANG_ANALYZER_NONNULL = YES;
  4378. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4379. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4380. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/Widget.entitlements";
  4381. GCC_PREPROCESSOR_DEFINITIONS = (
  4382. "$(inherited)",
  4383. EXTENSION,
  4384. EXTENSION_WIDGET,
  4385. );
  4386. GENERATE_INFOPLIST_FILE = YES;
  4387. INFOPLIST_FILE = "$(SRCROOT)/Brand/Widget.plist";
  4388. INFOPLIST_KEY_CFBundleDisplayName = Nextcloud;
  4389. MTL_ENABLE_DEBUG_INFO = NO;
  4390. MTL_FAST_MATH = YES;
  4391. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Widget;
  4392. PRODUCT_NAME = "$(TARGET_NAME)";
  4393. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_WIDGET";
  4394. SWIFT_EMIT_LOC_STRINGS = YES;
  4395. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Widget/Widget-Brinding-header.h";
  4396. VALIDATE_PRODUCT = YES;
  4397. };
  4398. name = Release;
  4399. };
  4400. F771E3F020E2392E00AFB62D /* Debug */ = {
  4401. isa = XCBuildConfiguration;
  4402. buildSettings = {
  4403. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/File_Provider_Extension.entitlements";
  4404. GCC_PREPROCESSOR_DEFINITIONS = (
  4405. "$(inherited)",
  4406. EXTENSION,
  4407. EXTENSION_FILE_PROVIDER_EXTENSION,
  4408. );
  4409. INFOPLIST_FILE = "$(SRCROOT)/Brand/File_Provider_Extension.plist";
  4410. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  4411. PRODUCT_NAME = "$(TARGET_NAME)";
  4412. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION";
  4413. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/File Provider Extension/FileProviderExtension-Bridging-Header.h";
  4414. };
  4415. name = Debug;
  4416. };
  4417. F771E3F120E2392E00AFB62D /* Release */ = {
  4418. isa = XCBuildConfiguration;
  4419. buildSettings = {
  4420. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/File_Provider_Extension.entitlements";
  4421. GCC_PREPROCESSOR_DEFINITIONS = (
  4422. "$(inherited)",
  4423. EXTENSION,
  4424. EXTENSION_FILE_PROVIDER_EXTENSION,
  4425. );
  4426. INFOPLIST_FILE = "$(SRCROOT)/Brand/File_Provider_Extension.plist";
  4427. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  4428. PRODUCT_NAME = "$(TARGET_NAME)";
  4429. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION";
  4430. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/File Provider Extension/FileProviderExtension-Bridging-Header.h";
  4431. };
  4432. name = Release;
  4433. };
  4434. F77B0F9B1D118A16002130FE /* Debug */ = {
  4435. isa = XCBuildConfiguration;
  4436. buildSettings = {
  4437. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4438. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4439. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/iOSClient.entitlements";
  4440. INFOPLIST_FILE = "$(SRCROOT)/Brand/iOSClient.plist";
  4441. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4442. PRODUCT_NAME = "$(TARGET_NAME)";
  4443. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  4444. };
  4445. name = Debug;
  4446. };
  4447. F77B0F9C1D118A16002130FE /* Release */ = {
  4448. isa = XCBuildConfiguration;
  4449. buildSettings = {
  4450. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4451. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4452. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/iOSClient.entitlements";
  4453. INFOPLIST_FILE = "$(SRCROOT)/Brand/iOSClient.plist";
  4454. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4455. PRODUCT_NAME = "$(TARGET_NAME)";
  4456. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  4457. };
  4458. name = Release;
  4459. };
  4460. F7C9739B28F17132002C43E2 /* Debug */ = {
  4461. isa = XCBuildConfiguration;
  4462. buildSettings = {
  4463. CLANG_ANALYZER_NONNULL = YES;
  4464. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4465. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4466. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4467. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4468. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4469. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4470. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4471. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand//WidgetDashboardIntentHandler.entitlements";
  4472. DEBUG_INFORMATION_FORMAT = dwarf;
  4473. GCC_PREPROCESSOR_DEFINITIONS = (
  4474. "$(inherited)",
  4475. EXTENSION,
  4476. EXTENSION_WIDGETDASHBOARDINTENTHANDLER,
  4477. );
  4478. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4479. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4480. GENERATE_INFOPLIST_FILE = YES;
  4481. INFOPLIST_FILE = "$(SRCROOT)/Brand/WidgetDashboardIntentHandler.plist";
  4482. INFOPLIST_KEY_CFBundleDisplayName = WidgetDashboardIntentHandler;
  4483. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  4484. MTL_FAST_MATH = YES;
  4485. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.WidgetDashboardIntentHandler;
  4486. PRODUCT_NAME = "$(TARGET_NAME)";
  4487. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_WIDGETDASHBOARDINTENTHANDLER";
  4488. SWIFT_EMIT_LOC_STRINGS = YES;
  4489. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/WidgetDashboardIntentHandler/WidgetDashboardIntentHandler-Brinding-header.h";
  4490. };
  4491. name = Debug;
  4492. };
  4493. F7C9739C28F17132002C43E2 /* Release */ = {
  4494. isa = XCBuildConfiguration;
  4495. buildSettings = {
  4496. CLANG_ANALYZER_NONNULL = YES;
  4497. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4498. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4499. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4500. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4501. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4502. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4503. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4504. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand//WidgetDashboardIntentHandler.entitlements";
  4505. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4506. ENABLE_NS_ASSERTIONS = NO;
  4507. GCC_PREPROCESSOR_DEFINITIONS = (
  4508. "$(inherited)",
  4509. EXTENSION,
  4510. EXTENSION_WIDGETDASHBOARDINTENTHANDLER,
  4511. );
  4512. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4513. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4514. GENERATE_INFOPLIST_FILE = YES;
  4515. INFOPLIST_FILE = "$(SRCROOT)/Brand/WidgetDashboardIntentHandler.plist";
  4516. INFOPLIST_KEY_CFBundleDisplayName = WidgetDashboardIntentHandler;
  4517. MTL_ENABLE_DEBUG_INFO = NO;
  4518. MTL_FAST_MATH = YES;
  4519. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.WidgetDashboardIntentHandler;
  4520. PRODUCT_NAME = "$(TARGET_NAME)";
  4521. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_WIDGETDASHBOARDINTENTHANDLER";
  4522. SWIFT_EMIT_LOC_STRINGS = YES;
  4523. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/WidgetDashboardIntentHandler/WidgetDashboardIntentHandler-Brinding-header.h";
  4524. VALIDATE_PRODUCT = YES;
  4525. };
  4526. name = Release;
  4527. };
  4528. F7F67BC91A24D27800EE80DA /* Debug */ = {
  4529. isa = XCBuildConfiguration;
  4530. buildSettings = {
  4531. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4532. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4533. CLANG_ENABLE_MODULES = YES;
  4534. CLANG_ENABLE_OBJC_ARC = YES;
  4535. CLANG_ENABLE_OBJC_WEAK = YES;
  4536. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4537. CLANG_WARN_BOOL_CONVERSION = YES;
  4538. CLANG_WARN_COMMA = YES;
  4539. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4540. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4541. CLANG_WARN_EMPTY_BODY = YES;
  4542. CLANG_WARN_ENUM_CONVERSION = YES;
  4543. CLANG_WARN_INFINITE_RECURSION = YES;
  4544. CLANG_WARN_INT_CONVERSION = YES;
  4545. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4546. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4547. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4548. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  4549. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4550. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4551. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4552. CLANG_WARN_UNREACHABLE_CODE = YES;
  4553. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4554. COPY_PHASE_STRIP = NO;
  4555. CURRENT_PROJECT_VERSION = 4;
  4556. DEBUG_INFORMATION_FORMAT = dwarf;
  4557. DEVELOPMENT_TEAM = NKUJUXUJ3B;
  4558. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4559. ENABLE_TESTABILITY = YES;
  4560. ENABLE_TESTING_SEARCH_PATHS = YES;
  4561. GCC_NO_COMMON_BLOCKS = YES;
  4562. GCC_OPTIMIZATION_LEVEL = 0;
  4563. GCC_PREPROCESSOR_DEFINITIONS = (
  4564. "$(inherited)",
  4565. DEBUG,
  4566. NC,
  4567. );
  4568. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4569. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  4570. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4571. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  4572. GCC_WARN_UNUSED_FUNCTION = YES;
  4573. GCC_WARN_UNUSED_VARIABLE = YES;
  4574. INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2023 Nextcloud. All rights reserved.";
  4575. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  4576. LD_RUNPATH_SEARCH_PATHS = (
  4577. "$(inherited)",
  4578. "@executable_path/Frameworks",
  4579. "@executable_path/../../Frameworks",
  4580. );
  4581. MARKETING_VERSION = 4.8.6;
  4582. ONLY_ACTIVE_ARCH = YES;
  4583. OTHER_LDFLAGS = "";
  4584. SDKROOT = iphoneos;
  4585. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) NC DEBUG";
  4586. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Brand/Nextcloud-Bridging-Header.h";
  4587. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4588. SWIFT_VERSION = 5.0;
  4589. TARGETED_DEVICE_FAMILY = "1,2";
  4590. };
  4591. name = Debug;
  4592. };
  4593. F7F67BCA1A24D27800EE80DA /* Release */ = {
  4594. isa = XCBuildConfiguration;
  4595. buildSettings = {
  4596. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4597. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4598. CLANG_ENABLE_MODULES = YES;
  4599. CLANG_ENABLE_OBJC_ARC = YES;
  4600. CLANG_ENABLE_OBJC_WEAK = YES;
  4601. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4602. CLANG_WARN_BOOL_CONVERSION = YES;
  4603. CLANG_WARN_COMMA = YES;
  4604. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4605. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4606. CLANG_WARN_EMPTY_BODY = YES;
  4607. CLANG_WARN_ENUM_CONVERSION = YES;
  4608. CLANG_WARN_INFINITE_RECURSION = YES;
  4609. CLANG_WARN_INT_CONVERSION = YES;
  4610. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4611. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4612. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4613. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  4614. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4615. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4616. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4617. CLANG_WARN_UNREACHABLE_CODE = YES;
  4618. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4619. COPY_PHASE_STRIP = NO;
  4620. CURRENT_PROJECT_VERSION = 4;
  4621. DEVELOPMENT_TEAM = NKUJUXUJ3B;
  4622. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4623. ENABLE_TESTABILITY = YES;
  4624. ENABLE_TESTING_SEARCH_PATHS = YES;
  4625. GCC_NO_COMMON_BLOCKS = YES;
  4626. GCC_PREPROCESSOR_DEFINITIONS = (
  4627. "$(inherited)",
  4628. NC,
  4629. );
  4630. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4631. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  4632. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4633. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  4634. GCC_WARN_UNUSED_FUNCTION = YES;
  4635. GCC_WARN_UNUSED_VARIABLE = YES;
  4636. INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2023 Nextcloud. All rights reserved.";
  4637. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  4638. LD_RUNPATH_SEARCH_PATHS = (
  4639. "$(inherited)",
  4640. "@executable_path/Frameworks",
  4641. "@executable_path/../../Frameworks",
  4642. );
  4643. MARKETING_VERSION = 4.8.6;
  4644. ONLY_ACTIVE_ARCH = YES;
  4645. OTHER_LDFLAGS = "";
  4646. SDKROOT = iphoneos;
  4647. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) NC";
  4648. SWIFT_COMPILATION_MODE = wholemodule;
  4649. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Brand/Nextcloud-Bridging-Header.h";
  4650. SWIFT_OPTIMIZATION_LEVEL = "-O";
  4651. SWIFT_VERSION = 5.0;
  4652. TARGETED_DEVICE_FAMILY = "1,2";
  4653. };
  4654. name = Release;
  4655. };
  4656. /* End XCBuildConfiguration section */
  4657. /* Begin XCConfigurationList section */
  4658. 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */ = {
  4659. isa = XCConfigurationList;
  4660. buildConfigurations = (
  4661. 2C33C48723E2C475005F963B /* Debug */,
  4662. 2C33C48823E2C475005F963B /* Release */,
  4663. );
  4664. defaultConfigurationIsVisible = 0;
  4665. defaultConfigurationName = Release;
  4666. };
  4667. AF8ED2012757821000B8DBC4 /* Build configuration list for PBXNativeTarget "NextcloudUnitTests" */ = {
  4668. isa = XCConfigurationList;
  4669. buildConfigurations = (
  4670. AF8ED1FF2757821000B8DBC4 /* Debug */,
  4671. AF8ED2002757821000B8DBC4 /* Release */,
  4672. );
  4673. defaultConfigurationIsVisible = 0;
  4674. defaultConfigurationName = Release;
  4675. };
  4676. C0046CE42A17B98400D87C9D /* Build configuration list for PBXNativeTarget "NextcloudUITests" */ = {
  4677. isa = XCConfigurationList;
  4678. buildConfigurations = (
  4679. C0046CE22A17B98400D87C9D /* Debug */,
  4680. C0046CE32A17B98400D87C9D /* Release */,
  4681. );
  4682. defaultConfigurationIsVisible = 0;
  4683. defaultConfigurationName = Release;
  4684. };
  4685. C04E2F262A17BB4E001BAD85 /* Build configuration list for PBXNativeTarget "NextcloudIntegrationTests" */ = {
  4686. isa = XCConfigurationList;
  4687. buildConfigurations = (
  4688. C04E2F272A17BB4E001BAD85 /* Debug */,
  4689. C04E2F282A17BB4E001BAD85 /* Release */,
  4690. );
  4691. defaultConfigurationIsVisible = 0;
  4692. defaultConfigurationName = Release;
  4693. };
  4694. F31F694A2A2F6D4600162F76 /* Build configuration list for PBXNativeTarget "NextcloudSnapshotTests" */ = {
  4695. isa = XCConfigurationList;
  4696. buildConfigurations = (
  4697. F31F69482A2F6D4600162F76 /* Debug */,
  4698. F31F69492A2F6D4600162F76 /* Release */,
  4699. );
  4700. defaultConfigurationIsVisible = 0;
  4701. defaultConfigurationName = Release;
  4702. };
  4703. F70716F02987F81600E72C1D /* Build configuration list for PBXNativeTarget "File Provider Extension UI" */ = {
  4704. isa = XCConfigurationList;
  4705. buildConfigurations = (
  4706. F70716EE2987F81600E72C1D /* Debug */,
  4707. F70716EF2987F81600E72C1D /* Release */,
  4708. );
  4709. defaultConfigurationIsVisible = 0;
  4710. defaultConfigurationName = Release;
  4711. };
  4712. F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */ = {
  4713. isa = XCConfigurationList;
  4714. buildConfigurations = (
  4715. F7145A261D12E3B700CAFEEC /* Debug */,
  4716. F7145A271D12E3B700CAFEEC /* Release */,
  4717. );
  4718. defaultConfigurationIsVisible = 0;
  4719. defaultConfigurationName = Release;
  4720. };
  4721. F7346E1F28B0EF5E006CE2D2 /* Build configuration list for PBXNativeTarget "Widget" */ = {
  4722. isa = XCConfigurationList;
  4723. buildConfigurations = (
  4724. F7346E1D28B0EF5E006CE2D2 /* Debug */,
  4725. F7346E1E28B0EF5E006CE2D2 /* Release */,
  4726. );
  4727. defaultConfigurationIsVisible = 0;
  4728. defaultConfigurationName = Release;
  4729. };
  4730. F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */ = {
  4731. isa = XCConfigurationList;
  4732. buildConfigurations = (
  4733. F771E3F020E2392E00AFB62D /* Debug */,
  4734. F771E3F120E2392E00AFB62D /* Release */,
  4735. );
  4736. defaultConfigurationIsVisible = 0;
  4737. defaultConfigurationName = Release;
  4738. };
  4739. F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */ = {
  4740. isa = XCConfigurationList;
  4741. buildConfigurations = (
  4742. F77B0F9B1D118A16002130FE /* Debug */,
  4743. F77B0F9C1D118A16002130FE /* Release */,
  4744. );
  4745. defaultConfigurationIsVisible = 0;
  4746. defaultConfigurationName = Release;
  4747. };
  4748. F7C9739A28F17132002C43E2 /* Build configuration list for PBXNativeTarget "WidgetDashboardIntentHandler" */ = {
  4749. isa = XCConfigurationList;
  4750. buildConfigurations = (
  4751. F7C9739B28F17132002C43E2 /* Debug */,
  4752. F7C9739C28F17132002C43E2 /* Release */,
  4753. );
  4754. defaultConfigurationIsVisible = 0;
  4755. defaultConfigurationName = Release;
  4756. };
  4757. F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */ = {
  4758. isa = XCConfigurationList;
  4759. buildConfigurations = (
  4760. F7F67BC91A24D27800EE80DA /* Debug */,
  4761. F7F67BCA1A24D27800EE80DA /* Release */,
  4762. );
  4763. defaultConfigurationIsVisible = 0;
  4764. defaultConfigurationName = Release;
  4765. };
  4766. /* End XCConfigurationList section */
  4767. /* Begin XCRemoteSwiftPackageReference section */
  4768. F31F694B2A2F6EFA00162F76 /* XCRemoteSwiftPackageReference "swift-snapshot-testing" */ = {
  4769. isa = XCRemoteSwiftPackageReference;
  4770. repositoryURL = "https://github.com/pointfreeco/swift-snapshot-testing.git";
  4771. requirement = {
  4772. kind = exactVersion;
  4773. version = 1.11.0;
  4774. };
  4775. };
  4776. F31F69622A2F929600162F76 /* XCRemoteSwiftPackageReference "swiftui-preview-snapshots" */ = {
  4777. isa = XCRemoteSwiftPackageReference;
  4778. repositoryURL = "https://github.com/doordash-oss/swiftui-preview-snapshots";
  4779. requirement = {
  4780. branch = main;
  4781. kind = branch;
  4782. };
  4783. };
  4784. F31F69672A2F92F000162F76 /* XCRemoteSwiftPackageReference "SnapshotTestingHEIC" */ = {
  4785. isa = XCRemoteSwiftPackageReference;
  4786. repositoryURL = "https://github.com/alexey1312/SnapshotTestingHEIC";
  4787. requirement = {
  4788. kind = exactVersion;
  4789. version = 1.4.0;
  4790. };
  4791. };
  4792. F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */ = {
  4793. isa = XCRemoteSwiftPackageReference;
  4794. repositoryURL = "https://github.com/firebase/firebase-ios-sdk";
  4795. requirement = {
  4796. kind = upToNextMajorVersion;
  4797. minimumVersion = 8.9.0;
  4798. };
  4799. };
  4800. F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */ = {
  4801. isa = XCRemoteSwiftPackageReference;
  4802. repositoryURL = "https://github.com/realm/realm-swift";
  4803. requirement = {
  4804. kind = upToNextMajorVersion;
  4805. minimumVersion = 10.0.0;
  4806. };
  4807. };
  4808. F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */ = {
  4809. isa = XCRemoteSwiftPackageReference;
  4810. repositoryURL = "https://github.com/JonasGessner/JGProgressHUD.git";
  4811. requirement = {
  4812. kind = upToNextMajorVersion;
  4813. minimumVersion = 2.0.0;
  4814. };
  4815. };
  4816. F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */ = {
  4817. isa = XCRemoteSwiftPackageReference;
  4818. repositoryURL = "https://github.com/malcommac/SwiftRichString";
  4819. requirement = {
  4820. kind = upToNextMajorVersion;
  4821. minimumVersion = 3.7.2;
  4822. };
  4823. };
  4824. F734B06428E75C0100E180D5 /* XCRemoteSwiftPackageReference "TLPhotoPicker" */ = {
  4825. isa = XCRemoteSwiftPackageReference;
  4826. repositoryURL = "https://github.com/marinofaggiana/TLPhotoPicker";
  4827. requirement = {
  4828. branch = master;
  4829. kind = branch;
  4830. };
  4831. };
  4832. F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */ = {
  4833. isa = XCRemoteSwiftPackageReference;
  4834. repositoryURL = "https://github.com/huri000/SwiftEntryKit";
  4835. requirement = {
  4836. kind = upToNextMajorVersion;
  4837. minimumVersion = 1.2.7;
  4838. };
  4839. };
  4840. F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */ = {
  4841. isa = XCRemoteSwiftPackageReference;
  4842. repositoryURL = "https://github.com/xmartlabs/XLForm";
  4843. requirement = {
  4844. kind = upToNextMajorVersion;
  4845. minimumVersion = 4.0.0;
  4846. };
  4847. };
  4848. F753BA91281FD8010015BFB6 /* XCRemoteSwiftPackageReference "EasyTipView" */ = {
  4849. isa = XCRemoteSwiftPackageReference;
  4850. repositoryURL = "https://github.com/marinofaggiana/EasyTipView";
  4851. requirement = {
  4852. kind = upToNextMajorVersion;
  4853. minimumVersion = 2.0.0;
  4854. };
  4855. };
  4856. F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */ = {
  4857. isa = XCRemoteSwiftPackageReference;
  4858. repositoryURL = "https://github.com/SVGKit/SVGKit.git";
  4859. requirement = {
  4860. kind = upToNextMinorVersion;
  4861. minimumVersion = 3.0.0;
  4862. };
  4863. };
  4864. F75EAED626D2552E00F4320E /* XCRemoteSwiftPackageReference "MarqueeLabel" */ = {
  4865. isa = XCRemoteSwiftPackageReference;
  4866. repositoryURL = "https://github.com/cbpowell/MarqueeLabel";
  4867. requirement = {
  4868. kind = upToNextMajorVersion;
  4869. minimumVersion = 4.3.0;
  4870. };
  4871. };
  4872. F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */ = {
  4873. isa = XCRemoteSwiftPackageReference;
  4874. repositoryURL = "https://github.com/FabrizioBrancati/Queuer";
  4875. requirement = {
  4876. kind = upToNextMajorVersion;
  4877. minimumVersion = 2.0.0;
  4878. };
  4879. };
  4880. F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */ = {
  4881. isa = XCRemoteSwiftPackageReference;
  4882. repositoryURL = "https://github.com/kishikawakatsumi/UICKeyChainStore";
  4883. requirement = {
  4884. branch = master;
  4885. kind = branch;
  4886. };
  4887. };
  4888. F76DA967277B77E90082465B /* XCRemoteSwiftPackageReference "DropDown" */ = {
  4889. isa = XCRemoteSwiftPackageReference;
  4890. repositoryURL = "https://github.com/AssistoLab/DropDown";
  4891. requirement = {
  4892. branch = master;
  4893. kind = branch;
  4894. };
  4895. };
  4896. F770768C263A8C3400A1BA94 /* XCRemoteSwiftPackageReference "FloatingPanel" */ = {
  4897. isa = XCRemoteSwiftPackageReference;
  4898. repositoryURL = "https://github.com/scenee/FloatingPanel";
  4899. requirement = {
  4900. kind = upToNextMajorVersion;
  4901. minimumVersion = 2.0.0;
  4902. };
  4903. };
  4904. F77333862927A72100466E35 /* XCRemoteSwiftPackageReference "OpenSSL" */ = {
  4905. isa = XCRemoteSwiftPackageReference;
  4906. repositoryURL = "https://github.com/krzyzanowskim/OpenSSL";
  4907. requirement = {
  4908. kind = upToNextMajorVersion;
  4909. minimumVersion = 1.0.0;
  4910. };
  4911. };
  4912. F77BC3E9293E5268005F2B08 /* XCRemoteSwiftPackageReference "swifter" */ = {
  4913. isa = XCRemoteSwiftPackageReference;
  4914. repositoryURL = "https://github.com/httpswift/swifter.git";
  4915. requirement = {
  4916. branch = stable;
  4917. kind = branch;
  4918. };
  4919. };
  4920. F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */ = {
  4921. isa = XCRemoteSwiftPackageReference;
  4922. repositoryURL = "https://github.com/nextcloud/NextcloudKit";
  4923. requirement = {
  4924. kind = exactVersion;
  4925. version = 2.7.0;
  4926. };
  4927. };
  4928. F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */ = {
  4929. isa = XCRemoteSwiftPackageReference;
  4930. repositoryURL = "https://github.com/bmoliveira/MarkdownKit";
  4931. requirement = {
  4932. kind = upToNextMajorVersion;
  4933. minimumVersion = 1.7.1;
  4934. };
  4935. };
  4936. F7A1050C29E587AF00FFD92B /* XCRemoteSwiftPackageReference "TagListView" */ = {
  4937. isa = XCRemoteSwiftPackageReference;
  4938. repositoryURL = "https://github.com/ElaWorkshop/TagListView";
  4939. requirement = {
  4940. kind = upToNextMajorVersion;
  4941. minimumVersion = 1.0.0;
  4942. };
  4943. };
  4944. F7BB7E4527A18C56009B9F29 /* XCRemoteSwiftPackageReference "Parchment" */ = {
  4945. isa = XCRemoteSwiftPackageReference;
  4946. repositoryURL = "https://github.com/rechsteiner/Parchment";
  4947. requirement = {
  4948. branch = main;
  4949. kind = branch;
  4950. };
  4951. };
  4952. F7D56B182972405400FA46C4 /* XCRemoteSwiftPackageReference "Mantis" */ = {
  4953. isa = XCRemoteSwiftPackageReference;
  4954. repositoryURL = "https://github.com/marinofaggiana/Mantis";
  4955. requirement = {
  4956. kind = exactVersion;
  4957. version = 1.0.0;
  4958. };
  4959. };
  4960. F7ED547A25EEA65400956C55 /* XCRemoteSwiftPackageReference "QRCodeReader" */ = {
  4961. isa = XCRemoteSwiftPackageReference;
  4962. repositoryURL = "https://github.com/yannickl/QRCodeReader.swift";
  4963. requirement = {
  4964. kind = upToNextMajorVersion;
  4965. minimumVersion = 10.1.1;
  4966. };
  4967. };
  4968. /* End XCRemoteSwiftPackageReference section */
  4969. /* Begin XCSwiftPackageProductDependency section */
  4970. C03BA1492A17BC57002C8BA3 /* XLForm */ = {
  4971. isa = XCSwiftPackageProductDependency;
  4972. package = F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */;
  4973. productName = XLForm;
  4974. };
  4975. C03BA14B2A17BC60002C8BA3 /* UICKeyChainStore */ = {
  4976. isa = XCSwiftPackageProductDependency;
  4977. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  4978. productName = UICKeyChainStore;
  4979. };
  4980. C04E2F182A17BA78001BAD85 /* XLForm */ = {
  4981. isa = XCSwiftPackageProductDependency;
  4982. package = F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */;
  4983. productName = XLForm;
  4984. };
  4985. C04E2F1A2A17BAAB001BAD85 /* UICKeyChainStore */ = {
  4986. isa = XCSwiftPackageProductDependency;
  4987. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  4988. productName = UICKeyChainStore;
  4989. };
  4990. F30A96332A2DFCD000D7BCFE /* Realm */ = {
  4991. isa = XCSwiftPackageProductDependency;
  4992. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  4993. productName = Realm;
  4994. };
  4995. F30A96352A2DFCD000D7BCFE /* RealmSwift */ = {
  4996. isa = XCSwiftPackageProductDependency;
  4997. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  4998. productName = RealmSwift;
  4999. };
  5000. F30A96372A2DFD2900D7BCFE /* FirebaseDatabase */ = {
  5001. isa = XCSwiftPackageProductDependency;
  5002. package = F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */;
  5003. productName = FirebaseDatabase;
  5004. };
  5005. F30A96392A2DFD3100D7BCFE /* JGProgressHUD */ = {
  5006. isa = XCSwiftPackageProductDependency;
  5007. package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
  5008. productName = JGProgressHUD;
  5009. };
  5010. F30A963B2A2DFD3600D7BCFE /* SVGKit */ = {
  5011. isa = XCSwiftPackageProductDependency;
  5012. package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
  5013. productName = SVGKit;
  5014. };
  5015. F314F1102A30C11200BC7FAB /* PreviewSnapshots */ = {
  5016. isa = XCSwiftPackageProductDependency;
  5017. package = F31F69622A2F929600162F76 /* XCRemoteSwiftPackageReference "swiftui-preview-snapshots" */;
  5018. productName = PreviewSnapshots;
  5019. };
  5020. F31F694C2A2F6EFB00162F76 /* SnapshotTesting */ = {
  5021. isa = XCSwiftPackageProductDependency;
  5022. package = F31F694B2A2F6EFA00162F76 /* XCRemoteSwiftPackageReference "swift-snapshot-testing" */;
  5023. productName = SnapshotTesting;
  5024. };
  5025. F31F69512A2F89C400162F76 /* SVGKit */ = {
  5026. isa = XCSwiftPackageProductDependency;
  5027. package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
  5028. productName = SVGKit;
  5029. };
  5030. F31F69532A2F89C400162F76 /* SwiftRichString */ = {
  5031. isa = XCSwiftPackageProductDependency;
  5032. package = F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */;
  5033. productName = SwiftRichString;
  5034. };
  5035. F31F69552A2F89C400162F76 /* FirebaseDatabase */ = {
  5036. isa = XCSwiftPackageProductDependency;
  5037. package = F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */;
  5038. productName = FirebaseDatabase;
  5039. };
  5040. F31F69572A2F89C400162F76 /* XLForm */ = {
  5041. isa = XCSwiftPackageProductDependency;
  5042. package = F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */;
  5043. productName = XLForm;
  5044. };
  5045. F31F69592A2F89C400162F76 /* UICKeyChainStore */ = {
  5046. isa = XCSwiftPackageProductDependency;
  5047. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  5048. productName = UICKeyChainStore;
  5049. };
  5050. F31F695B2A2F89C400162F76 /* Realm */ = {
  5051. isa = XCSwiftPackageProductDependency;
  5052. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  5053. productName = Realm;
  5054. };
  5055. F31F695D2A2F89C400162F76 /* JGProgressHUD */ = {
  5056. isa = XCSwiftPackageProductDependency;
  5057. package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
  5058. productName = JGProgressHUD;
  5059. };
  5060. F31F69632A2F929600162F76 /* PreviewSnapshots */ = {
  5061. isa = XCSwiftPackageProductDependency;
  5062. package = F31F69622A2F929600162F76 /* XCRemoteSwiftPackageReference "swiftui-preview-snapshots" */;
  5063. productName = PreviewSnapshots;
  5064. };
  5065. F31F69652A2F929600162F76 /* PreviewSnapshotsTesting */ = {
  5066. isa = XCSwiftPackageProductDependency;
  5067. package = F31F69622A2F929600162F76 /* XCRemoteSwiftPackageReference "swiftui-preview-snapshots" */;
  5068. productName = PreviewSnapshotsTesting;
  5069. };
  5070. F31F69682A2F92F000162F76 /* SnapshotTestingHEIC */ = {
  5071. isa = XCSwiftPackageProductDependency;
  5072. package = F31F69672A2F92F000162F76 /* XCRemoteSwiftPackageReference "SnapshotTestingHEIC" */;
  5073. productName = SnapshotTestingHEIC;
  5074. };
  5075. F70716F829881CFA00E72C1D /* UICKeyChainStore */ = {
  5076. isa = XCSwiftPackageProductDependency;
  5077. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  5078. productName = UICKeyChainStore;
  5079. };
  5080. F70821D729E59E6D001CA2D7 /* TagListView */ = {
  5081. isa = XCSwiftPackageProductDependency;
  5082. package = F7A1050C29E587AF00FFD92B /* XCRemoteSwiftPackageReference "TagListView" */;
  5083. productName = TagListView;
  5084. };
  5085. F70B86742642CE3B00ED5349 /* FirebaseCrashlytics */ = {
  5086. isa = XCSwiftPackageProductDependency;
  5087. package = F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */;
  5088. productName = FirebaseCrashlytics;
  5089. };
  5090. F710FC79277B7D0000AA9FBF /* Realm */ = {
  5091. isa = XCSwiftPackageProductDependency;
  5092. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  5093. productName = Realm;
  5094. };
  5095. F710FC7B277B7D0000AA9FBF /* RealmSwift */ = {
  5096. isa = XCSwiftPackageProductDependency;
  5097. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  5098. productName = RealmSwift;
  5099. };
  5100. F710FC7F277B7D2700AA9FBF /* RealmSwift */ = {
  5101. isa = XCSwiftPackageProductDependency;
  5102. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  5103. productName = RealmSwift;
  5104. };
  5105. F710FC83277B7D3500AA9FBF /* RealmSwift */ = {
  5106. isa = XCSwiftPackageProductDependency;
  5107. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  5108. productName = RealmSwift;
  5109. };
  5110. F710FC87277B7D3F00AA9FBF /* RealmSwift */ = {
  5111. isa = XCSwiftPackageProductDependency;
  5112. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  5113. productName = RealmSwift;
  5114. };
  5115. F72AD70C28C24B93006CB92D /* NextcloudKit */ = {
  5116. isa = XCSwiftPackageProductDependency;
  5117. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  5118. productName = NextcloudKit;
  5119. };
  5120. F72AD70E28C24BA1006CB92D /* NextcloudKit */ = {
  5121. isa = XCSwiftPackageProductDependency;
  5122. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  5123. productName = NextcloudKit;
  5124. };
  5125. F72AD71028C24BBB006CB92D /* NextcloudKit */ = {
  5126. isa = XCSwiftPackageProductDependency;
  5127. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  5128. productName = NextcloudKit;
  5129. };
  5130. F72AD71228C24BCC006CB92D /* NextcloudKit */ = {
  5131. isa = XCSwiftPackageProductDependency;
  5132. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  5133. productName = NextcloudKit;
  5134. };
  5135. F72CD01127A7E92400E59476 /* JGProgressHUD */ = {
  5136. isa = XCSwiftPackageProductDependency;
  5137. package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
  5138. productName = JGProgressHUD;
  5139. };
  5140. F72D7EB6263B1207000B3DFC /* MarkdownKit */ = {
  5141. isa = XCSwiftPackageProductDependency;
  5142. package = F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */;
  5143. productName = MarkdownKit;
  5144. };
  5145. F72DA9B325F53E4E00B87DB1 /* SwiftRichString */ = {
  5146. isa = XCSwiftPackageProductDependency;
  5147. package = F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */;
  5148. productName = SwiftRichString;
  5149. };
  5150. F7346E2428B0FEFA006CE2D2 /* UICKeyChainStore */ = {
  5151. isa = XCSwiftPackageProductDependency;
  5152. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  5153. productName = UICKeyChainStore;
  5154. };
  5155. F7346E2828B0FFF2006CE2D2 /* RealmSwift */ = {
  5156. isa = XCSwiftPackageProductDependency;
  5157. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  5158. productName = RealmSwift;
  5159. };
  5160. F734B06528E75C0100E180D5 /* TLPhotoPicker */ = {
  5161. isa = XCSwiftPackageProductDependency;
  5162. package = F734B06428E75C0100E180D5 /* XCRemoteSwiftPackageReference "TLPhotoPicker" */;
  5163. productName = TLPhotoPicker;
  5164. };
  5165. F73ADD1B265546890069EA0D /* SwiftEntryKit */ = {
  5166. isa = XCSwiftPackageProductDependency;
  5167. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  5168. productName = SwiftEntryKit;
  5169. };
  5170. F73ADD2026554F8E0069EA0D /* SwiftEntryKit */ = {
  5171. isa = XCSwiftPackageProductDependency;
  5172. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  5173. productName = SwiftEntryKit;
  5174. };
  5175. F73ADD2326554FE20069EA0D /* SwiftEntryKit */ = {
  5176. isa = XCSwiftPackageProductDependency;
  5177. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  5178. productName = SwiftEntryKit;
  5179. };
  5180. F7490E7129882BB4009DCE94 /* RealmSwift */ = {
  5181. isa = XCSwiftPackageProductDependency;
  5182. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  5183. productName = RealmSwift;
  5184. };
  5185. F7490E8829882CC8009DCE94 /* SwiftEntryKit */ = {
  5186. isa = XCSwiftPackageProductDependency;
  5187. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  5188. productName = SwiftEntryKit;
  5189. };
  5190. F7490E8A29882CE4009DCE94 /* NextcloudKit */ = {
  5191. isa = XCSwiftPackageProductDependency;
  5192. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  5193. productName = NextcloudKit;
  5194. };
  5195. F74E771F277A2EF40013B958 /* XLForm */ = {
  5196. isa = XCSwiftPackageProductDependency;
  5197. package = F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */;
  5198. productName = XLForm;
  5199. };
  5200. F753BA92281FD8020015BFB6 /* EasyTipView */ = {
  5201. isa = XCSwiftPackageProductDependency;
  5202. package = F753BA91281FD8010015BFB6 /* XCRemoteSwiftPackageReference "EasyTipView" */;
  5203. productName = EasyTipView;
  5204. };
  5205. F758A01127A7F03E0069468B /* JGProgressHUD */ = {
  5206. isa = XCSwiftPackageProductDependency;
  5207. package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
  5208. productName = JGProgressHUD;
  5209. };
  5210. F75EAED726D2552E00F4320E /* MarqueeLabel */ = {
  5211. isa = XCSwiftPackageProductDependency;
  5212. package = F75EAED626D2552E00F4320E /* XCRemoteSwiftPackageReference "MarqueeLabel" */;
  5213. productName = MarqueeLabel;
  5214. };
  5215. F76DA962277B760E0082465B /* Queuer */ = {
  5216. isa = XCSwiftPackageProductDependency;
  5217. package = F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */;
  5218. productName = Queuer;
  5219. };
  5220. F76DA965277B76F30082465B /* UICKeyChainStore */ = {
  5221. isa = XCSwiftPackageProductDependency;
  5222. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  5223. productName = UICKeyChainStore;
  5224. };
  5225. F76DA968277B77EA0082465B /* DropDown */ = {
  5226. isa = XCSwiftPackageProductDependency;
  5227. package = F76DA967277B77E90082465B /* XCRemoteSwiftPackageReference "DropDown" */;
  5228. productName = DropDown;
  5229. };
  5230. F770768D263A8C3400A1BA94 /* FloatingPanel */ = {
  5231. isa = XCSwiftPackageProductDependency;
  5232. package = F770768C263A8C3400A1BA94 /* XCRemoteSwiftPackageReference "FloatingPanel" */;
  5233. productName = FloatingPanel;
  5234. };
  5235. F77333872927A72100466E35 /* OpenSSL */ = {
  5236. isa = XCSwiftPackageProductDependency;
  5237. package = F77333862927A72100466E35 /* XCRemoteSwiftPackageReference "OpenSSL" */;
  5238. productName = OpenSSL;
  5239. };
  5240. F77BC3EA293E5268005F2B08 /* Swifter */ = {
  5241. isa = XCSwiftPackageProductDependency;
  5242. package = F77BC3E9293E5268005F2B08 /* XCRemoteSwiftPackageReference "swifter" */;
  5243. productName = Swifter;
  5244. };
  5245. F783030C28B4C59A00B84583 /* SwiftEntryKit */ = {
  5246. isa = XCSwiftPackageProductDependency;
  5247. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  5248. productName = SwiftEntryKit;
  5249. };
  5250. F783034328B5142B00B84583 /* NextcloudKit */ = {
  5251. isa = XCSwiftPackageProductDependency;
  5252. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  5253. productName = NextcloudKit;
  5254. };
  5255. F787AC08298BCB4A0001BB00 /* SVGKitSwift */ = {
  5256. isa = XCSwiftPackageProductDependency;
  5257. package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
  5258. productName = SVGKitSwift;
  5259. };
  5260. F787AC0A298BCB540001BB00 /* SVGKitSwift */ = {
  5261. isa = XCSwiftPackageProductDependency;
  5262. package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
  5263. productName = SVGKitSwift;
  5264. };
  5265. F788ECC6263AAAFA00ADC67F /* MarkdownKit */ = {
  5266. isa = XCSwiftPackageProductDependency;
  5267. package = F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */;
  5268. productName = MarkdownKit;
  5269. };
  5270. F7A1050D29E587AF00FFD92B /* TagListView */ = {
  5271. isa = XCSwiftPackageProductDependency;
  5272. package = F7A1050C29E587AF00FFD92B /* XCRemoteSwiftPackageReference "TagListView" */;
  5273. productName = TagListView;
  5274. };
  5275. F7A8D72328F1771B008BBE1C /* NextcloudKit */ = {
  5276. isa = XCSwiftPackageProductDependency;
  5277. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  5278. productName = NextcloudKit;
  5279. };
  5280. F7A8D72728F17728008BBE1C /* RealmSwift */ = {
  5281. isa = XCSwiftPackageProductDependency;
  5282. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  5283. productName = RealmSwift;
  5284. };
  5285. F7A8D72D28F17764008BBE1C /* UICKeyChainStore */ = {
  5286. isa = XCSwiftPackageProductDependency;
  5287. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  5288. productName = UICKeyChainStore;
  5289. };
  5290. F7BB7E4627A18C56009B9F29 /* Parchment */ = {
  5291. isa = XCSwiftPackageProductDependency;
  5292. package = F7BB7E4527A18C56009B9F29 /* XCRemoteSwiftPackageReference "Parchment" */;
  5293. productName = Parchment;
  5294. };
  5295. F7D56B192972405500FA46C4 /* Mantis */ = {
  5296. isa = XCSwiftPackageProductDependency;
  5297. package = F7D56B182972405400FA46C4 /* XCRemoteSwiftPackageReference "Mantis" */;
  5298. productName = Mantis;
  5299. };
  5300. F7EBCDCE277B81FF00A4EF67 /* UICKeyChainStore */ = {
  5301. isa = XCSwiftPackageProductDependency;
  5302. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  5303. productName = UICKeyChainStore;
  5304. };
  5305. F7EBCDD0277B820D00A4EF67 /* UICKeyChainStore */ = {
  5306. isa = XCSwiftPackageProductDependency;
  5307. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  5308. productName = UICKeyChainStore;
  5309. };
  5310. F7EBCDD2277B821700A4EF67 /* UICKeyChainStore */ = {
  5311. isa = XCSwiftPackageProductDependency;
  5312. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  5313. productName = UICKeyChainStore;
  5314. };
  5315. F7ED547B25EEA65400956C55 /* QRCodeReader */ = {
  5316. isa = XCSwiftPackageProductDependency;
  5317. package = F7ED547A25EEA65400956C55 /* XCRemoteSwiftPackageReference "QRCodeReader" */;
  5318. productName = QRCodeReader;
  5319. };
  5320. /* End XCSwiftPackageProductDependency section */
  5321. };
  5322. rootObject = F7F67BA01A24D27800EE80DA /* Project object */;
  5323. }