123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 54;
- objects = {
- /* Begin PBXBuildFile section */
- 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
- 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
- 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
- 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C33C48123E2C475005F963B /* NotificationService.swift */; };
- 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- 2CB7D1CA23E2EDCB00376EF9 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
- 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3704EB2923D5A58400455C5B /* NCMenu.storyboard */; };
- 370D26AF248A3D7A00121797 /* NCCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */; };
- 371B5A2E23D0B04500FAFAE9 /* NCMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 371B5A2D23D0B04500FAFAE9 /* NCMenu.swift */; };
- 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */; };
- 8491B1CD273BBA82001C8C5B /* UIViewController+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8491B1CC273BBA82001C8C5B /* UIViewController+Menu.swift */; };
- AF1A9B6427D0CA1E00F17A9E /* UIAlertController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF1A9B6327D0CA1E00F17A9E /* UIAlertController+Extension.swift */; };
- AF1A9B6527D0CC0500F17A9E /* UIAlertController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF1A9B6327D0CA1E00F17A9E /* UIAlertController+Extension.swift */; };
- AF22B206277B4E4C00DAB0CC /* NCCreateFormUploadConflict.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */; };
- AF22B207277B4E4C00DAB0CC /* NCCreateFormUploadConflict.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */; };
- AF22B208277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */; };
- AF22B209277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */; };
- AF22B20C277C6F4D00DAB0CC /* NCShareCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF22B20B277C6F4D00DAB0CC /* NCShareCell.swift */; };
- AF22B217277D196700DAB0CC /* NCShareExtension+DataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF22B215277D196700DAB0CC /* NCShareExtension+DataSource.swift */; };
- AF22B218277D196700DAB0CC /* NCShareExtension+Files.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF22B216277D196700DAB0CC /* NCShareExtension+Files.swift */; };
- AF2D7C7C2742556F00ADF566 /* NCShareLinkCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF2D7C7B2742556F00ADF566 /* NCShareLinkCell.swift */; };
- AF2D7C7E2742559100ADF566 /* NCShareUserCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF2D7C7D2742559100ADF566 /* NCShareUserCell.swift */; };
- AF36077127BFA4E8001A243D /* ParallelWorker.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF36077027BFA4E8001A243D /* ParallelWorker.swift */; };
- AF36077627BFB019001A243D /* ParallelWorkerTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF36077527BFB019001A243D /* ParallelWorkerTest.swift */; };
- AF3F909A28213BEA0048A93E /* UserAgentTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF3F909928213BEA0048A93E /* UserAgentTests.swift */; };
- AF3FDCC22796ECC300710F60 /* NCTrash+CollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF3FDCC12796ECC300710F60 /* NCTrash+CollectionView.swift */; };
- AF3FDCC32796F3FB00710F60 /* NCTrashListCell+NCTrashCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4821903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift */; };
- AF4BF614275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
- AF4BF615275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
- AF4BF616275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
- AF4BF617275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
- AF4BF61927562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
- AF4BF61A27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
- AF4BF61B27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
- AF4BF61C27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
- AF4BF61E27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
- AF4BF61F27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
- AF4BF62027562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
- AF4BF62127562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
- AF56C1DC2784856200D8BAE2 /* NCActivityCommentView.xib in Resources */ = {isa = PBXBuildFile; fileRef = AF56C1DB2784856200D8BAE2 /* NCActivityCommentView.xib */; };
- AF68326A27BE65A90010BF0B /* NCMenuAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF68326927BE65A90010BF0B /* NCMenuAction.swift */; };
- AF70C14D27F3484D00E13DF2 /* SharePermissionTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF70C14C27F3484D00E13DF2 /* SharePermissionTest.swift */; };
- AF730AF827834B1400B7520E /* NCShare+NCCellDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF730AF727834B1400B7520E /* NCShare+NCCellDelegate.swift */; };
- AF730AFA27843E4C00B7520E /* NCShareExtension+NCDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF730AF927843E4C00B7520E /* NCShareExtension+NCDelegate.swift */; };
- AF7E504E27A2D8FF00B5E4AF /* UIBarButton+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF7E504D27A2D8FF00B5E4AF /* UIBarButton+Extension.swift */; };
- AF7E505027A2D92300B5E4AF /* NCSelectableNavigationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF7E504F27A2D92300B5E4AF /* NCSelectableNavigationView.swift */; };
- AF817EF1274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
- AF817EF2274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
- AF817EF3274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
- AF817EF4274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
- AF8ED1FC2757821000B8DBC4 /* NextcloudTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF8ED1FB2757821000B8DBC4 /* NextcloudTests.swift */; };
- AF8ED2032757822700B8DBC4 /* NCGlobalTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF8ED2022757822700B8DBC4 /* NCGlobalTests.swift */; };
- AF93471227E2341B002537EE /* NCShare+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93471127E2341B002537EE /* NCShare+Menu.swift */; };
- AF93471927E2361E002537EE /* NCShareAdvancePermissionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = AF93471427E2361E002537EE /* NCShareAdvancePermissionFooter.xib */; };
- AF93471A27E2361E002537EE /* NCShareAdvancePermissionHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93471527E2361E002537EE /* NCShareAdvancePermissionHeader.swift */; };
- AF93471B27E2361E002537EE /* NCShareAdvancePermission.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93471627E2361E002537EE /* NCShareAdvancePermission.swift */; };
- AF93471C27E2361E002537EE /* NCShareAdvancePermissionHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = AF93471727E2361E002537EE /* NCShareAdvancePermissionHeader.xib */; };
- AF93471D27E2361E002537EE /* NCShareAdvancePermissionFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93471827E2361E002537EE /* NCShareAdvancePermissionFooter.swift */; };
- AF93474C27E34120002537EE /* NCUtility+Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93474B27E34120002537EE /* NCUtility+Image.swift */; };
- AF93474E27E3F212002537EE /* NCShareNewUserAddComment.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93474D27E3F211002537EE /* NCShareNewUserAddComment.swift */; };
- AF935067276B84E700BD078F /* NCMenu+FloatingPanel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF935066276B84E700BD078F /* NCMenu+FloatingPanel.swift */; };
- AFA2AC8527849604008E1EA7 /* NCActivityCommentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFA2AC8427849604008E1EA7 /* NCActivityCommentView.swift */; };
- AFCE353327E4ED1900FEA6C2 /* UIToolbar+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCE353227E4ED1900FEA6C2 /* UIToolbar+Extension.swift */; };
- AFCE353527E4ED5900FEA6C2 /* DateFormatter+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCE353427E4ED5900FEA6C2 /* DateFormatter+Extension.swift */; };
- AFCE353727E4ED7B00FEA6C2 /* NCShareCells.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCE353627E4ED7B00FEA6C2 /* NCShareCells.swift */; };
- AFCE353927E5DE0500FEA6C2 /* NCShare+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCE353827E5DE0400FEA6C2 /* NCShare+Helper.swift */; };
- AFD33240276A02C100F5AE02 /* UIApplication+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFD3323F276A02C000F5AE02 /* UIApplication+Extension.swift */; };
- D575039F27146F93008DC9DC /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
- D5B6AA7827200C7200D49C24 /* NCActivityTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5B6AA7727200C7200D49C24 /* NCActivityTableViewCell.swift */; };
- F700222C1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
- F700222D1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
- F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F700510022DF63AC003A3356 /* NCShare.storyboard */; };
- F700510522DF6A89003A3356 /* NCShare.swift in Sources */ = {isa = PBXBuildFile; fileRef = F700510422DF6A89003A3356 /* NCShare.swift */; };
- F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */; };
- F702F2CD25EE5B4F008F8E80 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CC25EE5B4F008F8E80 /* AppDelegate.swift */; };
- F702F2CF25EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
- F702F2D025EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
- F702F2D125EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
- F702F2D225EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
- F702F2E625EE5C86008F8E80 /* NCAudioRecorderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2E425EE5C82008F8E80 /* NCAudioRecorderViewController.swift */; };
- F702F2E725EE5C86008F8E80 /* NCAudioRecorderViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F702F2E525EE5C82008F8E80 /* NCAudioRecorderViewController.storyboard */; };
- F702F2F125EE5CDB008F8E80 /* NCLogin.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F702F2F025EE5CDA008F8E80 /* NCLogin.storyboard */; };
- F702F2F725EE5CED008F8E80 /* NCLogin.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2F625EE5CEC008F8E80 /* NCLogin.swift */; };
- F702F30125EE5D2C008F8E80 /* NYMnemonic.m in Sources */ = {isa = PBXBuildFile; fileRef = F702F2FD25EE5D2C008F8E80 /* NYMnemonic.m */; };
- F702F30225EE5D2C008F8E80 /* english.txt in Resources */ = {isa = PBXBuildFile; fileRef = F702F2FF25EE5D2C008F8E80 /* english.txt */; };
- F702F30825EE5D47008F8E80 /* NCPopupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */; };
- F70460522499061800BB98A7 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
- F70460532499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
- F70460542499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
- F704B5E32430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */; };
- F704B5E52430AA8000632F5F /* NCCreateFormUploadConflict.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */; };
- F704B5E72430C06700632F5F /* NCCreateFormUploadConflictCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */; };
- F704B5E92430C0B800632F5F /* NCCreateFormUploadConflictCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */; };
- F70753EB2542A99800972D44 /* NCViewerMediaPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70753EA2542A99800972D44 /* NCViewerMediaPage.swift */; };
- F70753F12542A9A200972D44 /* NCViewerMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70753F02542A9A200972D44 /* NCViewerMedia.swift */; };
- F70753F72542A9C000972D44 /* NCViewerMediaPage.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70753F62542A9C000972D44 /* NCViewerMediaPage.storyboard */; };
- F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */ = {isa = PBXBuildFile; fileRef = F707C26421A2DC5200F6181E /* NCStoreReview.swift */; };
- F70968A424212C4E00ED60E5 /* NCLivePhoto.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */; };
- F70A58BE24D0349500DED00D /* NCCapabilitiesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70A58BD24D0349500DED00D /* NCCapabilitiesViewController.swift */; };
- F70A58C024D0545100DED00D /* NCCapabilitiesViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70A58BF24D0545100DED00D /* NCCapabilitiesViewController.storyboard */; };
- F70B86752642CE3B00ED5349 /* FirebaseCrashlytics in Frameworks */ = {isa = PBXBuildFile; productRef = F70B86742642CE3B00ED5349 /* FirebaseCrashlytics */; };
- F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
- F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
- F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
- F70CEF5623E9C7E50007035B /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
- F70D7C3725FFBF82002B9E34 /* NCCollectionViewCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D7C3525FFBF81002B9E34 /* NCCollectionViewCommon.swift */; };
- F70D87CF25EE6E58008CBBBD /* NCRenameFile.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */; };
- F70D87D025EE6E58008CBBBD /* NCRenameFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */; };
- F70D8D8124A4A9BF000A5756 /* NCNetworkingProcessUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D8D8024A4A9BF000A5756 /* NCNetworkingProcessUpload.swift */; };
- F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F42405770F00A6033D /* NCViewerPDF.swift */; };
- F710D2022405826100A6033D /* NCViewer+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D2012405826100A6033D /* NCViewer+Menu.swift */; };
- F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */; };
- F710FC7A277B7D0000AA9FBF /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC79277B7D0000AA9FBF /* Realm */; };
- F710FC7C277B7D0000AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC7B277B7D0000AA9FBF /* RealmSwift */; };
- F710FC7E277B7D2600AA9FBF /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC7D277B7D2600AA9FBF /* Realm */; };
- F710FC80277B7D2700AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC7F277B7D2700AA9FBF /* RealmSwift */; };
- F710FC82277B7D3500AA9FBF /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC81277B7D3500AA9FBF /* Realm */; };
- F710FC84277B7D3500AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC83277B7D3500AA9FBF /* RealmSwift */; };
- F710FC86277B7D3F00AA9FBF /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC85277B7D3F00AA9FBF /* Realm */; };
- F710FC88277B7D3F00AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC87277B7D3F00AA9FBF /* RealmSwift */; };
- F711D63128F44801003F43C8 /* IntentHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9739428F17131002C43E2 /* IntentHandler.swift */; };
- F7134186259747BA00768D21 /* NCPushNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = F7134185259747BA00768D21 /* NCPushNotification.m */; };
- F713FF002472764100214AF6 /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */; };
- F7145610296433C80038D028 /* NCDocumentCamera.swift in Sources */ = {isa = PBXBuildFile; fileRef = F714560F296433C80038D028 /* NCDocumentCamera.swift */; };
- F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
- F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
- F714803B262EBE3900693E51 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F714803A262EBE3900693E51 /* MainInterface.storyboard */; };
- F7148041262EBE4000693E51 /* NCShareExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7148040262EBE4000693E51 /* NCShareExtension.swift */; };
- F714804F262ED4F900693E51 /* NCGridCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4521903D010088454D /* NCGridCell.xib */; };
- F7148054262ED51000693E51 /* NCListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4321903CF20088454D /* NCListCell.xib */; };
- F7148059262ED52200693E51 /* NCSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */; };
- F714805E262ED52900693E51 /* NCSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD53219047D40088454D /* NCSectionFooter.xib */; };
- F7148063262ED66200693E51 /* NCEmptyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7239876253D86D300257F49 /* NCEmptyView.xib */; };
- F716B75F26F09DF600D37EFC /* NCKTVHTTPCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = F716B75E26F09DF600D37EFC /* NCKTVHTTPCache.swift */; };
- F717402D24F699A5000C87D5 /* NCFavorite.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F717402B24F699A5000C87D5 /* NCFavorite.storyboard */; };
- F717402E24F699A5000C87D5 /* NCFavorite.swift in Sources */ = {isa = PBXBuildFile; fileRef = F717402C24F699A5000C87D5 /* NCFavorite.swift */; };
- F718C24E254D507B00C5C256 /* NCViewerMediaDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F718C24D254D507B00C5C256 /* NCViewerMediaDetailView.swift */; };
- F719D9E0288D37A300762E33 /* NCColorPicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F719D9DF288D37A300762E33 /* NCColorPicker.storyboard */; };
- F719D9E2288D396100762E33 /* NCColorPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = F719D9E1288D396100762E33 /* NCColorPicker.swift */; };
- F71CD6CA2930D7B1006C95C1 /* NCApplicationHandle.swift in Sources */ = {isa = PBXBuildFile; fileRef = F71CD6C92930D7B1006C95C1 /* NCApplicationHandle.swift */; };
- F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7226EDB1EE4089300EBECB1 /* Main.storyboard */; };
- F723985C253C95CE00257F49 /* NCViewerRichdocument.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F723985B253C95CE00257F49 /* NCViewerRichdocument.storyboard */; };
- F7239871253D86B600257F49 /* NCEmptyDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7239870253D86B600257F49 /* NCEmptyDataSet.swift */; };
- F7239877253D86D300257F49 /* NCEmptyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7239876253D86D300257F49 /* NCEmptyView.xib */; };
- F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */; };
- F7245924289BB50C00474787 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
- F7245925289BB59100474787 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
- F7245926289BB59300474787 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
- F7245927289BB59300474787 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
- F72685E727C78E490019EF5E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72685E927C78E490019EF5E /* InfoPlist.strings */; };
- F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */; };
- F72A17D828B221E300F3F159 /* DashboardWidgetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72A17D728B221E300F3F159 /* DashboardWidgetView.swift */; };
- F72A47EC2487B06B005AD489 /* NCOperationQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72A47EB2487B06B005AD489 /* NCOperationQueue.swift */; };
- F72AD70D28C24B93006CB92D /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72AD70C28C24B93006CB92D /* NextcloudKit */; };
- F72AD70F28C24BA1006CB92D /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72AD70E28C24BA1006CB92D /* NextcloudKit */; };
- F72AD71128C24BBB006CB92D /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72AD71028C24BBB006CB92D /* NextcloudKit */; };
- F72AD71328C24BCC006CB92D /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72AD71228C24BCC006CB92D /* NextcloudKit */; };
- F72CD01227A7E92400E59476 /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F72CD01127A7E92400E59476 /* JGProgressHUD */; };
- F72CD63A25C19EBF00F46F9A /* NCAutoUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72CD63925C19EBF00F46F9A /* NCAutoUpload.swift */; };
- F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
- F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */; };
- F72D7EB7263B1207000B3DFC /* MarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72D7EB6263B1207000B3DFC /* MarkdownKit */; };
- F72DA9B425F53E4E00B87DB1 /* SwiftRichString in Frameworks */ = {isa = PBXBuildFile; productRef = F72DA9B325F53E4E00B87DB1 /* SwiftRichString */; };
- F72EA95228B7BA2A00C88F0C /* DashboardWidgetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72EA95128B7BA2A00C88F0C /* DashboardWidgetProvider.swift */; };
- F72EA95428B7BABA00C88F0C /* FilesWidgetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72EA95328B7BABA00C88F0C /* FilesWidgetProvider.swift */; };
- F72EA95828B7BC4F00C88F0C /* FilesData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72EA95728B7BC4F00C88F0C /* FilesData.swift */; };
- F72EA95A28B7BD0D00C88F0C /* FilesWidgetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72EA95928B7BD0D00C88F0C /* FilesWidgetView.swift */; };
- F732D23327CF8AED000B0F1B /* NCPlayerToolBar.xib in Resources */ = {isa = PBXBuildFile; fileRef = F732D23227CF8AED000B0F1B /* NCPlayerToolBar.xib */; };
- F733598125C1C188002ABA72 /* NCAskAuthorization.swift in Sources */ = {isa = PBXBuildFile; fileRef = F733598025C1C188002ABA72 /* NCAskAuthorization.swift */; };
- F7346E1228B0EF5B006CE2D2 /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7346E1128B0EF5B006CE2D2 /* WidgetKit.framework */; };
- F7346E1328B0EF5B006CE2D2 /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F79BCEEA270B49C800B5B71F /* SwiftUI.framework */; };
- F7346E1628B0EF5C006CE2D2 /* Widget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7346E1528B0EF5C006CE2D2 /* Widget.swift */; };
- F7346E1C28B0EF5E006CE2D2 /* Widget.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F7346E1028B0EF5B006CE2D2 /* Widget.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- F7346E2328B0FEBA006CE2D2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7346E2228B0FEBA006CE2D2 /* Assets.xcassets */; };
- F7346E2528B0FEFA006CE2D2 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7346E2428B0FEFA006CE2D2 /* UICKeyChainStore */; };
- F7346E2728B0FFF2006CE2D2 /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F7346E2628B0FFF2006CE2D2 /* Realm */; };
- F7346E2928B0FFF2006CE2D2 /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F7346E2828B0FFF2006CE2D2 /* RealmSwift */; };
- F734B06628E75C0100E180D5 /* TLPhotoPicker in Frameworks */ = {isa = PBXBuildFile; productRef = F734B06528E75C0100E180D5 /* TLPhotoPicker */; };
- F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */; };
- F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7381EDA218218C9000B1560 /* NCOffline.swift */; };
- F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7381EDE218218C9000B1560 /* NCOffline.storyboard */; };
- F738D4902756740100CD1D38 /* NCLoginNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F738D48F2756740100CD1D38 /* NCLoginNavigationController.swift */; };
- F73ADD1C265546890069EA0D /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F73ADD1B265546890069EA0D /* SwiftEntryKit */; };
- F73ADD2126554F8E0069EA0D /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F73ADD2026554F8E0069EA0D /* SwiftEntryKit */; };
- F73ADD2226554FD10069EA0D /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
- F73ADD2426554FE20069EA0D /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F73ADD2326554FE20069EA0D /* SwiftEntryKit */; };
- F73B422B2476764F00A30FD3 /* NCNotification.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73B42292476764F00A30FD3 /* NCNotification.storyboard */; };
- F73B422C2476764F00A30FD3 /* NCNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73B422A2476764F00A30FD3 /* NCNotification.swift */; };
- F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */; };
- F73D11FA253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73D11F9253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard */; };
- F73D5E47246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
- F73D5E48246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
- F73D5E49246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
- F73D5E4A246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
- F73F537F1E929C8500F8678D /* NCMore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73F537E1E929C8500F8678D /* NCMore.swift */; };
- F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
- F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
- F7434B3820E2400600417916 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
- F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F745B252222D88AE00346520 /* NCLoginQRCode.swift */; };
- F746EC4E273906B80052598D /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
- F746EC4F273906B90052598D /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
- F746EC50273906BA0052598D /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
- F746EC51273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
- F746EC52273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
- F746EC53273906C50052598D /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
- F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */; };
- F749B64A297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
- F749B64B297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
- F749B64C297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
- F749B64D297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
- F749B64E297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
- F749B64F297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
- F749B651297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
- F749B652297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
- F749B653297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
- F749B654297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
- F749B655297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
- F749B656297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
- F749C10B23C4A5340027D966 /* NCIntroCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */; };
- F749C10C23C4A5340027D966 /* NCIntroViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749C10823C4A5330027D966 /* NCIntroViewController.swift */; };
- F749C10D23C4A5340027D966 /* NCIntro.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F749C10923C4A5330027D966 /* NCIntro.storyboard */; };
- F749C10E23C4A5340027D966 /* NCIntroCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */; };
- F749E4E91DC1FB38009BA2FD /* Share.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- F74AF3A4247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
- F74AF3A5247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
- F74AF3A6247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
- F74C0436253F1CDC009762AB /* NCShares.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74C0434253F1CDC009762AB /* NCShares.swift */; };
- F74C0437253F1CDC009762AB /* NCShares.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F74C0435253F1CDC009762AB /* NCShares.storyboard */; };
- F74DE14325135B6800917068 /* NCTransfers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74DE14125135B6800917068 /* NCTransfers.swift */; };
- F74DE14425135B6800917068 /* NCTransfers.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F74DE14225135B6800917068 /* NCTransfers.storyboard */; };
- F74E7720277A2EF40013B958 /* XLForm in Frameworks */ = {isa = PBXBuildFile; productRef = F74E771F277A2EF40013B958 /* XLForm */; };
- F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7501C302212E57400FB1415 /* NCMedia.storyboard */; };
- F7501C332212E57500FB1415 /* NCMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7501C312212E57400FB1415 /* NCMedia.swift */; };
- F753BA93281FD8020015BFB6 /* EasyTipView in Frameworks */ = {isa = PBXBuildFile; productRef = F753BA92281FD8020015BFB6 /* EasyTipView */; };
- F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F755BD9A20594AC7008C5FBB /* NCService.swift */; };
- F7581D1A25EFDA61004DC699 /* NCLoginWeb+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7581D1925EFDA60004DC699 /* NCLoginWeb+Menu.swift */; };
- F7581D2425EFDDDF004DC699 /* NCMedia+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7581D2325EFDDDF004DC699 /* NCMedia+Menu.swift */; };
- F758A01227A7F03E0069468B /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F758A01127A7F03E0069468B /* JGProgressHUD */; };
- F758B45A212C564000515F55 /* NCScan.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F758B457212C564000515F55 /* NCScan.storyboard */; };
- F758B45E212C569D00515F55 /* NCScanCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45D212C569C00515F55 /* NCScanCell.swift */; };
- F758B460212C56A400515F55 /* NCScan.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45F212C56A400515F55 /* NCScan.swift */; };
- F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
- F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
- F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */; };
- F75B0ABD244C4DBB00E58DCA /* NCFunctionCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75B0ABC244C4DBB00E58DCA /* NCFunctionCenter.swift */; };
- F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */; };
- F75CA1472962F13700B01130 /* HUDView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75CA1462962F13700B01130 /* HUDView.swift */; };
- F75CA1482962F13700B01130 /* HUDView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75CA1462962F13700B01130 /* HUDView.swift */; };
- F75D19E325EFE09000D74598 /* NCTrash+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75D19E225EFE09000D74598 /* NCTrash+Menu.swift */; };
- F75DD765290ABB25002EB562 /* Intent.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = F75DD769290ABB25002EB562 /* Intent.intentdefinition */; };
- F75DD766290ABB25002EB562 /* Intent.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = F75DD769290ABB25002EB562 /* Intent.intentdefinition */; };
- F75DD767290ABB25002EB562 /* Intent.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = F75DD769290ABB25002EB562 /* Intent.intentdefinition */; };
- F75E57BD25BF0EC1002B72C2 /* SVGKit in Frameworks */ = {isa = PBXBuildFile; productRef = F75E57BC25BF0EC1002B72C2 /* SVGKit */; };
- F75E57BF25BF0EC8002B72C2 /* SVGKit in Frameworks */ = {isa = PBXBuildFile; productRef = F75E57BE25BF0EC8002B72C2 /* SVGKit */; };
- F75E57C125BF0ECD002B72C2 /* SVGKit in Frameworks */ = {isa = PBXBuildFile; productRef = F75E57C025BF0ECD002B72C2 /* SVGKit */; };
- F75E57C325BF0ED2002B72C2 /* SVGKit in Frameworks */ = {isa = PBXBuildFile; productRef = F75E57C225BF0ED2002B72C2 /* SVGKit */; };
- F75EAED826D2552E00F4320E /* MarqueeLabel in Frameworks */ = {isa = PBXBuildFile; productRef = F75EAED726D2552E00F4320E /* MarqueeLabel */; };
- F760329F252F0F8E0015A421 /* NCTransferCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760329D252F0F8E0015A421 /* NCTransferCell.swift */; };
- F76032A0252F0F8E0015A421 /* NCTransferCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760329E252F0F8E0015A421 /* NCTransferCell.xib */; };
- F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */; };
- F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */; };
- F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
- F765E9CD295C585800A09ED8 /* NCUploadScanDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765E9CC295C585800A09ED8 /* NCUploadScanDocument.swift */; };
- F765F73125237E3F00391DBE /* NCRecent.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765F72F25237E3F00391DBE /* NCRecent.swift */; };
- F765F73225237E3F00391DBE /* NCRecent.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F765F73025237E3F00391DBE /* NCRecent.storyboard */; };
- F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EC22C901F5007ED366 /* FileProviderDomain.swift */; };
- F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EF22C90433007ED366 /* FileProviderUtility.swift */; };
- F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */; };
- F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453B22E9CFFF000A798A /* NCShareUserCell.xib */; };
- F769454022E9F077000A798A /* NCSharePaging.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769453F22E9F077000A798A /* NCSharePaging.swift */; };
- F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454522E9F1B0000A798A /* NCShareCommon.swift */; };
- F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454722E9F20D000A798A /* NCShareNetworking.swift */; };
- F769CA172965AB7C00039397 /* NCUploadAssets.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769CA162965AB7C00039397 /* NCUploadAssets.swift */; };
- F769CA192966EA3C00039397 /* ComponentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769CA182966EA3C00039397 /* ComponentView.swift */; };
- F769CA1A2966EA3C00039397 /* ComponentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769CA182966EA3C00039397 /* ComponentView.swift */; };
- F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
- F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
- F76C26A62850D3A500E42BDF /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
- F76D364628A4F8BF00214537 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */; };
- F76D364728A4F8BF00214537 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */; };
- F76D364828A4F8BF00214537 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */; };
- F76D364928A4F8BF00214537 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */; };
- F76D3CF12428B40E005DFA87 /* NCViewerPDFSearch.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */; };
- F76D3CF32428B94E005DFA87 /* NCViewerPDFSearchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */; };
- F76D3CF52428D0C1005DFA87 /* NCViewerPDF.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */; };
- F76DA93F277B75870082465B /* KTVCocoaHTTPServer.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70B867E2642CF5400ED5349 /* KTVCocoaHTTPServer.xcframework */; };
- F76DA940277B75870082465B /* KTVCocoaHTTPServer.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F70B867E2642CF5400ED5349 /* KTVCocoaHTTPServer.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- F76DA941277B75870082465B /* KTVHTTPCache.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86792642CF5300ED5349 /* KTVHTTPCache.xcframework */; };
- F76DA942277B75870082465B /* KTVHTTPCache.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86792642CF5300ED5349 /* KTVHTTPCache.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- F76DA95B277B75A90082465B /* TOPasscodeViewController.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */; };
- F76DA95C277B75A90082465B /* TOPasscodeViewController.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- F76DA963277B760E0082465B /* Queuer in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA962277B760E0082465B /* Queuer */; };
- F76DA966277B76F30082465B /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA965277B76F30082465B /* UICKeyChainStore */; };
- F76DA969277B77EA0082465B /* DropDown in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA968277B77EA0082465B /* DropDown */; };
- F76DEE9728F808AF0041B1C9 /* LockscreenData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76DEE9428F808AF0041B1C9 /* LockscreenData.swift */; };
- F76DEE9828F808AF0041B1C9 /* LockscreenWidgetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76DEE9528F808AF0041B1C9 /* LockscreenWidgetProvider.swift */; };
- F76DEE9928F808AF0041B1C9 /* LockscreenWidgetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76DEE9628F808AF0041B1C9 /* LockscreenWidgetView.swift */; };
- F7707687263A853700A1BA94 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
- F7707689263A896A00A1BA94 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
- F770768A263A8A2500A1BA94 /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
- F770768E263A8C3400A1BA94 /* FloatingPanel in Frameworks */ = {isa = PBXBuildFile; productRef = F770768D263A8C3400A1BA94 /* FloatingPanel */; };
- F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */; };
- F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D420E2392D00AFB62D /* FileProviderItem.swift */; };
- F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */; };
- F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F220E239A600AFB62D /* FileProviderData.swift */; };
- F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */; };
- F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */; };
- F7725A60251F33BB00D125E0 /* NCFiles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7725A5E251F33BB00D125E0 /* NCFiles.swift */; };
- F7725A61251F33BB00D125E0 /* NCFiles.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7725A5F251F33BB00D125E0 /* NCFiles.storyboard */; };
- F77333882927A72100466E35 /* OpenSSL in Frameworks */ = {isa = PBXBuildFile; productRef = F77333872927A72100466E35 /* OpenSSL */; };
- F774264A22EB4D0000B23912 /* NCSearchUserDropDownCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F774264822EB4D0000B23912 /* NCSearchUserDropDownCell.xib */; };
- F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F322281649000D5EB0 /* NCGridMediaCell.swift */; };
- F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F77444F422281649000D5EB0 /* NCGridMediaCell.xib */; };
- F77444F8222816D5000D5EB0 /* NCPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F7222816D5000D5EB0 /* NCPickerViewController.swift */; };
- F77910A525DD517B00CEDB9E /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F77910A425DD517B00CEDB9E /* Settings.bundle */; };
- F77910AB25DD53C700CEDB9E /* NCSettingsBundleHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77910AA25DD53C700CEDB9E /* NCSettingsBundleHelper.swift */; };
- F77A697D250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77A697C250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift */; };
- F77B0DF51D118A16002130FE /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
- F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */; };
- F77B0E5F1D118A16002130FE /* NCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* NCSettings.m */; };
- F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
- F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
- F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */ = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */; };
- F77B0F631D118A16002130FE /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
- F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
- F77BB746289984CA0090FC19 /* UIViewController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77BB745289984CA0090FC19 /* UIViewController+Extension.swift */; };
- F77BB748289985270090FC19 /* UITabBarController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77BB747289985270090FC19 /* UITabBarController+Extension.swift */; };
- F77BB74A2899857B0090FC19 /* UINavigationController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77BB7492899857B0090FC19 /* UINavigationController+Extension.swift */; };
- F77BC3EB293E5268005F2B08 /* Swifter in Frameworks */ = {isa = PBXBuildFile; productRef = F77BC3EA293E5268005F2B08 /* Swifter */; };
- F77BC3ED293E528A005F2B08 /* NCConfigServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77BC3EC293E528A005F2B08 /* NCConfigServer.swift */; };
- F77C97392953131000FDDD09 /* NCCameraRoll.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77C97382953131000FDDD09 /* NCCameraRoll.swift */; };
- F77C973A2953143A00FDDD09 /* NCCameraRoll.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77C97382953131000FDDD09 /* NCCameraRoll.swift */; };
- F77ED59128C9CE9D00E24ED0 /* ToolbarData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77ED59028C9CE9D00E24ED0 /* ToolbarData.swift */; };
- F77ED59328C9CEA000E24ED0 /* ToolbarWidgetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77ED59228C9CEA000E24ED0 /* ToolbarWidgetProvider.swift */; };
- F77ED59528C9CEA400E24ED0 /* ToolbarWidgetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77ED59428C9CEA300E24ED0 /* ToolbarWidgetView.swift */; };
- F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
- F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
- F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
- F782FDC424E6933900666099 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
- F78302F628B4C3C500B84583 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
- F78302F728B4C3C900B84583 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
- F78302F828B4C3E100B84583 /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
- F78302F928B4C3E600B84583 /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
- F78302FA28B4C3EA00B84583 /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
- F78302FB28B4C3EE00B84583 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
- F78302FC28B4C3F300B84583 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
- F78302FD28B4C42B00B84583 /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
- F78302FE28B4C44700B84583 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
- F78302FF28B4C45000B84583 /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
- F783030028B4C45800B84583 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
- F783030128B4C49700B84583 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
- F783030228B4C4B800B84583 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
- F783030328B4C4DD00B84583 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
- F783030528B4C50600B84583 /* SVGKit in Frameworks */ = {isa = PBXBuildFile; productRef = F783030428B4C50600B84583 /* SVGKit */; };
- F783030628B4C51E00B84583 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
- F783030728B4C52800B84583 /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
- F783030D28B4C59A00B84583 /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F783030C28B4C59A00B84583 /* SwiftEntryKit */; };
- F783031228B4C8EC00B84583 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
- F783034428B5142B00B84583 /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F783034328B5142B00B84583 /* NextcloudKit */; };
- F785EE9D246196DF00B3F945 /* NCNetworkingE2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */; };
- F785EE9E2461A09900B3F945 /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
- F785EEA42461A4A600B3F945 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
- F785EEA52461A4CF00B3F945 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
- F785EEA62461A4FB00B3F945 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
- F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F787704E22E7019900F287A9 /* NCShareLinkCell.xib */; };
- F788ECC7263AAAFA00ADC67F /* MarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = F788ECC6263AAAFA00ADC67F /* MarkdownKit */; };
- F78A10BF29322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
- F78A10C029322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
- F78A10C129322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
- F78A10C229322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
- F78A10C329322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
- F78A10C429322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
- F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */; };
- F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */; };
- F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD3F21903CC20088454D /* NCGridCell.swift */; };
- F78ACD4221903CE00088454D /* NCListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4121903CE00088454D /* NCListCell.swift */; };
- F78ACD4421903CF20088454D /* NCListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4321903CF20088454D /* NCListCell.xib */; };
- F78ACD4621903D010088454D /* NCGridCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4521903D010088454D /* NCGridCell.xib */; };
- F78ACD4A21903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4821903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift */; };
- F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4921903F850088454D /* NCTrashListCell.xib */; };
- F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */; };
- F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD53219047D40088454D /* NCSectionFooter.xib */; };
- F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */; };
- F78C6FDE296D677300C952C3 /* NCContextMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78C6FDD296D677300C952C3 /* NCContextMenu.swift */; };
- F78D0C7F2912722100D706AB /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F78D0C7E2912722100D706AB /* JGProgressHUD */; };
- F78D0C812912723900D706AB /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F78D0C802912723900D706AB /* JGProgressHUD */; };
- F78D0C832912724F00D706AB /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F78D0C822912724F00D706AB /* JGProgressHUD */; };
- F78D0C852912725600D706AB /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F78D0C842912725600D706AB /* JGProgressHUD */; };
- F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78F74332163757000C2ADAD /* NCTrash.storyboard */; };
- F78F74362163781100C2ADAD /* NCTrash.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78F74352163781100C2ADAD /* NCTrash.swift */; };
- F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */; };
- F793E59D28B761E7005E4B02 /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
- F793E59E28B763C2005E4B02 /* NCAskAuthorization.swift in Sources */ = {isa = PBXBuildFile; fileRef = F733598025C1C188002ABA72 /* NCAskAuthorization.swift */; };
- F793E59F28B764F6005E4B02 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
- F793E5A028B7651B005E4B02 /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
- F793E5A128B76541005E4B02 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
- F793E5A228B76580005E4B02 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
- F798F0E225880608000DAFFD /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
- F798F0E725880609000DAFFD /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
- F798F0EC2588060A000DAFFD /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
- F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */; };
- F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79A65C52191D95E00FF6DCC /* NCSelect.swift */; };
- F79B646026CA661600838ACA /* UIControl+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extension.swift */; };
- F79B646126CA661600838ACA /* UIControl+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extension.swift */; };
- F79B646226CA661600838ACA /* UIControl+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extension.swift */; };
- F79B646326CA661600838ACA /* UIControl+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extension.swift */; };
- F79B869B265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B869A265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift */; };
- F79EC77F26316193004E59D6 /* NCRenameFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */; };
- F79EC784263161BA004E59D6 /* NCRenameFile.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */; };
- F79EC78926316AC4004E59D6 /* NCPopupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */; };
- F79EDAA326B004980007D134 /* NCPlayerToolBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79EDA9F26B004980007D134 /* NCPlayerToolBar.swift */; };
- F79EDAA526B004980007D134 /* NCPlayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79EDAA126B004980007D134 /* NCPlayer.swift */; };
- F7A0D1352591FBC5008F8A13 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
- F7A0D1362591FBC5008F8A13 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
- F7A0D1372591FBC5008F8A13 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
- F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */; };
- F7A48413297022E000BD1B49 /* ViewerQuickLook.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A48412297022E000BD1B49 /* ViewerQuickLook.swift */; };
- F7A48415297028FC00BD1B49 /* Nextcloud Hub.png in Resources */ = {isa = PBXBuildFile; fileRef = F7A48414297028FC00BD1B49 /* Nextcloud Hub.png */; };
- F7A60F86292D215000FCE1F2 /* NCTalkAccounts.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A60F84292D215000FCE1F2 /* NCTalkAccounts.swift */; };
- F7A60F87292D215000FCE1F2 /* NCTalkAccounts.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7A60F85292D215000FCE1F2 /* NCTalkAccounts.storyboard */; };
- F7A76DC8256A71CD00119AB3 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
- F7A76DCD256A71CE00119AB3 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
- F7A7FA6329265CF4000603EF /* NCManageE2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A7FA6229265CF4000603EF /* NCManageE2EE.swift */; };
- F7A8D72428F1771B008BBE1C /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F7A8D72328F1771B008BBE1C /* NextcloudKit */; };
- F7A8D72628F17728008BBE1C /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F7A8D72528F17728008BBE1C /* Realm */; };
- F7A8D72828F17728008BBE1C /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F7A8D72728F17728008BBE1C /* RealmSwift */; };
- F7A8D72A28F17733008BBE1C /* SVGKit in Frameworks */ = {isa = PBXBuildFile; productRef = F7A8D72928F17733008BBE1C /* SVGKit */; };
- F7A8D72C28F17742008BBE1C /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F7A8D72B28F17742008BBE1C /* SwiftEntryKit */; };
- F7A8D72E28F17764008BBE1C /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7A8D72D28F17764008BBE1C /* UICKeyChainStore */; };
- F7A8D73428F17E12008BBE1C /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
- F7A8D73528F17E16008BBE1C /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
- F7A8D73628F17E1A008BBE1C /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
- F7A8D73728F17E1E008BBE1C /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
- F7A8D73828F17E21008BBE1C /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
- F7A8D73928F17E25008BBE1C /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
- F7A8D73A28F17E28008BBE1C /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
- F7A8D73B28F17E2C008BBE1C /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
- F7A8D73C28F181BC008BBE1C /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
- F7A8D73D28F181D3008BBE1C /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
- F7A8D73E28F181E2008BBE1C /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
- F7A8D73F28F181EF008BBE1C /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
- F7A8D74028F18212008BBE1C /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
- F7A8D74128F18254008BBE1C /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
- F7A8D74228F18261008BBE1C /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
- F7A8D74328F1826F008BBE1C /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
- F7A8D74428F1827B008BBE1C /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
- F7A8D74528F1828E008BBE1C /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
- F7AC1CB028AB94490032D99F /* Array+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AC1CAF28AB94490032D99F /* Array+Extension.swift */; };
- F7AC934A296193050002BC0F /* Reasons to use Nextcloud.pdf in Resources */ = {isa = PBXBuildFile; fileRef = F7AC9349296193050002BC0F /* Reasons to use Nextcloud.pdf */; };
- F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */; };
- F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */; };
- F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */; };
- F7B6B70427C4E7FA00A7F6EB /* NCScan+CollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B6B70327C4E7FA00A7F6EB /* NCScan+CollectionView.swift */; };
- F7B7504B2397D38F004E13EC /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
- F7B8B83025681C3400967775 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = F7B8B82F25681C3400967775 /* GoogleService-Info.plist */; };
- F7B8CD91261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
- F7B8CD96261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
- F7B8CD9B261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
- F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
- F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
- F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
- F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
- F7BB7E4727A18C56009B9F29 /* Parchment in Frameworks */ = {isa = PBXBuildFile; productRef = F7BB7E4627A18C56009B9F29 /* Parchment */; };
- F7BC287E26663F6C004D46C5 /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
- F7BC288026663F85004D46C5 /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
- F7BD71E62636EAFC00643C34 /* NCNetworkingE2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */; };
- F7BF9D822934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
- F7BF9D832934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
- F7BF9D842934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
- F7BF9D852934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
- F7BF9D862934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
- F7BF9D872934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
- F7C1EEA525053A9C00866ACC /* NCDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C1EEA425053A9C00866ACC /* NCDataSource.swift */; };
- F7C30DF6291BC0CA0017149B /* NCNetworkingE2EEUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DF5291BC0CA0017149B /* NCNetworkingE2EEUpload.swift */; };
- F7C30DF7291BC0D30017149B /* NCNetworkingE2EEUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DF5291BC0CA0017149B /* NCNetworkingE2EEUpload.swift */; };
- F7C30DFA291BCF790017149B /* NCNetworkingE2EECreateFolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DF9291BCF790017149B /* NCNetworkingE2EECreateFolder.swift */; };
- F7C30DFB291BCF790017149B /* NCNetworkingE2EECreateFolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DF9291BCF790017149B /* NCNetworkingE2EECreateFolder.swift */; };
- F7C30DFD291BD0B80017149B /* NCNetworkingE2EEDelete.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DFC291BD0B80017149B /* NCNetworkingE2EEDelete.swift */; };
- F7C30DFE291BD0B80017149B /* NCNetworkingE2EEDelete.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DFC291BD0B80017149B /* NCNetworkingE2EEDelete.swift */; };
- F7C30E00291BD2610017149B /* NCNetworkingE2EERename.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DFF291BD2610017149B /* NCNetworkingE2EERename.swift */; };
- F7C30E01291BD2610017149B /* NCNetworkingE2EERename.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DFF291BD2610017149B /* NCNetworkingE2EERename.swift */; };
- F7C7B25028B8AD4500E7115D /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
- F7C7B25128B8B0C400E7115D /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
- F7C7B489245EBA4100D93E60 /* NCViewerQuickLook.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */; };
- F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C9555221F0C4CA0024296E /* NCActivity.storyboard */; };
- F7C9555521F0C5470024296E /* NCActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9555421F0C5470024296E /* NCActivity.swift */; };
- F7C9739228F17131002C43E2 /* Intents.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C9739128F17131002C43E2 /* Intents.framework */; };
- F7C9739528F17131002C43E2 /* IntentHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9739428F17131002C43E2 /* IntentHandler.swift */; };
- F7C9739928F17131002C43E2 /* WidgetDashboardIntentHandler.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F7C9739028F17131002C43E2 /* WidgetDashboardIntentHandler.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- F7CA212D25F1333300826ABB /* NCAccountRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CA212B25F1333200826ABB /* NCAccountRequest.swift */; };
- F7CA212E25F1333300826ABB /* NCAccountRequest.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */; };
- F7CB689A2541676B0050EC94 /* NCMore.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CB68992541676B0050EC94 /* NCMore.storyboard */; };
- F7CB68A0254169530050EC94 /* NCSettings.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CB689F254169530050EC94 /* NCSettings.storyboard */; };
- F7CBC31C24F78E79004D3812 /* NCSortMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CBC31B24F78E79004D3812 /* NCSortMenu.swift */; };
- F7D0F33E264144FC0097D4A3 /* Background.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7D0F33D264144FC0097D4A3 /* Background.xcassets */; };
- F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */; };
- F7D56B1A2972405500FA46C4 /* Mantis in Frameworks */ = {isa = PBXBuildFile; productRef = F7D56B192972405500FA46C4 /* Mantis */; };
- F7D57C8626317BDA00DE301D /* NCAccountRequest.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */; };
- F7D57C8B26317BDE00DE301D /* NCAccountRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CA212B25F1333200826ABB /* NCAccountRequest.swift */; };
- F7D68FCC28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
- F7D68FCD28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
- F7D68FCE28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
- F7D68FCF28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
- F7D68FD028CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
- F7D96FCC246ED7E200536D73 /* NCNetworkingCheckRemoteUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */; };
- F7E0710128B13BB00001B882 /* DashboardData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E0710028B13BB00001B882 /* DashboardData.swift */; };
- F7E0CDCF265CE8610044854E /* NCUserStatus.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7E0CDCE265CE8610044854E /* NCUserStatus.storyboard */; };
- F7E41316294A19B300839300 /* UIView+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E41315294A19B300839300 /* UIView+Extension.swift */; };
- F7E4D9C422ED929B003675FD /* NCShareCommentsCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E4D9C322ED929B003675FD /* NCShareCommentsCell.swift */; };
- F7E8A391295DC5E0006CB2D0 /* View+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E8A390295DC5E0006CB2D0 /* View+Extension.swift */; };
- F7E98C1627E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
- F7E98C1727E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
- F7E98C1827E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
- F7E98C1927E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
- F7EBCDCF277B81FF00A4EF67 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDCE277B81FF00A4EF67 /* UICKeyChainStore */; };
- F7EBCDD1277B820D00A4EF67 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDD0277B820D00A4EF67 /* UICKeyChainStore */; };
- F7EBCDD3277B821700A4EF67 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDD2277B821700A4EF67 /* UICKeyChainStore */; };
- F7ED547C25EEA65400956C55 /* QRCodeReader in Frameworks */ = {isa = PBXBuildFile; productRef = F7ED547B25EEA65400956C55 /* QRCodeReader */; };
- F7EDE4CC262D7B6F00414FE6 /* NCEmptyDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7239870253D86B600257F49 /* NCEmptyDataSet.swift */; };
- F7EDE4D1262D7B8400414FE6 /* NCDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C1EEA425053A9C00866ACC /* NCDataSource.swift */; };
- F7EDE4D6262D7B9600414FE6 /* NCListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4121903CE00088454D /* NCListCell.swift */; };
- F7EDE4DB262D7BA200414FE6 /* NCCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */; };
- F7EDE4E0262D7BAF00414FE6 /* NCGridCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD3F21903CC20088454D /* NCGridCell.swift */; };
- F7EDE4E5262D7BBE00414FE6 /* NCSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */; };
- F7EDE509262DA9D600414FE6 /* NCSelectCommandViewSelect.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EDE508262DA9D600414FE6 /* NCSelectCommandViewSelect.xib */; };
- F7EDE514262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EDE513262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib */; };
- F7EDE51B262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EDE51A262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib */; };
- F7EFA47825ADBA500083159A /* NCViewerProviderContextMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EFA47725ADBA500083159A /* NCViewerProviderContextMenu.swift */; };
- F7EFC0C6256BC77700461AAD /* NCMoreUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EFC0C5256BC77700461AAD /* NCMoreUserCell.xib */; };
- F7EFC0CD256BF8DD00461AAD /* NCUserStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EFC0CC256BF8DD00461AAD /* NCUserStatus.swift */; };
- F7F1E54C2492369A00E42386 /* NCMediaCommandView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7F1E54B2492369A00E42386 /* NCMediaCommandView.xib */; };
- F7F4F0F727ECDBA4008676F9 /* NCSubtitles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F4F0F327ECDBA4008676F9 /* NCSubtitles.swift */; };
- F7F4F0F927ECDBA4008676F9 /* NCSubtitlePlayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F4F0F527ECDBA4008676F9 /* NCSubtitlePlayer.swift */; };
- F7F4F10527ECDBDB008676F9 /* Inconsolata-SemiBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F0FD27ECDBDB008676F9 /* Inconsolata-SemiBold.ttf */; };
- F7F4F10627ECDBDB008676F9 /* Inconsolata-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F0FE27ECDBDB008676F9 /* Inconsolata-Medium.ttf */; };
- F7F4F10727ECDBDB008676F9 /* Inconsolata-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F0FF27ECDBDB008676F9 /* Inconsolata-Black.ttf */; };
- F7F4F10827ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10027ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf */; };
- F7F4F10927ECDBDB008676F9 /* Inconsolata-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10127ECDBDB008676F9 /* Inconsolata-Bold.ttf */; };
- F7F4F10A27ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10227ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf */; };
- F7F4F10B27ECDBDB008676F9 /* Inconsolata-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10327ECDBDB008676F9 /* Inconsolata-Light.ttf */; };
- F7F4F10C27ECDBDB008676F9 /* Inconsolata-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10427ECDBDB008676F9 /* Inconsolata-Regular.ttf */; };
- F7F4F11027ECDC4A008676F9 /* UIDevice+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F4F10F27ECDC4A008676F9 /* UIDevice+Extension.swift */; };
- F7F4F11227ECDC52008676F9 /* UIFont+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F4F11127ECDC52008676F9 /* UIFont+Extension.swift */; };
- F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
- F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
- F7F9D1BB25397CE000D9BFF5 /* NCViewer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F9D1BA25397CE000D9BFF5 /* NCViewer.swift */; };
- F7FAFD3A28BFA948000777FE /* NCNotification+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7FAFD3928BFA947000777FE /* NCNotification+Menu.swift */; };
- F7FF2CB12842159500EBB7A1 /* NCSectionHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7FF2CB02842159500EBB7A1 /* NCSectionHeader.xib */; };
- /* End PBXBuildFile section */
- /* Begin PBXContainerItemProxy section */
- 2C33C48423E2C475005F963B /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 2C33C47E23E2C475005F963B;
- remoteInfo = "Notification Service Extension";
- };
- AF8ED1FD2757821000B8DBC4 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = F77B0DEB1D118A16002130FE;
- remoteInfo = Nextcloud;
- };
- F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
- remoteInfo = "Share Ext Nextcloud";
- };
- F7346E1A28B0EF5E006CE2D2 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = F7346E0F28B0EF5B006CE2D2;
- remoteInfo = DashboardWidgetExtension;
- };
- F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = F771E3CF20E2392D00AFB62D;
- remoteInfo = "File Provider Extension";
- };
- F7C9739728F17131002C43E2 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = F7C9738F28F17131002C43E2;
- remoteInfo = WidgetDashboardIntentHandler;
- };
- /* End PBXContainerItemProxy section */
- /* Begin PBXCopyFilesBuildPhase section */
- F76DA934277B75710082465B /* Embed Frameworks */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 10;
- files = (
- F76DA942277B75870082465B /* KTVHTTPCache.xcframework in Embed Frameworks */,
- F76DA95C277B75A90082465B /* TOPasscodeViewController.xcframework in Embed Frameworks */,
- F76DA940277B75870082465B /* KTVCocoaHTTPServer.xcframework in Embed Frameworks */,
- );
- name = "Embed Frameworks";
- runOnlyForDeploymentPostprocessing = 0;
- };
- F77B0F981D118A16002130FE /* Embed Foundation Extensions */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 13;
- files = (
- F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed Foundation Extensions */,
- F749E4E91DC1FB38009BA2FD /* Share.appex in Embed Foundation Extensions */,
- 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed Foundation Extensions */,
- F7C9739928F17131002C43E2 /* WidgetDashboardIntentHandler.appex in Embed Foundation Extensions */,
- F7346E1C28B0EF5E006CE2D2 /* Widget.appex in Embed Foundation Extensions */,
- );
- name = "Embed Foundation Extensions";
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXCopyFilesBuildPhase section */
- /* Begin PBXFileReference section */
- 08DC3BD41E64727E00F036D3 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
- 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
- 08EA97451E6554FC004C83FA /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
- 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
- 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
- 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Notification Service Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
- 2C33C48123E2C475005F963B /* NotificationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = "<group>"; };
- 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Notification_Service_Extension-Bridging-Header.h"; sourceTree = "<group>"; };
- 3704EB2923D5A58400455C5B /* NCMenu.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCMenu.storyboard; sourceTree = "<group>"; };
- 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCellProtocol.swift; sourceTree = "<group>"; };
- 371B5A2D23D0B04500FAFAE9 /* NCMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenu.swift; sourceTree = "<group>"; };
- 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FloatingPanel.framework; path = Carthage/Build/iOS/FloatingPanel.framework; sourceTree = "<group>"; };
- 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Menu.swift"; sourceTree = "<group>"; };
- 8491B1CC273BBA82001C8C5B /* UIViewController+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIViewController+Menu.swift"; sourceTree = "<group>"; };
- AF1A9B6327D0CA1E00F17A9E /* UIAlertController+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIAlertController+Extension.swift"; sourceTree = "<group>"; };
- AF22B20B277C6F4D00DAB0CC /* NCShareCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCell.swift; sourceTree = "<group>"; };
- AF22B215277D196700DAB0CC /* NCShareExtension+DataSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCShareExtension+DataSource.swift"; sourceTree = "<group>"; };
- AF22B216277D196700DAB0CC /* NCShareExtension+Files.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCShareExtension+Files.swift"; sourceTree = "<group>"; };
- AF2D7C7B2742556F00ADF566 /* NCShareLinkCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareLinkCell.swift; sourceTree = "<group>"; };
- AF2D7C7D2742559100ADF566 /* NCShareUserCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareUserCell.swift; sourceTree = "<group>"; };
- AF36077027BFA4E8001A243D /* ParallelWorker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParallelWorker.swift; sourceTree = "<group>"; };
- AF36077527BFB019001A243D /* ParallelWorkerTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParallelWorkerTest.swift; sourceTree = "<group>"; };
- AF3F909928213BEA0048A93E /* UserAgentTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserAgentTests.swift; sourceTree = "<group>"; };
- AF3FDCC12796ECC300710F60 /* NCTrash+CollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCTrash+CollectionView.swift"; sourceTree = "<group>"; };
- AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Account.swift"; sourceTree = "<group>"; };
- AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Metadata.swift"; sourceTree = "<group>"; };
- AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Activity.swift"; sourceTree = "<group>"; };
- AF56C1DB2784856200D8BAE2 /* NCActivityCommentView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCActivityCommentView.xib; sourceTree = "<group>"; };
- AF68326927BE65A90010BF0B /* NCMenuAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenuAction.swift; sourceTree = "<group>"; };
- AF70C14C27F3484D00E13DF2 /* SharePermissionTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SharePermissionTest.swift; sourceTree = "<group>"; };
- AF730AF727834B1400B7520E /* NCShare+NCCellDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShare+NCCellDelegate.swift"; sourceTree = "<group>"; };
- AF730AF927843E4C00B7520E /* NCShareExtension+NCDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShareExtension+NCDelegate.swift"; sourceTree = "<group>"; };
- AF7E504D27A2D8FF00B5E4AF /* UIBarButton+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIBarButton+Extension.swift"; sourceTree = "<group>"; };
- AF7E504F27A2D92300B5E4AF /* NCSelectableNavigationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSelectableNavigationView.swift; sourceTree = "<group>"; };
- AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUserBaseUrl.swift; sourceTree = "<group>"; };
- AF8ED1F92757821000B8DBC4 /* NextcloudTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NextcloudTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- AF8ED1FB2757821000B8DBC4 /* NextcloudTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NextcloudTests.swift; sourceTree = "<group>"; };
- AF8ED2022757822700B8DBC4 /* NCGlobalTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCGlobalTests.swift; sourceTree = "<group>"; };
- AF93471127E2341B002537EE /* NCShare+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShare+Menu.swift"; sourceTree = "<group>"; };
- AF93471427E2361E002537EE /* NCShareAdvancePermissionFooter.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareAdvancePermissionFooter.xib; sourceTree = "<group>"; };
- AF93471527E2361E002537EE /* NCShareAdvancePermissionHeader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareAdvancePermissionHeader.swift; sourceTree = "<group>"; };
- AF93471627E2361E002537EE /* NCShareAdvancePermission.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareAdvancePermission.swift; sourceTree = "<group>"; };
- AF93471727E2361E002537EE /* NCShareAdvancePermissionHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareAdvancePermissionHeader.xib; sourceTree = "<group>"; };
- AF93471827E2361E002537EE /* NCShareAdvancePermissionFooter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareAdvancePermissionFooter.swift; sourceTree = "<group>"; };
- AF93474B27E34120002537EE /* NCUtility+Image.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCUtility+Image.swift"; sourceTree = "<group>"; };
- AF93474D27E3F211002537EE /* NCShareNewUserAddComment.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareNewUserAddComment.swift; sourceTree = "<group>"; };
- AF935066276B84E700BD078F /* NCMenu+FloatingPanel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCMenu+FloatingPanel.swift"; sourceTree = "<group>"; };
- AFA2AC8427849604008E1EA7 /* NCActivityCommentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivityCommentView.swift; sourceTree = "<group>"; };
- AFCE353227E4ED1900FEA6C2 /* UIToolbar+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIToolbar+Extension.swift"; sourceTree = "<group>"; };
- AFCE353427E4ED5900FEA6C2 /* DateFormatter+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "DateFormatter+Extension.swift"; sourceTree = "<group>"; };
- AFCE353627E4ED7B00FEA6C2 /* NCShareCells.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCells.swift; sourceTree = "<group>"; };
- AFCE353827E5DE0400FEA6C2 /* NCShare+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShare+Helper.swift"; sourceTree = "<group>"; };
- AFD3323F276A02C000F5AE02 /* UIApplication+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIApplication+Extension.swift"; sourceTree = "<group>"; };
- D5B6AA7727200C7200D49C24 /* NCActivityTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivityTableViewCell.swift; sourceTree = "<group>"; };
- F700222B1EC479840080073F /* Custom.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Custom.xcassets; sourceTree = "<group>"; };
- F700510022DF63AC003A3356 /* NCShare.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCShare.storyboard; sourceTree = "<group>"; };
- F700510222DF6897003A3356 /* Parchment.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Parchment.framework; path = Carthage/Build/iOS/Parchment.framework; sourceTree = "<group>"; };
- F700510422DF6A89003A3356 /* NCShare.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShare.swift; sourceTree = "<group>"; };
- F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadVoiceNote.swift; sourceTree = "<group>"; };
- F702864D27735D1400ADA8BE /* libavdevice.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavdevice.xcframework; path = ffmpeg/libavdevice.xcframework; sourceTree = "<group>"; };
- F702864E27735D1400ADA8BE /* ffmpegkit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = ffmpegkit.xcframework; path = ffmpeg/ffmpegkit.xcframework; sourceTree = "<group>"; };
- F702864F27735D1500ADA8BE /* libnettle.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libnettle.xcframework; path = ffmpeg/libnettle.xcframework; sourceTree = "<group>"; };
- F702865027735D1500ADA8BE /* libswscale.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libswscale.xcframework; path = ffmpeg/libswscale.xcframework; sourceTree = "<group>"; };
- F702865127735D1500ADA8BE /* gmp.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = gmp.xcframework; path = ffmpeg/gmp.xcframework; sourceTree = "<group>"; };
- F702865227735D1500ADA8BE /* libavcodec.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavcodec.xcframework; path = ffmpeg/libavcodec.xcframework; sourceTree = "<group>"; };
- F702865327735D1500ADA8BE /* libavutil.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavutil.xcframework; path = ffmpeg/libavutil.xcframework; sourceTree = "<group>"; };
- F702865427735D1500ADA8BE /* openh264.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = openh264.xcframework; path = ffmpeg/openh264.xcframework; sourceTree = "<group>"; };
- F702865527735D1600ADA8BE /* libavfilter.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavfilter.xcframework; path = ffmpeg/libavfilter.xcframework; sourceTree = "<group>"; };
- F702865627735D1600ADA8BE /* libhogweed.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libhogweed.xcframework; path = ffmpeg/libhogweed.xcframework; sourceTree = "<group>"; };
- F702865727735D1600ADA8BE /* x264.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = x264.xcframework; path = ffmpeg/x264.xcframework; sourceTree = "<group>"; };
- F702865827735D1600ADA8BE /* libavformat.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavformat.xcframework; path = ffmpeg/libavformat.xcframework; sourceTree = "<group>"; };
- F702865927735D1600ADA8BE /* libswresample.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libswresample.xcframework; path = ffmpeg/libswresample.xcframework; sourceTree = "<group>"; };
- F702865A27735D1700ADA8BE /* gnutls.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = gnutls.xcframework; path = ffmpeg/gnutls.xcframework; sourceTree = "<group>"; };
- F702867E2773609C00ADA8BE /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
- F702F2CC25EE5B4F008F8E80 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
- F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGlobal.swift; sourceTree = "<group>"; };
- F702F2E425EE5C82008F8E80 /* NCAudioRecorderViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAudioRecorderViewController.swift; sourceTree = "<group>"; };
- F702F2E525EE5C82008F8E80 /* NCAudioRecorderViewController.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCAudioRecorderViewController.storyboard; sourceTree = "<group>"; };
- F702F2F025EE5CDA008F8E80 /* NCLogin.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCLogin.storyboard; sourceTree = "<group>"; };
- F702F2F625EE5CEC008F8E80 /* NCLogin.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCLogin.swift; sourceTree = "<group>"; };
- F702F2FD25EE5D2C008F8E80 /* NYMnemonic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NYMnemonic.m; sourceTree = "<group>"; };
- F702F2FF25EE5D2C008F8E80 /* english.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = english.txt; sourceTree = "<group>"; };
- F702F30025EE5D2C008F8E80 /* NYMnemonic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NYMnemonic.h; sourceTree = "<group>"; };
- F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPopupViewController.swift; sourceTree = "<group>"; };
- F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NotificationCenter+MainThread.swift"; sourceTree = "<group>"; };
- F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCCreateFormUploadConflict.storyboard; sourceTree = "<group>"; };
- F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadConflict.swift; sourceTree = "<group>"; };
- F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCCreateFormUploadConflictCell.xib; sourceTree = "<group>"; };
- F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadConflictCell.swift; sourceTree = "<group>"; };
- F7053E3C1C639DF500741EA5 /* CCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
- F7053E3D1C639DF500741EA5 /* CCUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
- F7063DEC2199E55F003F38DA /* SVGKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SVGKit.framework; path = Carthage/Build/iOS/SVGKit.framework; sourceTree = "<group>"; };
- F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjack.framework; path = Carthage/Build/iOS/CocoaLumberjack.framework; sourceTree = "<group>"; };
- F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjackSwift.framework; path = Carthage/Build/iOS/CocoaLumberjackSwift.framework; sourceTree = "<group>"; };
- F70753EA2542A99800972D44 /* NCViewerMediaPage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerMediaPage.swift; sourceTree = "<group>"; };
- F70753F02542A9A200972D44 /* NCViewerMedia.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerMedia.swift; sourceTree = "<group>"; };
- F70753F62542A9C000972D44 /* NCViewerMediaPage.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerMediaPage.storyboard; sourceTree = "<group>"; };
- F707C26421A2DC5200F6181E /* NCStoreReview.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCStoreReview.swift; sourceTree = "<group>"; };
- F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCLivePhoto.swift; sourceTree = "<group>"; };
- F70A07C8205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F70A58BD24D0349500DED00D /* NCCapabilitiesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCapabilitiesViewController.swift; sourceTree = "<group>"; };
- F70A58BF24D0545100DED00D /* NCCapabilitiesViewController.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCCapabilitiesViewController.storyboard; sourceTree = "<group>"; };
- F70B866F2642CA9500ED5349 /* ChromaColorPicker.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = ChromaColorPicker.xcframework; path = Carthage/Build/ChromaColorPicker.xcframework; sourceTree = "<group>"; };
- F70B86792642CF5300ED5349 /* KTVHTTPCache.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = KTVHTTPCache.xcframework; path = Carthage/Build/KTVHTTPCache.xcframework; sourceTree = "<group>"; };
- F70B867A2642CF5300ED5349 /* TLPhotoPicker.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = TLPhotoPicker.xcframework; path = Carthage/Build/TLPhotoPicker.xcframework; sourceTree = "<group>"; };
- F70B867B2642CF5300ED5349 /* XLForm.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = XLForm.xcframework; path = Carthage/Build/XLForm.xcframework; sourceTree = "<group>"; };
- F70B867C2642CF5300ED5349 /* Queuer.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Queuer.xcframework; path = Carthage/Build/Queuer.xcframework; sourceTree = "<group>"; };
- F70B867D2642CF5400ED5349 /* UICKeyChainStore.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = UICKeyChainStore.xcframework; path = Carthage/Build/UICKeyChainStore.xcframework; sourceTree = "<group>"; };
- F70B867E2642CF5400ED5349 /* KTVCocoaHTTPServer.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = KTVCocoaHTTPServer.xcframework; path = Carthage/Build/KTVCocoaHTTPServer.xcframework; sourceTree = "<group>"; };
- F70B867F2642CF5400ED5349 /* QuickLayout.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = QuickLayout.xcframework; path = Carthage/Build/QuickLayout.xcframework; sourceTree = "<group>"; };
- F70B86802642CF5400ED5349 /* OpenSSL.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = OpenSSL.xcframework; path = Carthage/Build/OpenSSL.xcframework; sourceTree = "<group>"; };
- F70B86812642CF5500ED5349 /* SwiftEntryKit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = SwiftEntryKit.xcframework; path = Carthage/Build/SwiftEntryKit.xcframework; sourceTree = "<group>"; };
- F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = TOPasscodeViewController.xcframework; path = Carthage/Build/TOPasscodeViewController.xcframework; sourceTree = "<group>"; };
- F70B86832642CF5500ED5349 /* FSCalendar.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = FSCalendar.xcframework; path = Carthage/Build/FSCalendar.xcframework; sourceTree = "<group>"; };
- F70B86842642CF5500ED5349 /* DropDown.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = DropDown.xcframework; path = Carthage/Build/DropDown.xcframework; sourceTree = "<group>"; };
- F70BFC7320E0FA7C00C67599 /* NCUtility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtility.swift; sourceTree = "<group>"; };
- F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCEndToEndEncryption.h; sourceTree = "<group>"; };
- F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCEndToEndEncryption.m; sourceTree = "<group>"; };
- F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+Extension.swift"; sourceTree = "<group>"; };
- F70D7C3525FFBF81002B9E34 /* NCCollectionViewCommon.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCollectionViewCommon.swift; sourceTree = "<group>"; };
- F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCRenameFile.storyboard; sourceTree = "<group>"; };
- F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCRenameFile.swift; sourceTree = "<group>"; };
- F70D8D8024A4A9BF000A5756 /* NCNetworkingProcessUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingProcessUpload.swift; sourceTree = "<group>"; };
- F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ZIPFoundation.framework; path = Carthage/Build/iOS/ZIPFoundation.framework; sourceTree = "<group>"; };
- F70F96AF2874394B006C8379 /* Nextcloud-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
- F710C5EF2471A6D1009AD8B7 /* Sentry.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sentry.framework; path = Carthage/Build/iOS/Sentry.framework; sourceTree = "<group>"; };
- F710D1F42405770F00A6033D /* NCViewerPDF.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerPDF.swift; sourceTree = "<group>"; };
- F710D2012405826100A6033D /* NCViewer+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCViewer+Menu.swift"; sourceTree = "<group>"; };
- F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ImagesIntro.xcassets; sourceTree = "<group>"; };
- F7134184259747BA00768D21 /* NCPushNotification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCPushNotification.h; sourceTree = "<group>"; };
- F7134185259747BA00768D21 /* NCPushNotification.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCPushNotification.m; sourceTree = "<group>"; };
- F713FEFE2472764000214AF6 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
- F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
- F714560F296433C80038D028 /* NCDocumentCamera.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCDocumentCamera.swift; sourceTree = "<group>"; };
- F714803A262EBE3900693E51 /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
- F7148040262EBE4000693E51 /* NCShareExtension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareExtension.swift; sourceTree = "<group>"; };
- F7148046262EBE4B00693E51 /* Share-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Share-Bridging-Header.h"; sourceTree = "<group>"; };
- F7151A811D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7169A301EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7169A4C1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
- F716B75E26F09DF600D37EFC /* NCKTVHTTPCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCKTVHTTPCache.swift; sourceTree = "<group>"; };
- F716FE7723795E5000FABE50 /* NCCommunication.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = NCCommunication.framework; path = Carthage/Build/iOS/NCCommunication.framework; sourceTree = "<group>"; };
- F717402B24F699A5000C87D5 /* NCFavorite.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCFavorite.storyboard; sourceTree = "<group>"; };
- F717402C24F699A5000C87D5 /* NCFavorite.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCFavorite.swift; sourceTree = "<group>"; };
- F7176DAE256672630017E83C /* FirebaseCrashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCrashlytics.framework; path = Carthage/Build/iOS/FirebaseCrashlytics.framework; sourceTree = "<group>"; };
- F7176DAF256672630017E83C /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCoreDiagnostics.framework; path = Carthage/Build/iOS/FirebaseCoreDiagnostics.framework; sourceTree = "<group>"; };
- F7176DB0256672630017E83C /* GoogleDataTransport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleDataTransport.framework; path = Carthage/Build/iOS/GoogleDataTransport.framework; sourceTree = "<group>"; };
- F7176DB1256672630017E83C /* FirebaseInstallations.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseInstallations.framework; path = Carthage/Build/iOS/FirebaseInstallations.framework; sourceTree = "<group>"; };
- F7176DB2256672630017E83C /* PromisesObjC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PromisesObjC.framework; path = Carthage/Build/iOS/PromisesObjC.framework; sourceTree = "<group>"; };
- F7176DB3256672630017E83C /* GoogleUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleUtilities.framework; path = Carthage/Build/iOS/GoogleUtilities.framework; sourceTree = "<group>"; };
- F7176DB4256672630017E83C /* nanopb.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = nanopb.framework; path = Carthage/Build/iOS/nanopb.framework; sourceTree = "<group>"; };
- F7176DB5256672640017E83C /* Protobuf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Protobuf.framework; path = Carthage/Build/iOS/Protobuf.framework; sourceTree = "<group>"; };
- F7176DB6256672640017E83C /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCore.framework; path = Carthage/Build/iOS/FirebaseCore.framework; sourceTree = "<group>"; };
- F7176DB7256672640017E83C /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Carthage/Build/iOS/FirebaseAnalytics.framework; sourceTree = "<group>"; };
- F7176DB8256672640017E83C /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Carthage/Build/iOS/GoogleAppMeasurement.framework; sourceTree = "<group>"; };
- F7176DB9256672640017E83C /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Carthage/Build/iOS/FIRAnalyticsConnector.framework; sourceTree = "<group>"; };
- F7176DDA256672D90017E83C /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
- F718C24D254D507B00C5C256 /* NCViewerMediaDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerMediaDetailView.swift; sourceTree = "<group>"; };
- F719D9DF288D37A300762E33 /* NCColorPicker.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCColorPicker.storyboard; sourceTree = "<group>"; };
- F719D9E1288D396100762E33 /* NCColorPicker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCColorPicker.swift; sourceTree = "<group>"; };
- F71CD6C92930D7B1006C95C1 /* NCApplicationHandle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCApplicationHandle.swift; sourceTree = "<group>"; };
- F7226EDB1EE4089300EBECB1 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
- F723985B253C95CE00257F49 /* NCViewerRichdocument.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerRichdocument.storyboard; sourceTree = "<group>"; };
- F7239870253D86B600257F49 /* NCEmptyDataSet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEmptyDataSet.swift; sourceTree = "<group>"; };
- F7239876253D86D300257F49 /* NCEmptyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCEmptyView.xib; sourceTree = "<group>"; };
- F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareCommentsCell.xib; sourceTree = "<group>"; };
- F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ThreadSafeDictionary.swift; sourceTree = "<group>"; };
- F7267A81225DFCE100D6DB7D /* AFNetworking.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AFNetworking.framework; path = Carthage/Build/iOS/AFNetworking.framework; sourceTree = "<group>"; };
- F72685E827C78E490019EF5E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCEndToEndInitialize.swift; sourceTree = "<group>"; };
- F728B2BB23E83AD200E12DA0 /* Notification_Service_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Notification_Service_Extension.plist; sourceTree = "<group>"; };
- F728B2BC23E83AD200E12DA0 /* Notification_Service_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Notification_Service_Extension.entitlements; sourceTree = "<group>"; };
- F72A17D728B221E300F3F159 /* DashboardWidgetView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DashboardWidgetView.swift; sourceTree = "<group>"; };
- F72A47EB2487B06B005AD489 /* NCOperationQueue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCOperationQueue.swift; sourceTree = "<group>"; };
- F72CD63925C19EBF00F46F9A /* NCAutoUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAutoUpload.swift; sourceTree = "<group>"; };
- F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCPushNotificationEncryption.m; sourceTree = "<group>"; };
- F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCPushNotificationEncryption.h; sourceTree = "<group>"; };
- F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerNextcloudText.swift; sourceTree = "<group>"; };
- F72E0B9C21AD60BC00898D7B /* WeScan.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WeScan.framework; path = Carthage/Build/iOS/WeScan.framework; sourceTree = "<group>"; };
- F72EA95128B7BA2A00C88F0C /* DashboardWidgetProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DashboardWidgetProvider.swift; sourceTree = "<group>"; };
- F72EA95328B7BABA00C88F0C /* FilesWidgetProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilesWidgetProvider.swift; sourceTree = "<group>"; };
- F72EA95728B7BC4F00C88F0C /* FilesData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilesData.swift; sourceTree = "<group>"; };
- F72EA95928B7BD0D00C88F0C /* FilesWidgetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilesWidgetView.swift; sourceTree = "<group>"; };
- F7320934201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
- F732093B201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F732D23227CF8AED000B0F1B /* NCPlayerToolBar.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCPlayerToolBar.xib; sourceTree = "<group>"; };
- F733598025C1C188002ABA72 /* NCAskAuthorization.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAskAuthorization.swift; sourceTree = "<group>"; };
- F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TLPhotoPicker.framework; path = Carthage/Build/iOS/TLPhotoPicker.framework; sourceTree = "<group>"; };
- F7346E1028B0EF5B006CE2D2 /* Widget.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Widget.appex; sourceTree = BUILT_PRODUCTS_DIR; };
- F7346E1128B0EF5B006CE2D2 /* WidgetKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WidgetKit.framework; path = System/Library/Frameworks/WidgetKit.framework; sourceTree = SDKROOT; };
- F7346E1528B0EF5C006CE2D2 /* Widget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Widget.swift; sourceTree = "<group>"; };
- F7346E2028B0FA3A006CE2D2 /* Widget-Brinding-header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Widget-Brinding-header.h"; sourceTree = "<group>"; };
- F7346E2128B0FBEE006CE2D2 /* Widget.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Widget.plist; sourceTree = "<group>"; };
- F7346E2228B0FEBA006CE2D2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
- F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
- F736B551234DCF57008A5C9F /* Alamofire.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Alamofire.framework; path = Carthage/Build/iOS/Alamofire.framework; sourceTree = "<group>"; };
- F7381EDA218218C9000B1560 /* NCOffline.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCOffline.swift; sourceTree = "<group>"; };
- F7381EDE218218C9000B1560 /* NCOffline.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCOffline.storyboard; sourceTree = "<group>"; };
- F738D48F2756740100CD1D38 /* NCLoginNavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginNavigationController.swift; sourceTree = "<group>"; };
- F73B42292476764F00A30FD3 /* NCNotification.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = NCNotification.storyboard; path = Notification/NCNotification.storyboard; sourceTree = "<group>"; };
- F73B422A2476764F00A30FD3 /* NCNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = NCNotification.swift; path = Notification/NCNotification.swift; sourceTree = "<group>"; };
- F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCShareHeaderView.xib; sourceTree = "<group>"; };
- F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCBridgeSwift.h; sourceTree = "<group>"; };
- F73D11F9253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerNextcloudText.storyboard; sourceTree = "<group>"; };
- F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCElementsJSON.swift; sourceTree = "<group>"; };
- F73F537E1E929C8500F8678D /* NCMore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMore.swift; sourceTree = "<group>"; };
- F7421EAE2294044B00C4B7C1 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
- F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtension-Bridging-Header.h"; sourceTree = "<group>"; };
- F745B250222D871800346520 /* QRCodeReader.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QRCodeReader.framework; path = Carthage/Build/iOS/QRCodeReader.framework; sourceTree = "<group>"; };
- F745B252222D88AE00346520 /* NCLoginQRCode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginQRCode.swift; sourceTree = "<group>"; };
- F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadVoiceNote.storyboard; sourceTree = "<group>"; };
- F7496B81208F5651004B299C /* iOSClient.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = iOSClient.plist; sourceTree = "<group>"; };
- F7496B83208F5652004B299C /* Share.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Share.plist; sourceTree = "<group>"; };
- F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Share.swift"; sourceTree = "<group>"; };
- F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Avatar.swift"; sourceTree = "<group>"; };
- F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroCollectionViewCell.swift; sourceTree = "<group>"; };
- F749C10823C4A5330027D966 /* NCIntroViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroViewController.swift; sourceTree = "<group>"; };
- F749C10923C4A5330027D966 /* NCIntro.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCIntro.storyboard; sourceTree = "<group>"; };
- F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCIntroCollectionViewCell.xib; sourceTree = "<group>"; };
- F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtilityFileSystem.swift; sourceTree = "<group>"; };
- F74AFCE822E8B024003DE61F /* FSCalendar.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FSCalendar.framework; path = Carthage/Build/iOS/FSCalendar.framework; sourceTree = "<group>"; };
- F74C0434253F1CDC009762AB /* NCShares.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShares.swift; sourceTree = "<group>"; };
- F74C0435253F1CDC009762AB /* NCShares.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCShares.storyboard; sourceTree = "<group>"; };
- F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenSSL.framework; path = Carthage/Build/iOS/OpenSSL.framework; sourceTree = "<group>"; };
- F74DE14125135B6800917068 /* NCTransfers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCTransfers.swift; sourceTree = "<group>"; };
- F74DE14225135B6800917068 /* NCTransfers.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCTransfers.storyboard; sourceTree = "<group>"; };
- F7501C302212E57400FB1415 /* NCMedia.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCMedia.storyboard; sourceTree = "<group>"; };
- F7501C312212E57400FB1415 /* NCMedia.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMedia.swift; sourceTree = "<group>"; };
- F75153232226920200323DDC /* FastScroll.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FastScroll.framework; path = Carthage/Build/iOS/FastScroll.framework; sourceTree = "<group>"; };
- F753701822723D620041C76C /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
- F753701922723E0D0041C76C /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
- F753701A22723EC80041C76C /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
- F755BD9A20594AC7008C5FBB /* NCService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCService.swift; sourceTree = "<group>"; };
- F7581D1925EFDA60004DC699 /* NCLoginWeb+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCLoginWeb+Menu.swift"; sourceTree = "<group>"; };
- F7581D2325EFDDDF004DC699 /* NCMedia+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCMedia+Menu.swift"; sourceTree = "<group>"; };
- F758B457212C564000515F55 /* NCScan.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCScan.storyboard; sourceTree = "<group>"; };
- F758B45D212C569C00515F55 /* NCScanCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCScanCell.swift; sourceTree = "<group>"; };
- F758B45F212C56A400515F55 /* NCScan.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCScan.swift; sourceTree = "<group>"; };
- F75A9EE523796C6F0044CFCE /* NCNetworking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworking.swift; sourceTree = "<group>"; };
- F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageAutoUploadFileName.swift; sourceTree = "<group>"; };
- F75B0ABC244C4DBB00E58DCA /* NCFunctionCenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCFunctionCenter.swift; sourceTree = "<group>"; };
- F75B91E21ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
- F75B91F71ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F75B923D1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
- F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRichWorkspaceCommon.swift; sourceTree = "<group>"; };
- F75CA1462962F13700B01130 /* HUDView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HUDView.swift; sourceTree = "<group>"; };
- F75D19E225EFE09000D74598 /* NCTrash+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCTrash+Menu.swift"; sourceTree = "<group>"; };
- F75DD768290ABB25002EB562 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.intentdefinition; name = Base; path = Base.lproj/Intent.intentdefinition; sourceTree = "<group>"; };
- F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
- F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
- F760329D252F0F8E0015A421 /* NCTransferCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = NCTransferCell.swift; path = iOSClient/Transfers/NCTransferCell.swift; sourceTree = SOURCE_ROOT; };
- F760329E252F0F8E0015A421 /* NCTransferCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = NCTransferCell.xib; path = iOSClient/Transfers/NCTransferCell.xib; sourceTree = SOURCE_ROOT; };
- F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadDocuments.storyboard; sourceTree = "<group>"; };
- F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadDocuments.swift; sourceTree = "<group>"; };
- F765608623BF806C00765969 /* QuickLayout.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLayout.framework; path = Carthage/Build/iOS/QuickLayout.framework; sourceTree = "<group>"; };
- F765608A23BF80A400765969 /* SwiftEntryKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftEntryKit.framework; path = Carthage/Build/iOS/SwiftEntryKit.framework; sourceTree = "<group>"; };
- F765608E23BF813500765969 /* NCContentPresenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCContentPresenter.swift; sourceTree = "<group>"; };
- F765E9CC295C585800A09ED8 /* NCUploadScanDocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUploadScanDocument.swift; sourceTree = "<group>"; };
- F765F72F25237E3F00391DBE /* NCRecent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCRecent.swift; sourceTree = "<group>"; };
- F765F73025237E3F00391DBE /* NCRecent.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCRecent.storyboard; sourceTree = "<group>"; };
- F76673EC22C901F5007ED366 /* FileProviderDomain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderDomain.swift; sourceTree = "<group>"; };
- F76673EF22C90433007ED366 /* FileProviderUtility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderUtility.swift; sourceTree = "<group>"; };
- F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainTabBar.swift; sourceTree = "<group>"; };
- F769453B22E9CFFF000A798A /* NCShareUserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserCell.xib; sourceTree = "<group>"; };
- F769453F22E9F077000A798A /* NCSharePaging.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSharePaging.swift; sourceTree = "<group>"; };
- F769454522E9F1B0000A798A /* NCShareCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCommon.swift; sourceTree = "<group>"; };
- F769454722E9F20D000A798A /* NCShareNetworking.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareNetworking.swift; sourceTree = "<group>"; };
- F769CA162965AB7C00039397 /* NCUploadAssets.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCUploadAssets.swift; sourceTree = "<group>"; };
- F769CA182966EA3C00039397 /* ComponentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComponentView.swift; sourceTree = "<group>"; };
- F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBrand.swift; sourceTree = "<group>"; };
- F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivityIndicator.swift; sourceTree = "<group>"; };
- F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerPDFSearch.swift; sourceTree = "<group>"; };
- F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCViewerPDFSearchCell.xib; sourceTree = "<group>"; };
- F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCViewerPDF.storyboard; sourceTree = "<group>"; };
- F76DEE9428F808AF0041B1C9 /* LockscreenData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LockscreenData.swift; sourceTree = "<group>"; };
- F76DEE9528F808AF0041B1C9 /* LockscreenWidgetProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LockscreenWidgetProvider.swift; sourceTree = "<group>"; };
- F76DEE9628F808AF0041B1C9 /* LockscreenWidgetView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LockscreenWidgetView.swift; sourceTree = "<group>"; };
- F76E71E42244DF6900690001 /* Zip.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Zip.framework; path = Carthage/Build/iOS/Zip.framework; sourceTree = "<group>"; };
- F76FDEAA24859C3D0095B6C2 /* Queuer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Queuer.framework; path = Carthage/Build/iOS/Queuer.framework; sourceTree = "<group>"; };
- F771E3D020E2392D00AFB62D /* File Provider Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
- F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderExtension.swift; sourceTree = "<group>"; };
- F771E3D420E2392D00AFB62D /* FileProviderItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderItem.swift; sourceTree = "<group>"; };
- F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderEnumerator.swift; sourceTree = "<group>"; };
- F771E3F220E239A600AFB62D /* FileProviderData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderData.swift; sourceTree = "<group>"; };
- F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Actions.swift"; sourceTree = "<group>"; };
- F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Thumbnail.swift"; sourceTree = "<group>"; };
- F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = File_Provider_Extension.entitlements; sourceTree = "<group>"; };
- F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = File_Provider_Extension.plist; sourceTree = "<group>"; };
- F7725A5E251F33BB00D125E0 /* NCFiles.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCFiles.swift; sourceTree = "<group>"; };
- F7725A5F251F33BB00D125E0 /* NCFiles.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCFiles.storyboard; sourceTree = "<group>"; };
- F774264022EB3F7300B23912 /* DropDown.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropDown.framework; path = Carthage/Build/iOS/DropDown.framework; sourceTree = "<group>"; };
- F774264822EB4D0000B23912 /* NCSearchUserDropDownCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSearchUserDropDownCell.xib; sourceTree = "<group>"; };
- F77438EB1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77438F21FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
- F77438F91FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439001FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
- F77439071FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F774390E1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439151FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F774391C1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439231FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F774392A1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439311FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439381FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F774393F1FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439461FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F774394D1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439541FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F774395B1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77439621FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F77444F322281649000D5EB0 /* NCGridMediaCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGridMediaCell.swift; sourceTree = "<group>"; };
- F77444F422281649000D5EB0 /* NCGridMediaCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCGridMediaCell.xib; sourceTree = "<group>"; };
- F77444F7222816D5000D5EB0 /* NCPickerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPickerViewController.swift; sourceTree = "<group>"; };
- F77910A425DD517B00CEDB9E /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Settings.bundle; sourceTree = "<group>"; };
- F77910AA25DD53C700CEDB9E /* NCSettingsBundleHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSettingsBundleHelper.swift; sourceTree = "<group>"; };
- F77A697C250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCCollectionViewCommon+Menu.swift"; sourceTree = "<group>"; };
- F77BB745289984CA0090FC19 /* UIViewController+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+Extension.swift"; sourceTree = "<group>"; };
- F77BB747289985270090FC19 /* UITabBarController+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UITabBarController+Extension.swift"; sourceTree = "<group>"; };
- F77BB7492899857B0090FC19 /* UINavigationController+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UINavigationController+Extension.swift"; sourceTree = "<group>"; };
- F77BC3EC293E528A005F2B08 /* NCConfigServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCConfigServer.swift; sourceTree = "<group>"; };
- F77C97382953131000FDDD09 /* NCCameraRoll.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCameraRoll.swift; sourceTree = "<group>"; };
- F77ED59028C9CE9D00E24ED0 /* ToolbarData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ToolbarData.swift; sourceTree = "<group>"; };
- F77ED59228C9CEA000E24ED0 /* ToolbarWidgetProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ToolbarWidgetProvider.swift; sourceTree = "<group>"; };
- F77ED59428C9CEA300E24ED0 /* ToolbarWidgetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ToolbarWidgetView.swift; sourceTree = "<group>"; };
- F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+MainThread.h"; sourceTree = "<group>"; };
- F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+MainThread.m"; sourceTree = "<group>"; };
- F783030E28B4C83F00B84583 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
- F783031028B4C86200B84583 /* libc++.1.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.1.tbd"; path = "usr/lib/libc++.1.tbd"; sourceTree = SDKROOT; };
- F783031128B4C86200B84583 /* libc++abi.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++abi.tbd"; path = "usr/lib/libc++abi.tbd"; sourceTree = SDKROOT; };
- F783033F28B50B7E00B84583 /* Widget.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Widget.entitlements; sourceTree = "<group>"; };
- F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EE.swift; sourceTree = "<group>"; };
- F787704E22E7019900F287A9 /* NCShareLinkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkCell.xib; sourceTree = "<group>"; };
- F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Directory.swift"; sourceTree = "<group>"; };
- F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspaceWebView.swift; sourceTree = "<group>"; };
- F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspace.swift; sourceTree = "<group>"; };
- F78AA20521F783E900D0F205 /* SwiftRichString.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftRichString.framework; path = Carthage/Build/iOS/SwiftRichString.framework; sourceTree = "<group>"; };
- F78ACD3F21903CC20088454D /* NCGridCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCGridCell.swift; sourceTree = "<group>"; };
- F78ACD4121903CE00088454D /* NCListCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCListCell.swift; sourceTree = "<group>"; };
- F78ACD4321903CF20088454D /* NCListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCListCell.xib; sourceTree = "<group>"; };
- F78ACD4521903D010088454D /* NCGridCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCGridCell.xib; sourceTree = "<group>"; };
- F78ACD4821903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCTrashListCell+NCTrashCellProtocol.swift"; sourceTree = "<group>"; };
- F78ACD4921903F850088454D /* NCTrashListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCTrashListCell.xib; sourceTree = "<group>"; };
- F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSectionHeaderFooter.swift; sourceTree = "<group>"; };
- F78ACD53219047D40088454D /* NCSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionFooter.xib; sourceTree = "<group>"; };
- F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionHeaderMenu.xib; sourceTree = "<group>"; };
- F78C6FDD296D677300C952C3 /* NCContextMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCContextMenu.swift; sourceTree = "<group>"; };
- F78D6F461F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F78D6F4D1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F78D6F541F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
- F78F74332163757000C2ADAD /* NCTrash.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCTrash.storyboard; sourceTree = "<group>"; };
- F78F74352163781100C2ADAD /* NCTrash.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrash.swift; sourceTree = "<group>"; };
- F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichdocument.swift; sourceTree = "<group>"; };
- F79018A424092EF4007C9B6D /* ATGMediaBrowser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ATGMediaBrowser.framework; path = Carthage/Build/iOS/ATGMediaBrowser.framework; sourceTree = "<group>"; };
- F79131C628AFB86E00577277 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/Localizable.strings; sourceTree = "<group>"; };
- F79131C728AFB86E00577277 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F79918A021997F9000C2E308 /* UICKeyChainStore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UICKeyChainStore.framework; path = Carthage/Build/iOS/UICKeyChainStore.framework; sourceTree = "<group>"; };
- F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sheeeeeeeeet.framework; path = Carthage/Build/iOS/Sheeeeeeeeet.framework; sourceTree = "<group>"; };
- F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCSelect.storyboard; sourceTree = "<group>"; };
- F79A65C52191D95E00FF6DCC /* NCSelect.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSelect.swift; sourceTree = "<group>"; };
- F79B645F26CA661600838ACA /* UIControl+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIControl+Extension.swift"; sourceTree = "<group>"; };
- F79B869A265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSMutableAttributedString+Extension.swift"; sourceTree = "<group>"; };
- F79BCEEA270B49C800B5B71F /* SwiftUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftUI.framework; path = System/Library/Frameworks/SwiftUI.framework; sourceTree = SDKROOT; };
- F79EDA9F26B004980007D134 /* NCPlayerToolBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPlayerToolBar.swift; sourceTree = "<group>"; };
- F79EDAA126B004980007D134 /* NCPlayer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPlayer.swift; sourceTree = "<group>"; };
- F7A0D1342591FBC5008F8A13 /* String+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extension.swift"; sourceTree = "<group>"; };
- F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAdvanced.h; sourceTree = "<group>"; };
- F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAdvanced.m; sourceTree = "<group>"; };
- F7A48412297022E000BD1B49 /* ViewerQuickLook.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewerQuickLook.swift; sourceTree = "<group>"; };
- F7A48414297028FC00BD1B49 /* Nextcloud Hub.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Nextcloud Hub.png"; sourceTree = SOURCE_ROOT; };
- F7A60F84292D215000FCE1F2 /* NCTalkAccounts.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCTalkAccounts.swift; sourceTree = "<group>"; };
- F7A60F85292D215000FCE1F2 /* NCTalkAccounts.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCTalkAccounts.storyboard; sourceTree = "<group>"; };
- F7A7FA6229265CF4000603EF /* NCManageE2EE.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCManageE2EE.swift; sourceTree = "<group>"; };
- F7A8D72228F176B6008BBE1C /* WidgetDashboardIntentHandler-Brinding-header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "WidgetDashboardIntentHandler-Brinding-header.h"; sourceTree = "<group>"; };
- F7A8D73028F17C44008BBE1C /* WidgetDashboardIntentHandler.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = WidgetDashboardIntentHandler.entitlements; sourceTree = "<group>"; };
- F7A8D73328F17C62008BBE1C /* WidgetDashboardIntentHandler.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = WidgetDashboardIntentHandler.plist; sourceTree = "<group>"; };
- F7AA41B827C7CF4600494705 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41B927C7CF4B00494705 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41BA27C7CF5000494705 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41BB27C7CF5100494705 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41BC27C7CF5300494705 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41BD27C7CF5400494705 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41BE27C7CF5600494705 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41BF27C7CF5700494705 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41C027C7CF5800494705 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41C127C7CF5900494705 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41C227C7CF5A00494705 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41C327C7CF5B00494705 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41C427C7CF5C00494705 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41C527C7CF5D00494705 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41C627C7CF5E00494705 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41C727C7CF6000494705 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41C827C7CF6200494705 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41C927C7CF6300494705 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41CA27C7CF6400494705 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41CB27C7CF6500494705 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41CC27C7CF6600494705 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41CD27C7CF6700494705 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41CE27C7CF6800494705 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41CF27C7CF6900494705 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41D027C7CF6900494705 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41D127C7CF6A00494705 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41D227C7CF6C00494705 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41D327C7CF6D00494705 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41D427C7CF6E00494705 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41D527C7CF6F00494705 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41D627C7CF7100494705 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41D727C7CF7200494705 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41D827C7CF7300494705 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41D927C7CF7500494705 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41DA27C7CF7600494705 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- F7AA41DB27C7CF7800494705 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41DC27C7CF7900494705 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41DD27C7CF7B00494705 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41DE27C7CF7D00494705 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41DF27C7CF7E00494705 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41E027C7CF8000494705 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AA41E127C7CF8100494705 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- F7AC1CAF28AB94490032D99F /* Array+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Array+Extension.swift"; sourceTree = "<group>"; };
- F7AC9349296193050002BC0F /* Reasons to use Nextcloud.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "Reasons to use Nextcloud.pdf"; sourceTree = SOURCE_ROOT; };
- F7ACE4291BAC0268006C0017 /* Acknowledgements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
- F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
- F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
- F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
- F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
- F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAutoUpload.h; sourceTree = "<group>"; };
- F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAutoUpload.m; sourceTree = "<group>"; };
- F7ACE4301BAC0268006C0017 /* NCSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSettings.h; sourceTree = "<group>"; };
- F7ACE4311BAC0268006C0017 /* NCSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSettings.m; sourceTree = "<group>"; };
- F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginWeb.swift; sourceTree = "<group>"; };
- F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCBrowserWeb.swift; sourceTree = "<group>"; };
- F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCBrowserWeb.storyboard; sourceTree = "<group>"; };
- F7AF7632246BEDFE00B86E3C /* TOPasscodeViewController.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TOPasscodeViewController.framework; path = Carthage/Build/iOS/TOPasscodeViewController.framework; sourceTree = "<group>"; };
- F7B1076C25D3CF2800E72DE2 /* BackgroundTasks.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BackgroundTasks.framework; path = System/Library/Frameworks/BackgroundTasks.framework; sourceTree = SDKROOT; };
- F7B1A7761EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7B6B70327C4E7FA00A7F6EB /* NCScan+CollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCScan+CollectionView.swift"; sourceTree = "<group>"; };
- F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+Extension.swift"; sourceTree = "<group>"; };
- F7B8B82F25681C3400967775 /* GoogleService-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "GoogleService-Info.plist"; sourceTree = SOURCE_ROOT; };
- F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingChunkedUpload.swift; sourceTree = "<group>"; };
- F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDatabase.swift; sourceTree = "<group>"; };
- F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageDatabase.swift; sourceTree = "<group>"; };
- F7BB04851FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewCertificateDetails.storyboard; sourceTree = "<group>"; };
- F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewCertificateDetails.swift; sourceTree = "<group>"; };
- F7BE7C25290AC8C9002ABB61 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C27290ADEFD002ABB61 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C29290ADEFD002ABB61 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C2B290ADEFE002ABB61 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C2D290ADEFF002ABB61 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C2F290ADF00002ABB61 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C31290ADF00002ABB61 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C33290ADF01002ABB61 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C35290ADF03002ABB61 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C37290ADF03002ABB61 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C39290ADF04002ABB61 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C3B290ADF04002ABB61 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C3D290ADF05002ABB61 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C3F290ADF06002ABB61 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C41290ADF06002ABB61 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C43290ADF06002ABB61 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C45290ADF07002ABB61 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C47290ADF07002ABB61 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C49290ADF08002ABB61 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C4B290ADF09002ABB61 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C4D290ADF0A002ABB61 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C4F290ADF0A002ABB61 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C51290ADF0B002ABB61 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C53290ADF0B002ABB61 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C55290ADF0C002ABB61 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C57290ADF0C002ABB61 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C59290ADF0D002ABB61 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C5B290ADF0D002ABB61 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C5D290ADF0E002ABB61 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C5F290ADF0E002ABB61 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C61290ADF10002ABB61 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C63290ADF10002ABB61 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C65290ADF10002ABB61 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C67290ADF11002ABB61 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C69290ADF11002ABB61 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C6B290ADF12002ABB61 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C6D290ADF12002ABB61 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C6F290ADF13002ABB61 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C71290ADF13002ABB61 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C73290ADF14002ABB61 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C75290ADF14002ABB61 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C77290ADF15002ABB61 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Intent.strings; sourceTree = "<group>"; };
- F7BE7C79290ADF16002ABB61 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BE7C7B290ADF16002ABB61 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Intent.strings"; sourceTree = "<group>"; };
- F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+LayoutForView.swift"; sourceTree = "<group>"; };
- F7C1EEA425053A9C00866ACC /* NCDataSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCDataSource.swift; sourceTree = "<group>"; };
- F7C30DF5291BC0CA0017149B /* NCNetworkingE2EEUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EEUpload.swift; sourceTree = "<group>"; };
- F7C30DF9291BCF790017149B /* NCNetworkingE2EECreateFolder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EECreateFolder.swift; sourceTree = "<group>"; };
- F7C30DFC291BD0B80017149B /* NCNetworkingE2EEDelete.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EEDelete.swift; sourceTree = "<group>"; };
- F7C30DFF291BD2610017149B /* NCNetworkingE2EERename.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EERename.swift; sourceTree = "<group>"; };
- F7C40BE221998C050004137E /* PDFGenerator.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PDFGenerator.framework; path = Carthage/Build/iOS/PDFGenerator.framework; sourceTree = "<group>"; };
- F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MGSwipeTableCell.framework; path = Carthage/Build/iOS/MGSwipeTableCell.framework; sourceTree = "<group>"; };
- F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DZNEmptyDataSet.framework; path = Carthage/Build/iOS/DZNEmptyDataSet.framework; sourceTree = "<group>"; };
- F7C40BE8219991A60004137E /* EAIntroView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EAIntroView.framework; path = Carthage/Build/iOS/EAIntroView.framework; sourceTree = "<group>"; };
- F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EARestrictedScrollView.framework; path = Carthage/Build/iOS/EARestrictedScrollView.framework; sourceTree = "<group>"; };
- F7C40BEC219993330004137E /* JDStatusBarNotification.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JDStatusBarNotification.framework; path = Carthage/Build/iOS/JDStatusBarNotification.framework; sourceTree = "<group>"; };
- F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVCocoaHTTPServer.framework; path = Carthage/Build/iOS/KTVCocoaHTTPServer.framework; sourceTree = "<group>"; };
- F7C40BF0219994F20004137E /* KTVHTTPCache.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVHTTPCache.framework; path = Carthage/Build/iOS/KTVHTTPCache.framework; sourceTree = "<group>"; };
- F7C40BF22199978B0004137E /* MBProgressHUD.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MBProgressHUD.framework; path = Carthage/Build/iOS/MBProgressHUD.framework; sourceTree = "<group>"; };
- F7C40C0F2199BA5D0004137E /* Realm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Realm.framework; path = Carthage/Build/iOS/Realm.framework; sourceTree = "<group>"; };
- F7C40C112199BA620004137E /* RealmSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RealmSwift.framework; path = Carthage/Build/iOS/RealmSwift.framework; sourceTree = "<group>"; };
- F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = iOSClient.entitlements; sourceTree = "<group>"; };
- F7C742D01E7BD35B00D9C973 /* Share.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Share.entitlements; sourceTree = "<group>"; };
- F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerQuickLook.swift; sourceTree = "<group>"; };
- F7C9555221F0C4CA0024296E /* NCActivity.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCActivity.storyboard; sourceTree = "<group>"; };
- F7C9555421F0C5470024296E /* NCActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivity.swift; sourceTree = "<group>"; };
- F7C9739028F17131002C43E2 /* WidgetDashboardIntentHandler.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = WidgetDashboardIntentHandler.appex; sourceTree = BUILT_PRODUCTS_DIR; };
- F7C9739128F17131002C43E2 /* Intents.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Intents.framework; path = System/Library/Frameworks/Intents.framework; sourceTree = SDKROOT; };
- F7C9739428F17131002C43E2 /* IntentHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntentHandler.swift; sourceTree = "<group>"; };
- F7CA212B25F1333200826ABB /* NCAccountRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAccountRequest.swift; sourceTree = "<group>"; };
- F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCAccountRequest.storyboard; sourceTree = "<group>"; };
- F7CB68992541676B0050EC94 /* NCMore.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCMore.storyboard; sourceTree = "<group>"; };
- F7CB689F254169530050EC94 /* NCSettings.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCSettings.storyboard; sourceTree = "<group>"; };
- F7CBC31B24F78E79004D3812 /* NCSortMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSortMenu.swift; sourceTree = "<group>"; };
- F7CC04E61F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
- F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
- F7D0F33D264144FC0097D4A3 /* Background.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Background.xcassets; sourceTree = "<group>"; };
- F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerRichWorkspace.storyboard; sourceTree = "<group>"; };
- F7D2C772246470CA008513AE /* XLForm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XLForm.framework; path = Carthage/Build/iOS/XLForm.framework; sourceTree = "<group>"; };
- F7D532461F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7D5324D1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7D532541F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F7D5328F1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F7D532A41F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+DashboardWidget.swift"; sourceTree = "<group>"; };
- F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworkingCheckRemoteUser.swift; sourceTree = "<group>"; };
- F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MarkdownKit.framework; path = Carthage/Build/iOS/MarkdownKit.framework; sourceTree = "<group>"; };
- F7DE9AB01F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
- F7E0710028B13BB00001B882 /* DashboardData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DashboardData.swift; sourceTree = "<group>"; };
- F7E0CDCE265CE8610044854E /* NCUserStatus.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCUserStatus.storyboard; sourceTree = "<group>"; };
- F7E41315294A19B300839300 /* UIView+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Extension.swift"; sourceTree = "<group>"; };
- F7E45E6D21E75BF200579249 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/Localizable.strings"; sourceTree = "<group>"; };
- F7E4D9C322ED929B003675FD /* NCShareCommentsCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCommentsCell.swift; sourceTree = "<group>"; };
- F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftyXMLParser.framework; path = Carthage/Build/iOS/SwiftyXMLParser.framework; sourceTree = "<group>"; };
- F7E8A390295DC5E0006CB2D0 /* View+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Extension.swift"; sourceTree = "<group>"; };
- F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Video.swift"; sourceTree = "<group>"; };
- F7EDE508262DA9D600414FE6 /* NCSelectCommandViewSelect.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSelectCommandViewSelect.xib; sourceTree = "<group>"; };
- F7EDE513262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = "NCSelectCommandViewSelect+CreateFolder.xib"; sourceTree = "<group>"; };
- F7EDE51A262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSelectCommandViewCopyMove.xib; sourceTree = "<group>"; };
- F7EFA47725ADBA500083159A /* NCViewerProviderContextMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerProviderContextMenu.swift; sourceTree = "<group>"; };
- F7EFC0C5256BC77700461AAD /* NCMoreUserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCMoreUserCell.xib; sourceTree = "<group>"; };
- F7EFC0CC256BF8DD00461AAD /* NCUserStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUserStatus.swift; sourceTree = "<group>"; };
- F7F1E54B2492369A00E42386 /* NCMediaCommandView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCMediaCommandView.xib; sourceTree = "<group>"; };
- F7F35B592578FB63003F5589 /* CollaboraOnlineWebViewKeyboardManager.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CollaboraOnlineWebViewKeyboardManager.framework; path = Carthage/Build/iOS/CollaboraOnlineWebViewKeyboardManager.framework; sourceTree = "<group>"; };
- F7F4F0F327ECDBA4008676F9 /* NCSubtitles.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCSubtitles.swift; sourceTree = "<group>"; };
- F7F4F0F527ECDBA4008676F9 /* NCSubtitlePlayer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCSubtitlePlayer.swift; sourceTree = "<group>"; };
- F7F4F0FD27ECDBDB008676F9 /* Inconsolata-SemiBold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-SemiBold.ttf"; sourceTree = "<group>"; };
- F7F4F0FE27ECDBDB008676F9 /* Inconsolata-Medium.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Medium.ttf"; sourceTree = "<group>"; };
- F7F4F0FF27ECDBDB008676F9 /* Inconsolata-Black.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Black.ttf"; sourceTree = "<group>"; };
- F7F4F10027ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-ExtraLight.ttf"; sourceTree = "<group>"; };
- F7F4F10127ECDBDB008676F9 /* Inconsolata-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Bold.ttf"; sourceTree = "<group>"; };
- F7F4F10227ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-ExtraBold.ttf"; sourceTree = "<group>"; };
- F7F4F10327ECDBDB008676F9 /* Inconsolata-Light.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Light.ttf"; sourceTree = "<group>"; };
- F7F4F10427ECDBDB008676F9 /* Inconsolata-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Regular.ttf"; sourceTree = "<group>"; };
- F7F4F10F27ECDC4A008676F9 /* UIDevice+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIDevice+Extension.swift"; sourceTree = "<group>"; };
- F7F4F11127ECDC52008676F9 /* UIFont+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIFont+Extension.swift"; sourceTree = "<group>"; };
- F7F67BB81A24D27800EE80DA /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
- F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEndToEndMetadata.swift; sourceTree = "<group>"; };
- F7F9D1BA25397CE000D9BFF5 /* NCViewer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewer.swift; sourceTree = "<group>"; };
- F7FAFD3928BFA947000777FE /* NCNotification+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCNotification+Menu.swift"; sourceTree = "<group>"; };
- F7FC7D551DC1F93800BB2C6A /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
- F7FF2CB02842159500EBB7A1 /* NCSectionHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSectionHeader.xib; sourceTree = "<group>"; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 2C33C47C23E2C475005F963B /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F72AD71128C24BBB006CB92D /* NextcloudKit in Frameworks */,
- F710FC88277B7D3F00AA9FBF /* RealmSwift in Frameworks */,
- F710FC86277B7D3F00AA9FBF /* Realm in Frameworks */,
- F7EBCDD3277B821700A4EF67 /* UICKeyChainStore in Frameworks */,
- F78D0C852912725600D706AB /* JGProgressHUD in Frameworks */,
- F75E57C325BF0ED2002B72C2 /* SVGKit in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- AF8ED1F62757821000B8DBC4 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F7145A141D12E3B700CAFEEC /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F710FC80277B7D2700AA9FBF /* RealmSwift in Frameworks */,
- F72AD70F28C24BA1006CB92D /* NextcloudKit in Frameworks */,
- F72CD01227A7E92400E59476 /* JGProgressHUD in Frameworks */,
- F710FC7E277B7D2600AA9FBF /* Realm in Frameworks */,
- F73ADD2126554F8E0069EA0D /* SwiftEntryKit in Frameworks */,
- F7EBCDCF277B81FF00A4EF67 /* UICKeyChainStore in Frameworks */,
- F75E57BF25BF0EC8002B72C2 /* SVGKit in Frameworks */,
- F72D7EB7263B1207000B3DFC /* MarkdownKit in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F7346E0D28B0EF5B006CE2D2 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F783030528B4C50600B84583 /* SVGKit in Frameworks */,
- F7346E2528B0FEFA006CE2D2 /* UICKeyChainStore in Frameworks */,
- F783034428B5142B00B84583 /* NextcloudKit in Frameworks */,
- F7346E1328B0EF5B006CE2D2 /* SwiftUI.framework in Frameworks */,
- F7346E2728B0FFF2006CE2D2 /* Realm in Frameworks */,
- F7346E2928B0FFF2006CE2D2 /* RealmSwift in Frameworks */,
- F783030D28B4C59A00B84583 /* SwiftEntryKit in Frameworks */,
- F78D0C832912724F00D706AB /* JGProgressHUD in Frameworks */,
- F7346E1228B0EF5B006CE2D2 /* WidgetKit.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F771E3CD20E2392D00AFB62D /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F7EBCDD1277B820D00A4EF67 /* UICKeyChainStore in Frameworks */,
- F78D0C7F2912722100D706AB /* JGProgressHUD in Frameworks */,
- F75E57C125BF0ECD002B72C2 /* SVGKit in Frameworks */,
- F73ADD2426554FE20069EA0D /* SwiftEntryKit in Frameworks */,
- F710FC82277B7D3500AA9FBF /* Realm in Frameworks */,
- F710FC84277B7D3500AA9FBF /* RealmSwift in Frameworks */,
- F72AD71328C24BCC006CB92D /* NextcloudKit in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F77B0EDC1D118A16002130FE /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F7D56B1A2972405500FA46C4 /* Mantis in Frameworks */,
- F76DA941277B75870082465B /* KTVHTTPCache.xcframework in Frameworks */,
- F7ED547C25EEA65400956C55 /* QRCodeReader in Frameworks */,
- F788ECC7263AAAFA00ADC67F /* MarkdownKit in Frameworks */,
- F77BC3EB293E5268005F2B08 /* Swifter in Frameworks */,
- F7BB7E4727A18C56009B9F29 /* Parchment in Frameworks */,
- F734B06628E75C0100E180D5 /* TLPhotoPicker in Frameworks */,
- F770768E263A8C3400A1BA94 /* FloatingPanel in Frameworks */,
- F710FC7C277B7D0000AA9FBF /* RealmSwift in Frameworks */,
- F758A01227A7F03E0069468B /* JGProgressHUD in Frameworks */,
- F77333882927A72100466E35 /* OpenSSL in Frameworks */,
- F76DA966277B76F30082465B /* UICKeyChainStore in Frameworks */,
- F753BA93281FD8020015BFB6 /* EasyTipView in Frameworks */,
- F76DA95B277B75A90082465B /* TOPasscodeViewController.xcframework in Frameworks */,
- F76DA963277B760E0082465B /* Queuer in Frameworks */,
- F72AD70D28C24B93006CB92D /* NextcloudKit in Frameworks */,
- F75E57BD25BF0EC1002B72C2 /* SVGKit in Frameworks */,
- F70B86752642CE3B00ED5349 /* FirebaseCrashlytics in Frameworks */,
- F76DA969277B77EA0082465B /* DropDown in Frameworks */,
- F75EAED826D2552E00F4320E /* MarqueeLabel in Frameworks */,
- F710FC7A277B7D0000AA9FBF /* Realm in Frameworks */,
- F72DA9B425F53E4E00B87DB1 /* SwiftRichString in Frameworks */,
- F74E7720277A2EF40013B958 /* XLForm in Frameworks */,
- F73ADD1C265546890069EA0D /* SwiftEntryKit in Frameworks */,
- F76DA93F277B75870082465B /* KTVCocoaHTTPServer.xcframework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F7C9738D28F17131002C43E2 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F7A8D72A28F17733008BBE1C /* SVGKit in Frameworks */,
- F7A8D72828F17728008BBE1C /* RealmSwift in Frameworks */,
- F7A8D72E28F17764008BBE1C /* UICKeyChainStore in Frameworks */,
- F7A8D72C28F17742008BBE1C /* SwiftEntryKit in Frameworks */,
- F78D0C812912723900D706AB /* JGProgressHUD in Frameworks */,
- F7A8D72628F17728008BBE1C /* Realm in Frameworks */,
- F7A8D72428F1771B008BBE1C /* NextcloudKit in Frameworks */,
- F7C9739228F17131002C43E2 /* Intents.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 2C33C48023E2C475005F963B /* Notification Service Extension */ = {
- isa = PBXGroup;
- children = (
- 2C33C48123E2C475005F963B /* NotificationService.swift */,
- 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */,
- );
- path = "Notification Service Extension";
- sourceTree = "<group>";
- };
- 371B5A2F23D0B04B00FAFAE9 /* Menu */ = {
- isa = PBXGroup;
- children = (
- 3704EB2923D5A58400455C5B /* NCMenu.storyboard */,
- 371B5A2D23D0B04500FAFAE9 /* NCMenu.swift */,
- AF68326927BE65A90010BF0B /* NCMenuAction.swift */,
- F7FAFD3928BFA947000777FE /* NCNotification+Menu.swift */,
- AF935066276B84E700BD078F /* NCMenu+FloatingPanel.swift */,
- 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */,
- 8491B1CC273BBA82001C8C5B /* UIViewController+Menu.swift */,
- F77A697C250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift */,
- F7581D1925EFDA60004DC699 /* NCLoginWeb+Menu.swift */,
- F7581D2325EFDDDF004DC699 /* NCMedia+Menu.swift */,
- F7CBC31B24F78E79004D3812 /* NCSortMenu.swift */,
- F75D19E225EFE09000D74598 /* NCTrash+Menu.swift */,
- AF93471127E2341B002537EE /* NCShare+Menu.swift */,
- F710D2012405826100A6033D /* NCViewer+Menu.swift */,
- F78C6FDD296D677300C952C3 /* NCContextMenu.swift */,
- );
- path = Menu;
- sourceTree = "<group>";
- };
- AF8ED1FA2757821000B8DBC4 /* NextcloudTests */ = {
- isa = PBXGroup;
- children = (
- AF8ED2022757822700B8DBC4 /* NCGlobalTests.swift */,
- AF36077527BFB019001A243D /* ParallelWorkerTest.swift */,
- AF70C14C27F3484D00E13DF2 /* SharePermissionTest.swift */,
- AF3F909928213BEA0048A93E /* UserAgentTests.swift */,
- AF8ED1FB2757821000B8DBC4 /* NextcloudTests.swift */,
- );
- path = NextcloudTests;
- sourceTree = "<group>";
- };
- AF93471327E235EB002537EE /* Advanced */ = {
- isa = PBXGroup;
- children = (
- AF93471627E2361E002537EE /* NCShareAdvancePermission.swift */,
- AF93471827E2361E002537EE /* NCShareAdvancePermissionFooter.swift */,
- AF93471427E2361E002537EE /* NCShareAdvancePermissionFooter.xib */,
- AF93471527E2361E002537EE /* NCShareAdvancePermissionHeader.swift */,
- AF93471727E2361E002537EE /* NCShareAdvancePermissionHeader.xib */,
- AFCE353627E4ED7B00FEA6C2 /* NCShareCells.swift */,
- AF93474D27E3F211002537EE /* NCShareNewUserAddComment.swift */,
- );
- path = Advanced;
- sourceTree = "<group>";
- };
- F70211F31BAC56E9003FC03E /* Main */ = {
- isa = PBXGroup;
- children = (
- F702F2E325EE5C82008F8E80 /* AudioRecorder */,
- F7DFB7E9219C5A0500680748 /* Create cloud */,
- F78ACD50219046AC0088454D /* Section Header Footer */,
- F7603298252F0E550015A421 /* Collection Common */,
- 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */,
- F7226EDB1EE4089300EBECB1 /* Main.storyboard */,
- F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */,
- F75B0ABC244C4DBB00E58DCA /* NCFunctionCenter.swift */,
- F77444F7222816D5000D5EB0 /* NCPickerViewController.swift */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- F702F2E325EE5C82008F8E80 /* AudioRecorder */ = {
- isa = PBXGroup;
- children = (
- F702F2E425EE5C82008F8E80 /* NCAudioRecorderViewController.swift */,
- F702F2E525EE5C82008F8E80 /* NCAudioRecorderViewController.storyboard */,
- );
- path = AudioRecorder;
- sourceTree = "<group>";
- };
- F702F2FC25EE5D2C008F8E80 /* NYMnemonic */ = {
- isa = PBXGroup;
- children = (
- F702F2FD25EE5D2C008F8E80 /* NYMnemonic.m */,
- F702F2FE25EE5D2C008F8E80 /* languages */,
- F702F30025EE5D2C008F8E80 /* NYMnemonic.h */,
- );
- path = NYMnemonic;
- sourceTree = "<group>";
- };
- F702F2FE25EE5D2C008F8E80 /* languages */ = {
- isa = PBXGroup;
- children = (
- F702F2FF25EE5D2C008F8E80 /* english.txt */,
- );
- path = languages;
- sourceTree = "<group>";
- };
- F70B866A2642A21300ED5349 /* Color */ = {
- isa = PBXGroup;
- children = (
- F719D9DF288D37A300762E33 /* NCColorPicker.storyboard */,
- F719D9E1288D396100762E33 /* NCColorPicker.swift */,
- );
- path = Color;
- sourceTree = "<group>";
- };
- F70D87CC25EE6E58008CBBBD /* Rename file */ = {
- isa = PBXGroup;
- children = (
- F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */,
- F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */,
- );
- path = "Rename file";
- sourceTree = "<group>";
- };
- F710E80C1EF95C9C00DC2427 /* Intro */ = {
- isa = PBXGroup;
- children = (
- F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */,
- F749C10923C4A5330027D966 /* NCIntro.storyboard */,
- F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */,
- F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */,
- F749C10823C4A5330027D966 /* NCIntroViewController.swift */,
- );
- path = Intro;
- sourceTree = "<group>";
- };
- F713418B2597513800768D21 /* PushNotification */ = {
- isa = PBXGroup;
- children = (
- F7134184259747BA00768D21 /* NCPushNotification.h */,
- F7134185259747BA00768D21 /* NCPushNotification.m */,
- );
- path = PushNotification;
- sourceTree = "<group>";
- };
- F7169A161EE590930086BD69 /* Shares */ = {
- isa = PBXGroup;
- children = (
- F74C0435253F1CDC009762AB /* NCShares.storyboard */,
- F74C0434253F1CDC009762AB /* NCShares.swift */,
- );
- path = Shares;
- sourceTree = "<group>";
- };
- F720B5B72507B9A5008C94E5 /* Cell */ = {
- isa = PBXGroup;
- children = (
- F77444F322281649000D5EB0 /* NCGridMediaCell.swift */,
- F77444F422281649000D5EB0 /* NCGridMediaCell.xib */,
- );
- path = Cell;
- sourceTree = "<group>";
- };
- F7239861253C95D500257F49 /* NCViewerRichdocument */ = {
- isa = PBXGroup;
- children = (
- F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */,
- F723985B253C95CE00257F49 /* NCViewerRichdocument.storyboard */,
- );
- path = NCViewerRichdocument;
- sourceTree = "<group>";
- };
- F723986A253C9C0E00257F49 /* NCViewerQuickLook */ = {
- isa = PBXGroup;
- children = (
- F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */,
- F7A48412297022E000BD1B49 /* ViewerQuickLook.swift */,
- );
- path = NCViewerQuickLook;
- sourceTree = "<group>";
- };
- F723986F253D867900257F49 /* EmptyView */ = {
- isa = PBXGroup;
- children = (
- F7239870253D86B600257F49 /* NCEmptyDataSet.swift */,
- F7239876253D86D300257F49 /* NCEmptyView.xib */,
- );
- path = EmptyView;
- sourceTree = "<group>";
- };
- F728CE741BF6322C00E69702 /* Share */ = {
- isa = PBXGroup;
- children = (
- AF93471327E235EB002537EE /* Advanced */,
- F700510022DF63AC003A3356 /* NCShare.storyboard */,
- F700510422DF6A89003A3356 /* NCShare.swift */,
- AFCE353827E5DE0400FEA6C2 /* NCShare+Helper.swift */,
- AF730AF727834B1400B7520E /* NCShare+NCCellDelegate.swift */,
- F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */,
- F7E4D9C322ED929B003675FD /* NCShareCommentsCell.swift */,
- F769454522E9F1B0000A798A /* NCShareCommon.swift */,
- F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */,
- F787704E22E7019900F287A9 /* NCShareLinkCell.xib */,
- AF2D7C7B2742556F00ADF566 /* NCShareLinkCell.swift */,
- F769454722E9F20D000A798A /* NCShareNetworking.swift */,
- F769453F22E9F077000A798A /* NCSharePaging.swift */,
- F774264822EB4D0000B23912 /* NCSearchUserDropDownCell.xib */,
- F769453B22E9CFFF000A798A /* NCShareUserCell.xib */,
- AF2D7C7D2742559100ADF566 /* NCShareUserCell.swift */,
- );
- path = Share;
- sourceTree = "<group>";
- };
- F72B60941A24F04E004EF66F /* Localizations */ = {
- isa = PBXGroup;
- children = (
- F7E70DE91A24DE4100E1B66A /* Localizable.strings */,
- F72685E927C78E490019EF5E /* InfoPlist.strings */,
- );
- name = Localizations;
- sourceTree = "<group>";
- };
- F72EA95528B7BAD100C88F0C /* Dashboard */ = {
- isa = PBXGroup;
- children = (
- F7E0710028B13BB00001B882 /* DashboardData.swift */,
- F72EA95128B7BA2A00C88F0C /* DashboardWidgetProvider.swift */,
- F72A17D728B221E300F3F159 /* DashboardWidgetView.swift */,
- );
- path = Dashboard;
- sourceTree = "<group>";
- };
- F72EA95628B7BAE700C88F0C /* Files */ = {
- isa = PBXGroup;
- children = (
- F72EA95728B7BC4F00C88F0C /* FilesData.swift */,
- F72EA95328B7BABA00C88F0C /* FilesWidgetProvider.swift */,
- F72EA95928B7BD0D00C88F0C /* FilesWidgetView.swift */,
- );
- path = Files;
- sourceTree = "<group>";
- };
- F7346E1428B0EF5B006CE2D2 /* Widget */ = {
- isa = PBXGroup;
- children = (
- F7346E2228B0FEBA006CE2D2 /* Assets.xcassets */,
- F72EA95528B7BAD100C88F0C /* Dashboard */,
- F72EA95628B7BAE700C88F0C /* Files */,
- F76DEE9A28F808BC0041B1C9 /* Lockscreen */,
- F77ED59628C9CEEE00E24ED0 /* Toolbar */,
- F75DD764290AB369002EB562 /* Intent */,
- F7346E2028B0FA3A006CE2D2 /* Widget-Brinding-header.h */,
- F7346E1528B0EF5C006CE2D2 /* Widget.swift */,
- );
- path = Widget;
- sourceTree = "<group>";
- };
- F7381ED9218218A4000B1560 /* Offline */ = {
- isa = PBXGroup;
- children = (
- F7381EDE218218C9000B1560 /* NCOffline.storyboard */,
- F7381EDA218218C9000B1560 /* NCOffline.swift */,
- );
- path = Offline;
- sourceTree = "<group>";
- };
- F73D11FF253C5F5400DF9BEC /* NCViewerNextcloudText */ = {
- isa = PBXGroup;
- children = (
- F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */,
- F73D11F9253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard */,
- );
- path = NCViewerNextcloudText;
- sourceTree = "<group>";
- };
- F73FAEE224D2CA830090692E /* Diagnostics */ = {
- isa = PBXGroup;
- children = (
- F70A58BF24D0545100DED00D /* NCCapabilitiesViewController.storyboard */,
- F70A58BD24D0349500DED00D /* NCCapabilitiesViewController.swift */,
- );
- path = Diagnostics;
- sourceTree = "<group>";
- };
- F74D3DB81BAC1941000BAE4B /* Networking */ = {
- isa = PBXGroup;
- children = (
- F7C30DF8291BCBF00017149B /* E2EE */,
- F72CD63925C19EBF00F46F9A /* NCAutoUpload.swift */,
- F75A9EE523796C6F0044CFCE /* NCNetworking.swift */,
- F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */,
- F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */,
- F70D8D8024A4A9BF000A5756 /* NCNetworkingProcessUpload.swift */,
- F72A47EB2487B06B005AD489 /* NCOperationQueue.swift */,
- F755BD9A20594AC7008C5FBB /* NCService.swift */,
- F77BC3EC293E528A005F2B08 /* NCConfigServer.swift */,
- );
- path = Networking;
- sourceTree = "<group>";
- };
- F758B41E212C516300515F55 /* Scan document */ = {
- isa = PBXGroup;
- children = (
- F758B457212C564000515F55 /* NCScan.storyboard */,
- F758B45D212C569C00515F55 /* NCScanCell.swift */,
- F758B45F212C56A400515F55 /* NCScan.swift */,
- F7B6B70327C4E7FA00A7F6EB /* NCScan+CollectionView.swift */,
- F765E9CC295C585800A09ED8 /* NCUploadScanDocument.swift */,
- F714560F296433C80038D028 /* NCDocumentCamera.swift */,
- );
- path = "Scan document";
- sourceTree = "<group>";
- };
- F75DD764290AB369002EB562 /* Intent */ = {
- isa = PBXGroup;
- children = (
- F75DD769290ABB25002EB562 /* Intent.intentdefinition */,
- );
- path = Intent;
- sourceTree = "<group>";
- };
- F7603298252F0E550015A421 /* Collection Common */ = {
- isa = PBXGroup;
- children = (
- F70D7C3525FFBF81002B9E34 /* NCCollectionViewCommon.swift */,
- AF7E504F27A2D92300B5E4AF /* NCSelectableNavigationView.swift */,
- F78ACD3F21903CC20088454D /* NCGridCell.swift */,
- F78ACD4521903D010088454D /* NCGridCell.xib */,
- F78ACD4121903CE00088454D /* NCListCell.swift */,
- F78ACD4321903CF20088454D /* NCListCell.xib */,
- );
- path = "Collection Common";
- sourceTree = "<group>";
- };
- F765F72E25237E3F00391DBE /* Recent */ = {
- isa = PBXGroup;
- children = (
- F765F73025237E3F00391DBE /* NCRecent.storyboard */,
- F765F72F25237E3F00391DBE /* NCRecent.swift */,
- );
- path = Recent;
- sourceTree = "<group>";
- };
- F769CA1B2966EF4F00039397 /* GUI */ = {
- isa = PBXGroup;
- children = (
- F75CA1462962F13700B01130 /* HUDView.swift */,
- F769CA182966EA3C00039397 /* ComponentView.swift */,
- );
- path = GUI;
- sourceTree = "<group>";
- };
- F76D3CEF2428B3DD005DFA87 /* NCViewerPDF */ = {
- isa = PBXGroup;
- children = (
- F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */,
- F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */,
- F710D1F42405770F00A6033D /* NCViewerPDF.swift */,
- F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */,
- );
- path = NCViewerPDF;
- sourceTree = "<group>";
- };
- F76DEE9A28F808BC0041B1C9 /* Lockscreen */ = {
- isa = PBXGroup;
- children = (
- F76DEE9428F808AF0041B1C9 /* LockscreenData.swift */,
- F76DEE9528F808AF0041B1C9 /* LockscreenWidgetProvider.swift */,
- F76DEE9628F808AF0041B1C9 /* LockscreenWidgetView.swift */,
- );
- path = Lockscreen;
- sourceTree = "<group>";
- };
- F771E3D120E2392D00AFB62D /* File Provider Extension */ = {
- isa = PBXGroup;
- children = (
- F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */,
- F771E3F220E239A600AFB62D /* FileProviderData.swift */,
- F76673EC22C901F5007ED366 /* FileProviderDomain.swift */,
- F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */,
- F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */,
- F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */,
- F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */,
- F771E3D420E2392D00AFB62D /* FileProviderItem.swift */,
- F76673EF22C90433007ED366 /* FileProviderUtility.swift */,
- );
- path = "File Provider Extension";
- sourceTree = "<group>";
- };
- F7725A5D251F33BB00D125E0 /* Files */ = {
- isa = PBXGroup;
- children = (
- F7725A5F251F33BB00D125E0 /* NCFiles.storyboard */,
- F7725A5E251F33BB00D125E0 /* NCFiles.swift */,
- );
- path = Files;
- sourceTree = "<group>";
- };
- F77ED59628C9CEEE00E24ED0 /* Toolbar */ = {
- isa = PBXGroup;
- children = (
- F77ED59028C9CE9D00E24ED0 /* ToolbarData.swift */,
- F77ED59228C9CEA000E24ED0 /* ToolbarWidgetProvider.swift */,
- F77ED59428C9CEA300E24ED0 /* ToolbarWidgetView.swift */,
- );
- path = Toolbar;
- sourceTree = "<group>";
- };
- F78ACD4721903F850088454D /* Cell */ = {
- isa = PBXGroup;
- children = (
- F78ACD4821903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift */,
- F78ACD4921903F850088454D /* NCTrashListCell.xib */,
- );
- path = Cell;
- sourceTree = "<group>";
- };
- F78ACD50219046AC0088454D /* Section Header Footer */ = {
- isa = PBXGroup;
- children = (
- F78ACD53219047D40088454D /* NCSectionFooter.xib */,
- F7FF2CB02842159500EBB7A1 /* NCSectionHeader.xib */,
- F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */,
- F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */,
- );
- path = "Section Header Footer";
- sourceTree = "<group>";
- };
- F78F74322163753B00C2ADAD /* Trash */ = {
- isa = PBXGroup;
- children = (
- F78ACD4721903F850088454D /* Cell */,
- F78F74332163757000C2ADAD /* NCTrash.storyboard */,
- F78F74352163781100C2ADAD /* NCTrash.swift */,
- AF3FDCC12796ECC300710F60 /* NCTrash+CollectionView.swift */,
- );
- path = Trash;
- sourceTree = "<group>";
- };
- F79018B1240962C7007C9B6D /* NCViewerMedia */ = {
- isa = PBXGroup;
- children = (
- F79EDA9E26B004980007D134 /* NCPlayer */,
- F70753F62542A9C000972D44 /* NCViewerMediaPage.storyboard */,
- F70753EA2542A99800972D44 /* NCViewerMediaPage.swift */,
- F718C24D254D507B00C5C256 /* NCViewerMediaDetailView.swift */,
- F70753F02542A9A200972D44 /* NCViewerMedia.swift */,
- );
- path = NCViewerMedia;
- sourceTree = "<group>";
- };
- F7903A4A2948CAC300203DA5 /* ExternalResources */ = {
- isa = PBXGroup;
- children = (
- F71CD6C92930D7B1006C95C1 /* NCApplicationHandle.swift */,
- );
- path = ExternalResources;
- sourceTree = "<group>";
- };
- F79630EC215526B60015EEA5 /* Viewer */ = {
- isa = PBXGroup;
- children = (
- F7F9D1BA25397CE000D9BFF5 /* NCViewer.swift */,
- F7EFA47725ADBA500083159A /* NCViewerProviderContextMenu.swift */,
- F79018B1240962C7007C9B6D /* NCViewerMedia */,
- F723986A253C9C0E00257F49 /* NCViewerQuickLook */,
- F76D3CEF2428B3DD005DFA87 /* NCViewerPDF */,
- F73D11FF253C5F5400DF9BEC /* NCViewerNextcloudText */,
- F7239861253C95D500257F49 /* NCViewerRichdocument */,
- );
- path = Viewer;
- sourceTree = "<group>";
- };
- F79A65C12191D8DC00FF6DCC /* Select */ = {
- isa = PBXGroup;
- children = (
- F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */,
- F79A65C52191D95E00FF6DCC /* NCSelect.swift */,
- F7EDE51A262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib */,
- F7EDE513262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib */,
- F7EDE508262DA9D600414FE6 /* NCSelectCommandViewSelect.xib */,
- );
- path = Select;
- sourceTree = "<group>";
- };
- F79EDA9E26B004980007D134 /* NCPlayer */ = {
- isa = PBXGroup;
- children = (
- F7F4F0F227ECDBA4008676F9 /* NCSubtitle */,
- F79EDAA126B004980007D134 /* NCPlayer.swift */,
- F732D23227CF8AED000B0F1B /* NCPlayerToolBar.xib */,
- F79EDA9F26B004980007D134 /* NCPlayerToolBar.swift */,
- F716B75E26F09DF600D37EFC /* NCKTVHTTPCache.swift */,
- );
- path = NCPlayer;
- sourceTree = "<group>";
- };
- F7A0D14E259229FA008F8A13 /* Extensions */ = {
- isa = PBXGroup;
- children = (
- F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */,
- F79B869A265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift */,
- F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */,
- F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */,
- F7A0D1342591FBC5008F8A13 /* String+Extension.swift */,
- AFD3323F276A02C000F5AE02 /* UIApplication+Extension.swift */,
- AFCE353227E4ED1900FEA6C2 /* UIToolbar+Extension.swift */,
- AF1A9B6327D0CA1E00F17A9E /* UIAlertController+Extension.swift */,
- AFCE353427E4ED5900FEA6C2 /* DateFormatter+Extension.swift */,
- AF7E504D27A2D8FF00B5E4AF /* UIBarButton+Extension.swift */,
- F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */,
- F79B645F26CA661600838ACA /* UIControl+Extension.swift */,
- F7AC1CAF28AB94490032D99F /* Array+Extension.swift */,
- F7F4F10F27ECDC4A008676F9 /* UIDevice+Extension.swift */,
- F77BB747289985270090FC19 /* UITabBarController+Extension.swift */,
- F77BB745289984CA0090FC19 /* UIViewController+Extension.swift */,
- F77BB7492899857B0090FC19 /* UINavigationController+Extension.swift */,
- F7F4F11127ECDC52008676F9 /* UIFont+Extension.swift */,
- F7E41315294A19B300839300 /* UIView+Extension.swift */,
- F7E8A390295DC5E0006CB2D0 /* View+Extension.swift */,
- F713FEFE2472764000214AF6 /* UIImage+animatedGIF.h */,
- F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */,
- F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */,
- );
- path = Extensions;
- sourceTree = "<group>";
- };
- F7A3214D1E9E2A070069AD1B /* Favorites */ = {
- isa = PBXGroup;
- children = (
- F717402B24F699A5000C87D5 /* NCFavorite.storyboard */,
- F717402C24F699A5000C87D5 /* NCFavorite.swift */,
- );
- path = Favorites;
- sourceTree = "<group>";
- };
- F7A321621E9E37960069AD1B /* Activity */ = {
- isa = PBXGroup;
- children = (
- F7C9555221F0C4CA0024296E /* NCActivity.storyboard */,
- AF56C1DB2784856200D8BAE2 /* NCActivityCommentView.xib */,
- F7C9555421F0C5470024296E /* NCActivity.swift */,
- AFA2AC8427849604008E1EA7 /* NCActivityCommentView.swift */,
- D5B6AA7727200C7200D49C24 /* NCActivityTableViewCell.swift */,
- );
- path = Activity;
- sourceTree = "<group>";
- };
- F7ACE4281BAC0268006C0017 /* Settings */ = {
- isa = PBXGroup;
- children = (
- F77910A425DD517B00CEDB9E /* Settings.bundle */,
- F77910AA25DD53C700CEDB9E /* NCSettingsBundleHelper.swift */,
- F7CB689F254169530050EC94 /* NCSettings.storyboard */,
- F7ACE4291BAC0268006C0017 /* Acknowledgements.h */,
- F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */,
- F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */,
- F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */,
- F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */,
- F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */,
- F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */,
- F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */,
- F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */,
- F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */,
- F7ACE4301BAC0268006C0017 /* NCSettings.h */,
- F7ACE4311BAC0268006C0017 /* NCSettings.m */,
- F7A7FA6229265CF4000603EF /* NCManageE2EE.swift */,
- F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */,
- );
- path = Settings;
- sourceTree = "<group>";
- };
- F7AE00F6230E8191007ACF8A /* BrowserWeb */ = {
- isa = PBXGroup;
- children = (
- F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */,
- F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */,
- );
- path = BrowserWeb;
- sourceTree = "<group>";
- };
- F7BAAD951ED5A63D00B7EAD4 /* Data */ = {
- isa = PBXGroup;
- children = (
- F7C1EEA425053A9C00866ACC /* NCDataSource.swift */,
- F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */,
- F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */,
- F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */,
- AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */,
- F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */,
- AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */,
- F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */,
- F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */,
- F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */,
- AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */,
- F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */,
- F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */,
- );
- path = Data;
- sourceTree = "<group>";
- };
- F7BFFA621A24D7300044ED85 /* Login */ = {
- isa = PBXGroup;
- children = (
- F702F2F025EE5CDA008F8E80 /* NCLogin.storyboard */,
- F702F2F625EE5CEC008F8E80 /* NCLogin.swift */,
- F738D48F2756740100CD1D38 /* NCLoginNavigationController.swift */,
- F745B252222D88AE00346520 /* NCLoginQRCode.swift */,
- F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */,
- );
- path = Login;
- sourceTree = "<group>";
- };
- F7BFFA991A24D7BB0044ED85 /* Utility */ = {
- isa = PBXGroup;
- children = (
- F702F2FC25EE5D2C008F8E80 /* NYMnemonic */,
- F7053E3C1C639DF500741EA5 /* CCUtility.h */,
- F7053E3D1C639DF500741EA5 /* CCUtility.m */,
- F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */,
- F733598025C1C188002ABA72 /* NCAskAuthorization.swift */,
- F77C97382953131000FDDD09 /* NCCameraRoll.swift */,
- F765608E23BF813500765969 /* NCContentPresenter.swift */,
- F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */,
- F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */,
- F707C26421A2DC5200F6181E /* NCStoreReview.swift */,
- AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */,
- F70BFC7320E0FA7C00C67599 /* NCUtility.swift */,
- AF93474B27E34120002537EE /* NCUtility+Image.swift */,
- F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */,
- AF36077027BFA4E8001A243D /* ParallelWorker.swift */,
- F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */,
- );
- path = Utility;
- sourceTree = "<group>";
- };
- F7C0F46D1C8880540059EC54 /* Share */ = {
- isa = PBXGroup;
- children = (
- F714803A262EBE3900693E51 /* MainInterface.storyboard */,
- F7148040262EBE4000693E51 /* NCShareExtension.swift */,
- AF730AF927843E4C00B7520E /* NCShareExtension+NCDelegate.swift */,
- AF22B215277D196700DAB0CC /* NCShareExtension+DataSource.swift */,
- AF22B216277D196700DAB0CC /* NCShareExtension+Files.swift */,
- AF22B20B277C6F4D00DAB0CC /* NCShareCell.swift */,
- F7148046262EBE4B00693E51 /* Share-Bridging-Header.h */,
- );
- path = Share;
- sourceTree = "<group>";
- };
- F7C1CDD91E6DFC6F005D92BE /* Brand */ = {
- isa = PBXGroup;
- children = (
- F7C742D31E7BD36600D9C973 /* Supporting Files */,
- F710E80C1EF95C9C00DC2427 /* Intro */,
- F700222B1EC479840080073F /* Custom.xcassets */,
- F7D0F33D264144FC0097D4A3 /* Background.xcassets */,
- F7B8B82F25681C3400967775 /* GoogleService-Info.plist */,
- F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */,
- F70F96AF2874394B006C8379 /* Nextcloud-Bridging-Header.h */,
- F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */,
- F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */,
- );
- path = Brand;
- sourceTree = "<group>";
- };
- F7C30DF8291BCBF00017149B /* E2EE */ = {
- isa = PBXGroup;
- children = (
- F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */,
- F7C30DFF291BD2610017149B /* NCNetworkingE2EERename.swift */,
- F7C30DFC291BD0B80017149B /* NCNetworkingE2EEDelete.swift */,
- F7C30DF9291BCF790017149B /* NCNetworkingE2EECreateFolder.swift */,
- F7C30DF5291BC0CA0017149B /* NCNetworkingE2EEUpload.swift */,
- );
- path = E2EE;
- sourceTree = "<group>";
- };
- F7C5259A1E3B441D00FFE02C /* Notification */ = {
- isa = PBXGroup;
- children = (
- F73B42292476764F00A30FD3 /* NCNotification.storyboard */,
- F73B422A2476764F00A30FD3 /* NCNotification.swift */,
- );
- name = Notification;
- sourceTree = "<group>";
- };
- F7C742D31E7BD36600D9C973 /* Supporting Files */ = {
- isa = PBXGroup;
- children = (
- F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */,
- F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */,
- F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */,
- F7496B81208F5651004B299C /* iOSClient.plist */,
- F728B2BC23E83AD200E12DA0 /* Notification_Service_Extension.entitlements */,
- F728B2BB23E83AD200E12DA0 /* Notification_Service_Extension.plist */,
- F7C742D01E7BD35B00D9C973 /* Share.entitlements */,
- F7496B83208F5652004B299C /* Share.plist */,
- F783033F28B50B7E00B84583 /* Widget.entitlements */,
- F7346E2128B0FBEE006CE2D2 /* Widget.plist */,
- F7A8D73028F17C44008BBE1C /* WidgetDashboardIntentHandler.entitlements */,
- F7A8D73328F17C62008BBE1C /* WidgetDashboardIntentHandler.plist */,
- );
- name = "Supporting Files";
- sourceTree = "<group>";
- };
- F7C9739328F17131002C43E2 /* WidgetDashboardIntentHandler */ = {
- isa = PBXGroup;
- children = (
- F7A8D72228F176B6008BBE1C /* WidgetDashboardIntentHandler-Brinding-header.h */,
- F7C9739428F17131002C43E2 /* IntentHandler.swift */,
- );
- path = WidgetDashboardIntentHandler;
- sourceTree = "<group>";
- };
- F7CA213725F1372B00826ABB /* Account Request */ = {
- isa = PBXGroup;
- children = (
- F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */,
- F7CA212B25F1333200826ABB /* NCAccountRequest.swift */,
- F7A60F85292D215000FCE1F2 /* NCTalkAccounts.storyboard */,
- F7A60F84292D215000FCE1F2 /* NCTalkAccounts.swift */,
- );
- path = "Account Request";
- sourceTree = "<group>";
- };
- F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */ = {
- isa = PBXGroup;
- children = (
- F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */,
- F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */,
- F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */,
- F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */,
- );
- path = RichWorkspace;
- sourceTree = "<group>";
- };
- F7CB68942541670D0050EC94 /* More */ = {
- isa = PBXGroup;
- children = (
- F7EFC0C5256BC77700461AAD /* NCMoreUserCell.xib */,
- F7CB68992541676B0050EC94 /* NCMore.storyboard */,
- F73F537E1E929C8500F8678D /* NCMore.swift */,
- );
- path = More;
- sourceTree = "<group>";
- };
- F7DFB7E9219C5A0500680748 /* Create cloud */ = {
- isa = PBXGroup;
- children = (
- F769CA162965AB7C00039397 /* NCUploadAssets.swift */,
- F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */,
- F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */,
- F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */,
- F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */,
- F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */,
- F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */,
- F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */,
- F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */,
- );
- path = "Create cloud";
- sourceTree = "<group>";
- };
- F7E9C41320F4CA870040CF18 /* Transfers */ = {
- isa = PBXGroup;
- children = (
- F760329D252F0F8E0015A421 /* NCTransferCell.swift */,
- F760329E252F0F8E0015A421 /* NCTransferCell.xib */,
- F74DE14225135B6800917068 /* NCTransfers.storyboard */,
- F74DE14125135B6800917068 /* NCTransfers.swift */,
- );
- path = Transfers;
- sourceTree = "<group>";
- };
- F7EC9CB921185F2000F1C5CE /* Media */ = {
- isa = PBXGroup;
- children = (
- F720B5B72507B9A5008C94E5 /* Cell */,
- F7501C302212E57400FB1415 /* NCMedia.storyboard */,
- F7501C312212E57400FB1415 /* NCMedia.swift */,
- F7F1E54B2492369A00E42386 /* NCMediaCommandView.xib */,
- );
- path = Media;
- sourceTree = "<group>";
- };
- F7EFC0CB256BF89300461AAD /* UserStatus */ = {
- isa = PBXGroup;
- children = (
- F7EFC0CC256BF8DD00461AAD /* NCUserStatus.swift */,
- F7E0CDCE265CE8610044854E /* NCUserStatus.storyboard */,
- );
- path = UserStatus;
- sourceTree = "<group>";
- };
- F7F4F0F227ECDBA4008676F9 /* NCSubtitle */ = {
- isa = PBXGroup;
- children = (
- F7F4F0F327ECDBA4008676F9 /* NCSubtitles.swift */,
- F7F4F0F527ECDBA4008676F9 /* NCSubtitlePlayer.swift */,
- );
- path = NCSubtitle;
- sourceTree = "<group>";
- };
- F7F4F0FB27ECDBDA008676F9 /* Font */ = {
- isa = PBXGroup;
- children = (
- F7F4F0FC27ECDBDB008676F9 /* Inconsolata */,
- );
- path = Font;
- sourceTree = "<group>";
- };
- F7F4F0FC27ECDBDB008676F9 /* Inconsolata */ = {
- isa = PBXGroup;
- children = (
- F7F4F0FD27ECDBDB008676F9 /* Inconsolata-SemiBold.ttf */,
- F7F4F0FE27ECDBDB008676F9 /* Inconsolata-Medium.ttf */,
- F7F4F0FF27ECDBDB008676F9 /* Inconsolata-Black.ttf */,
- F7F4F10027ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf */,
- F7F4F10127ECDBDB008676F9 /* Inconsolata-Bold.ttf */,
- F7F4F10227ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf */,
- F7F4F10327ECDBDB008676F9 /* Inconsolata-Light.ttf */,
- F7F4F10427ECDBDB008676F9 /* Inconsolata-Regular.ttf */,
- );
- path = Inconsolata;
- sourceTree = "<group>";
- };
- F7F67B9F1A24D27800EE80DA = {
- isa = PBXGroup;
- children = (
- F7F67BAA1A24D27800EE80DA /* iOSClient */,
- F7F67BAB1A24D27800EE80DA /* Supporting Files */,
- F771E3D120E2392D00AFB62D /* File Provider Extension */,
- F7C0F46D1C8880540059EC54 /* Share */,
- 2C33C48023E2C475005F963B /* Notification Service Extension */,
- AF8ED1FA2757821000B8DBC4 /* NextcloudTests */,
- F7346E1428B0EF5B006CE2D2 /* Widget */,
- F7C9739328F17131002C43E2 /* WidgetDashboardIntentHandler */,
- F7FC7D651DC1F98700BB2C6A /* Products */,
- F7FC7D541DC1F93700BB2C6A /* Frameworks */,
- F771E3D020E2392D00AFB62D /* File Provider Extension.appex */,
- 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */,
- AF8ED1F92757821000B8DBC4 /* NextcloudTests.xctest */,
- F7346E1028B0EF5B006CE2D2 /* Widget.appex */,
- F7C9739028F17131002C43E2 /* WidgetDashboardIntentHandler.appex */,
- );
- sourceTree = "<group>";
- };
- F7F67BAA1A24D27800EE80DA /* iOSClient */ = {
- isa = PBXGroup;
- children = (
- F702F2CC25EE5B4F008F8E80 /* AppDelegate.swift */,
- F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */,
- F7F67BB81A24D27800EE80DA /* Images.xcassets */,
- F769CA1B2966EF4F00039397 /* GUI */,
- F7C1CDD91E6DFC6F005D92BE /* Brand */,
- F70211F31BAC56E9003FC03E /* Main */,
- F7CA213725F1372B00826ABB /* Account Request */,
- F7A321621E9E37960069AD1B /* Activity */,
- F7AE00F6230E8191007ACF8A /* BrowserWeb */,
- F70B866A2642A21300ED5349 /* Color */,
- F7BAAD951ED5A63D00B7EAD4 /* Data */,
- F73FAEE224D2CA830090692E /* Diagnostics */,
- F723986F253D867900257F49 /* EmptyView */,
- F7A0D14E259229FA008F8A13 /* Extensions */,
- F7903A4A2948CAC300203DA5 /* ExternalResources */,
- F7A3214D1E9E2A070069AD1B /* Favorites */,
- F7725A5D251F33BB00D125E0 /* Files */,
- F7BFFA621A24D7300044ED85 /* Login */,
- F7EC9CB921185F2000F1C5CE /* Media */,
- 371B5A2F23D0B04B00FAFAE9 /* Menu */,
- F7CB68942541670D0050EC94 /* More */,
- F74D3DB81BAC1941000BAE4B /* Networking */,
- F7C5259A1E3B441D00FFE02C /* Notification */,
- F7381ED9218218A4000B1560 /* Offline */,
- F713418B2597513800768D21 /* PushNotification */,
- F765F72E25237E3F00391DBE /* Recent */,
- F70D87CC25EE6E58008CBBBD /* Rename file */,
- F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */,
- F758B41E212C516300515F55 /* Scan document */,
- F7FE125B1BAC03FB0041924B /* Security */,
- F79A65C12191D8DC00FF6DCC /* Select */,
- F7ACE4281BAC0268006C0017 /* Settings */,
- F728CE741BF6322C00E69702 /* Share */,
- F7169A161EE590930086BD69 /* Shares */,
- F7E9C41320F4CA870040CF18 /* Transfers */,
- F78F74322163753B00C2ADAD /* Trash */,
- F7EFC0CB256BF89300461AAD /* UserStatus */,
- F7BFFA991A24D7BB0044ED85 /* Utility */,
- F79630EC215526B60015EEA5 /* Viewer */,
- );
- path = iOSClient;
- sourceTree = "<group>";
- };
- F7F67BAB1A24D27800EE80DA /* Supporting Files */ = {
- isa = PBXGroup;
- children = (
- F7AC9349296193050002BC0F /* Reasons to use Nextcloud.pdf */,
- F7A48414297028FC00BD1B49 /* Nextcloud Hub.png */,
- F7F4F0FB27ECDBDA008676F9 /* Font */,
- F72B60941A24F04E004EF66F /* Localizations */,
- );
- name = "Supporting Files";
- path = iOSClient;
- sourceTree = "<group>";
- };
- F7FC7D541DC1F93700BB2C6A /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- F783031028B4C86200B84583 /* libc++.1.tbd */,
- F783031128B4C86200B84583 /* libc++abi.tbd */,
- F783030E28B4C83F00B84583 /* libc++.tbd */,
- F702867E2773609C00ADA8BE /* libiconv.tbd */,
- F702864E27735D1400ADA8BE /* ffmpegkit.xcframework */,
- F702865127735D1500ADA8BE /* gmp.xcframework */,
- F702865A27735D1700ADA8BE /* gnutls.xcframework */,
- F702865227735D1500ADA8BE /* libavcodec.xcframework */,
- F702864D27735D1400ADA8BE /* libavdevice.xcframework */,
- F702865527735D1600ADA8BE /* libavfilter.xcframework */,
- F702865827735D1600ADA8BE /* libavformat.xcframework */,
- F702865327735D1500ADA8BE /* libavutil.xcframework */,
- F702865627735D1600ADA8BE /* libhogweed.xcframework */,
- F702864F27735D1500ADA8BE /* libnettle.xcframework */,
- F702865927735D1600ADA8BE /* libswresample.xcframework */,
- F702865027735D1500ADA8BE /* libswscale.xcframework */,
- F702865427735D1500ADA8BE /* openh264.xcframework */,
- F702865727735D1600ADA8BE /* x264.xcframework */,
- F79BCEEA270B49C800B5B71F /* SwiftUI.framework */,
- F70B86842642CF5500ED5349 /* DropDown.xcframework */,
- F70B86832642CF5500ED5349 /* FSCalendar.xcframework */,
- F70B867E2642CF5400ED5349 /* KTVCocoaHTTPServer.xcframework */,
- F70B86792642CF5300ED5349 /* KTVHTTPCache.xcframework */,
- F70B86802642CF5400ED5349 /* OpenSSL.xcframework */,
- F70B867C2642CF5300ED5349 /* Queuer.xcframework */,
- F70B867F2642CF5400ED5349 /* QuickLayout.xcframework */,
- F70B86812642CF5500ED5349 /* SwiftEntryKit.xcframework */,
- F70B867A2642CF5300ED5349 /* TLPhotoPicker.xcframework */,
- F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */,
- F70B867D2642CF5400ED5349 /* UICKeyChainStore.xcframework */,
- F70B867B2642CF5300ED5349 /* XLForm.xcframework */,
- F70B866F2642CA9500ED5349 /* ChromaColorPicker.xcframework */,
- F7B1076C25D3CF2800E72DE2 /* BackgroundTasks.framework */,
- F7F35B592578FB63003F5589 /* CollaboraOnlineWebViewKeyboardManager.framework */,
- F7176DDA256672D90017E83C /* libsqlite3.tbd */,
- F7176DB9256672640017E83C /* FIRAnalyticsConnector.framework */,
- F7176DB7256672640017E83C /* FirebaseAnalytics.framework */,
- F7176DB6256672640017E83C /* FirebaseCore.framework */,
- F7176DAF256672630017E83C /* FirebaseCoreDiagnostics.framework */,
- F7176DAE256672630017E83C /* FirebaseCrashlytics.framework */,
- F7176DB1256672630017E83C /* FirebaseInstallations.framework */,
- F7176DB8256672640017E83C /* GoogleAppMeasurement.framework */,
- F7176DB0256672630017E83C /* GoogleDataTransport.framework */,
- F7176DB3256672630017E83C /* GoogleUtilities.framework */,
- F7176DB4256672630017E83C /* nanopb.framework */,
- F7176DB2256672630017E83C /* PromisesObjC.framework */,
- F7176DB5256672640017E83C /* Protobuf.framework */,
- F76FDEAA24859C3D0095B6C2 /* Queuer.framework */,
- F710C5EF2471A6D1009AD8B7 /* Sentry.framework */,
- F7AF7632246BEDFE00B86E3C /* TOPasscodeViewController.framework */,
- F7D2C772246470CA008513AE /* XLForm.framework */,
- F79018A424092EF4007C9B6D /* ATGMediaBrowser.framework */,
- F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */,
- 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */,
- F765608A23BF80A400765969 /* SwiftEntryKit.framework */,
- F765608623BF806C00765969 /* QuickLayout.framework */,
- F716FE7723795E5000FABE50 /* NCCommunication.framework */,
- F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */,
- F736B551234DCF57008A5C9F /* Alamofire.framework */,
- F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */,
- F774264022EB3F7300B23912 /* DropDown.framework */,
- F74AFCE822E8B024003DE61F /* FSCalendar.framework */,
- F700510222DF6897003A3356 /* Parchment.framework */,
- F7421EAE2294044B00C4B7C1 /* Accelerate.framework */,
- F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */,
- F7267A81225DFCE100D6DB7D /* AFNetworking.framework */,
- F76E71E42244DF6900690001 /* Zip.framework */,
- F745B250222D871800346520 /* QRCodeReader.framework */,
- F75153232226920200323DDC /* FastScroll.framework */,
- F78AA20521F783E900D0F205 /* SwiftRichString.framework */,
- F72E0B9C21AD60BC00898D7B /* WeScan.framework */,
- F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */,
- F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */,
- F7063DEC2199E55F003F38DA /* SVGKit.framework */,
- F7C40C112199BA620004137E /* RealmSwift.framework */,
- F7C40C0F2199BA5D0004137E /* Realm.framework */,
- F7C40BF22199978B0004137E /* MBProgressHUD.framework */,
- F7C40BF0219994F20004137E /* KTVHTTPCache.framework */,
- F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */,
- F7C40BEC219993330004137E /* JDStatusBarNotification.framework */,
- F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */,
- F7C40BE8219991A60004137E /* EAIntroView.framework */,
- F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */,
- F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */,
- F7C40BE221998C050004137E /* PDFGenerator.framework */,
- F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */,
- F79918A021997F9000C2E308 /* UICKeyChainStore.framework */,
- F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */,
- F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */,
- F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */,
- 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */,
- 08EA97451E6554FC004C83FA /* FirebaseCore.framework */,
- 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */,
- 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */,
- 08DC3BD41E64727E00F036D3 /* AdSupport.framework */,
- F7FC7D551DC1F93800BB2C6A /* libz.tbd */,
- F7346E1128B0EF5B006CE2D2 /* WidgetKit.framework */,
- F7C9739128F17131002C43E2 /* Intents.framework */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- F7FC7D651DC1F98700BB2C6A /* Products */ = {
- isa = PBXGroup;
- children = (
- F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */,
- F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- F7FE125B1BAC03FB0041924B /* Security */ = {
- isa = PBXGroup;
- children = (
- F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */,
- F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */,
- F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */,
- F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */,
- F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */,
- F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */,
- F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */,
- );
- path = Security;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXNativeTarget section */
- 2C33C47E23E2C475005F963B /* Notification Service Extension */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */;
- buildPhases = (
- 2C33C47B23E2C475005F963B /* Sources */,
- 2C33C47C23E2C475005F963B /* Frameworks */,
- 2C33C47D23E2C475005F963B /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "Notification Service Extension";
- packageProductDependencies = (
- F75E57C225BF0ED2002B72C2 /* SVGKit */,
- F710FC85277B7D3F00AA9FBF /* Realm */,
- F710FC87277B7D3F00AA9FBF /* RealmSwift */,
- F7EBCDD2277B821700A4EF67 /* UICKeyChainStore */,
- F72AD71028C24BBB006CB92D /* NextcloudKit */,
- F78D0C842912725600D706AB /* JGProgressHUD */,
- );
- productName = "Notification Service Extension";
- productReference = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */;
- productType = "com.apple.product-type.app-extension";
- };
- AF8ED1F82757821000B8DBC4 /* NextcloudTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = AF8ED2012757821000B8DBC4 /* Build configuration list for PBXNativeTarget "NextcloudTests" */;
- buildPhases = (
- AF8ED1F52757821000B8DBC4 /* Sources */,
- AF8ED1F62757821000B8DBC4 /* Frameworks */,
- AF8ED1F72757821000B8DBC4 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- AF8ED1FE2757821000B8DBC4 /* PBXTargetDependency */,
- );
- name = NextcloudTests;
- productName = NextcloudTests;
- productReference = AF8ED1F92757821000B8DBC4 /* NextcloudTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- F71459B41D12E3B700CAFEEC /* Share */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */;
- buildPhases = (
- F71459B51D12E3B700CAFEEC /* Sources */,
- F7145A141D12E3B700CAFEEC /* Frameworks */,
- F7145A181D12E3B700CAFEEC /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = Share;
- packageProductDependencies = (
- F75E57BE25BF0EC8002B72C2 /* SVGKit */,
- F72D7EB6263B1207000B3DFC /* MarkdownKit */,
- F73ADD2026554F8E0069EA0D /* SwiftEntryKit */,
- F710FC7D277B7D2600AA9FBF /* Realm */,
- F710FC7F277B7D2700AA9FBF /* RealmSwift */,
- F7EBCDCE277B81FF00A4EF67 /* UICKeyChainStore */,
- F72CD01127A7E92400E59476 /* JGProgressHUD */,
- F72AD70E28C24BA1006CB92D /* NextcloudKit */,
- );
- productName = "Share Ext";
- productReference = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */;
- productType = "com.apple.product-type.app-extension";
- };
- F7346E0F28B0EF5B006CE2D2 /* Widget */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = F7346E1F28B0EF5E006CE2D2 /* Build configuration list for PBXNativeTarget "Widget" */;
- buildPhases = (
- F7346E0C28B0EF5B006CE2D2 /* Sources */,
- F7346E0D28B0EF5B006CE2D2 /* Frameworks */,
- F7346E0E28B0EF5B006CE2D2 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = Widget;
- packageProductDependencies = (
- F7346E2428B0FEFA006CE2D2 /* UICKeyChainStore */,
- F7346E2628B0FFF2006CE2D2 /* Realm */,
- F7346E2828B0FFF2006CE2D2 /* RealmSwift */,
- F783030428B4C50600B84583 /* SVGKit */,
- F783030C28B4C59A00B84583 /* SwiftEntryKit */,
- F783034328B5142B00B84583 /* NextcloudKit */,
- F78D0C822912724F00D706AB /* JGProgressHUD */,
- );
- productName = DashboardWidgetExtension;
- productReference = F7346E1028B0EF5B006CE2D2 /* Widget.appex */;
- productType = "com.apple.product-type.app-extension";
- };
- F771E3CF20E2392D00AFB62D /* File Provider Extension */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */;
- buildPhases = (
- F771E3CC20E2392D00AFB62D /* Sources */,
- F771E3CD20E2392D00AFB62D /* Frameworks */,
- F771E3CE20E2392D00AFB62D /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "File Provider Extension";
- packageProductDependencies = (
- F75E57C025BF0ECD002B72C2 /* SVGKit */,
- F73ADD2326554FE20069EA0D /* SwiftEntryKit */,
- F710FC81277B7D3500AA9FBF /* Realm */,
- F710FC83277B7D3500AA9FBF /* RealmSwift */,
- F7EBCDD0277B820D00A4EF67 /* UICKeyChainStore */,
- F72AD71228C24BCC006CB92D /* NextcloudKit */,
- F78D0C7E2912722100D706AB /* JGProgressHUD */,
- );
- productName = "File Provider Extension";
- productReference = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */;
- productType = "com.apple.product-type.app-extension";
- };
- F77B0DEB1D118A16002130FE /* Nextcloud */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */;
- buildPhases = (
- F77B0DEF1D118A16002130FE /* Sources */,
- F77B0EDC1D118A16002130FE /* Frameworks */,
- F77B0EE91D118A16002130FE /* Resources */,
- F77B0F981D118A16002130FE /* Embed Foundation Extensions */,
- AFBFD01327551A54002244BC /* ShellScript */,
- F76DA934277B75710082465B /* Embed Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- F7145A321D12E65F00CAFEEC /* PBXTargetDependency */,
- F771E3EA20E2392E00AFB62D /* PBXTargetDependency */,
- 2C33C48523E2C475005F963B /* PBXTargetDependency */,
- F7346E1B28B0EF5E006CE2D2 /* PBXTargetDependency */,
- F7C9739828F17131002C43E2 /* PBXTargetDependency */,
- );
- name = Nextcloud;
- packageProductDependencies = (
- F75E57BC25BF0EC1002B72C2 /* SVGKit */,
- F7ED547B25EEA65400956C55 /* QRCodeReader */,
- F72DA9B325F53E4E00B87DB1 /* SwiftRichString */,
- F770768D263A8C3400A1BA94 /* FloatingPanel */,
- F788ECC6263AAAFA00ADC67F /* MarkdownKit */,
- F70B86742642CE3B00ED5349 /* FirebaseCrashlytics */,
- F73ADD1B265546890069EA0D /* SwiftEntryKit */,
- F75EAED726D2552E00F4320E /* MarqueeLabel */,
- F74E771F277A2EF40013B958 /* XLForm */,
- F76DA962277B760E0082465B /* Queuer */,
- F76DA965277B76F30082465B /* UICKeyChainStore */,
- F76DA968277B77EA0082465B /* DropDown */,
- F710FC79277B7D0000AA9FBF /* Realm */,
- F710FC7B277B7D0000AA9FBF /* RealmSwift */,
- F7BB7E4627A18C56009B9F29 /* Parchment */,
- F758A01127A7F03E0069468B /* JGProgressHUD */,
- F753BA92281FD8020015BFB6 /* EasyTipView */,
- F72AD70C28C24B93006CB92D /* NextcloudKit */,
- F734B06528E75C0100E180D5 /* TLPhotoPicker */,
- F77333872927A72100466E35 /* OpenSSL */,
- F77BC3EA293E5268005F2B08 /* Swifter */,
- F7D56B192972405500FA46C4 /* Mantis */,
- );
- productName = "Crypto Cloud";
- productReference = F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */;
- productType = "com.apple.product-type.application";
- };
- F7C9738F28F17131002C43E2 /* WidgetDashboardIntentHandler */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = F7C9739A28F17132002C43E2 /* Build configuration list for PBXNativeTarget "WidgetDashboardIntentHandler" */;
- buildPhases = (
- F7C9738C28F17131002C43E2 /* Sources */,
- F7C9738D28F17131002C43E2 /* Frameworks */,
- F7C9738E28F17131002C43E2 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = WidgetDashboardIntentHandler;
- packageProductDependencies = (
- F7A8D72328F1771B008BBE1C /* NextcloudKit */,
- F7A8D72528F17728008BBE1C /* Realm */,
- F7A8D72728F17728008BBE1C /* RealmSwift */,
- F7A8D72928F17733008BBE1C /* SVGKit */,
- F7A8D72B28F17742008BBE1C /* SwiftEntryKit */,
- F7A8D72D28F17764008BBE1C /* UICKeyChainStore */,
- F78D0C802912723900D706AB /* JGProgressHUD */,
- );
- productName = WidgetDashboardIntentHandler;
- productReference = F7C9739028F17131002C43E2 /* WidgetDashboardIntentHandler.appex */;
- productType = "com.apple.product-type.app-extension";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- F7F67BA01A24D27800EE80DA /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastSwiftUpdateCheck = 1400;
- LastUpgradeCheck = 1400;
- ORGANIZATIONNAME = "Marino Faggiana";
- TargetAttributes = {
- 2C33C47E23E2C475005F963B = {
- CreatedOnToolsVersion = 11.3.1;
- ProvisioningStyle = Automatic;
- };
- AF8ED1F82757821000B8DBC4 = {
- CreatedOnToolsVersion = 13.1;
- TestTargetID = F77B0DEB1D118A16002130FE;
- };
- F71459B41D12E3B700CAFEEC = {
- LastSwiftMigration = 1020;
- SystemCapabilities = {
- com.apple.ApplicationGroups.iOS = {
- enabled = 1;
- };
- com.apple.iCloud = {
- enabled = 0;
- };
- };
- };
- F7346E0F28B0EF5B006CE2D2 = {
- CreatedOnToolsVersion = 13.4.1;
- };
- F771E3CF20E2392D00AFB62D = {
- CreatedOnToolsVersion = 9.4.1;
- LastSwiftMigration = 1020;
- ProvisioningStyle = Automatic;
- };
- F77B0DEB1D118A16002130FE = {
- LastSwiftMigration = 1020;
- ProvisioningStyle = Automatic;
- SystemCapabilities = {
- com.apple.Push = {
- enabled = 1;
- };
- com.apple.iCloud = {
- enabled = 1;
- };
- };
- };
- F7C9738F28F17131002C43E2 = {
- CreatedOnToolsVersion = 14.0;
- };
- };
- };
- buildConfigurationList = F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- de,
- fr,
- "pt-BR",
- ru,
- it,
- tr,
- "es-MX",
- "nb-NO",
- pl,
- sv,
- es,
- is,
- nl,
- "sk-SK",
- "en-GB",
- "zh-Hans",
- "ka-GE",
- hu,
- "zh-Hant-TW",
- sr,
- "es-CL",
- "es-CO",
- "es-CR",
- "es-DO",
- "es-EC",
- "es-GT",
- "es-HN",
- "es-NI",
- "es-PA",
- "es-PE",
- "es-PR",
- "es-PY",
- "es-SV",
- "es-UY",
- "cs-CZ",
- ko,
- "es-419",
- "pt-PT",
- "ja-JP",
- gl,
- ca,
- da,
- eu,
- );
- mainGroup = F7F67B9F1A24D27800EE80DA;
- packageReferences = (
- F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */,
- F7ED547A25EEA65400956C55 /* XCRemoteSwiftPackageReference "QRCodeReader" */,
- F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */,
- F770768C263A8C3400A1BA94 /* XCRemoteSwiftPackageReference "FloatingPanel" */,
- F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */,
- F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */,
- F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */,
- F75EAED626D2552E00F4320E /* XCRemoteSwiftPackageReference "MarqueeLabel" */,
- F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */,
- F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */,
- F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */,
- F76DA967277B77E90082465B /* XCRemoteSwiftPackageReference "DropDown" */,
- F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */,
- F7BB7E4527A18C56009B9F29 /* XCRemoteSwiftPackageReference "Parchment" */,
- F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */,
- F753BA91281FD8010015BFB6 /* XCRemoteSwiftPackageReference "EasyTipView" */,
- F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */,
- F734B06428E75C0100E180D5 /* XCRemoteSwiftPackageReference "TLPhotoPicker" */,
- F77333862927A72100466E35 /* XCRemoteSwiftPackageReference "OpenSSL" */,
- F77BC3E9293E5268005F2B08 /* XCRemoteSwiftPackageReference "swifter" */,
- F7D56B182972405400FA46C4 /* XCRemoteSwiftPackageReference "Mantis" */,
- );
- productRefGroup = F7F67B9F1A24D27800EE80DA;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- F77B0DEB1D118A16002130FE /* Nextcloud */,
- F7346E0F28B0EF5B006CE2D2 /* Widget */,
- F7C9738F28F17131002C43E2 /* WidgetDashboardIntentHandler */,
- F71459B41D12E3B700CAFEEC /* Share */,
- F771E3CF20E2392D00AFB62D /* File Provider Extension */,
- 2C33C47E23E2C475005F963B /* Notification Service Extension */,
- AF8ED1F82757821000B8DBC4 /* NextcloudTests */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXResourcesBuildPhase section */
- 2C33C47D23E2C475005F963B /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F746EC53273906C50052598D /* NCViewCertificateDetails.storyboard in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- AF8ED1F72757821000B8DBC4 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F7145A181D12E3B700CAFEEC /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F7148059262ED52200693E51 /* NCSectionHeaderMenu.xib in Resources */,
- F714803B262EBE3900693E51 /* MainInterface.storyboard in Resources */,
- F7148054262ED51000693E51 /* NCListCell.xib in Resources */,
- F7D57C8626317BDA00DE301D /* NCAccountRequest.storyboard in Resources */,
- AF22B209277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.xib in Resources */,
- F7148063262ED66200693E51 /* NCEmptyView.xib in Resources */,
- AF22B207277B4E4C00DAB0CC /* NCCreateFormUploadConflict.storyboard in Resources */,
- F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */,
- F746EC51273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */,
- F76C26A62850D3A500E42BDF /* Images.xcassets in Resources */,
- F79EC784263161BA004E59D6 /* NCRenameFile.storyboard in Resources */,
- F714804F262ED4F900693E51 /* NCGridCell.xib in Resources */,
- F714805E262ED52900693E51 /* NCSectionFooter.xib in Resources */,
- F700222D1EC479840080073F /* Custom.xcassets in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F7346E0E28B0EF5B006CE2D2 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F7C7B25128B8B0C400E7115D /* Images.xcassets in Resources */,
- F7C7B25028B8AD4500E7115D /* Localizable.strings in Resources */,
- F7346E2328B0FEBA006CE2D2 /* Assets.xcassets in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F771E3CE20E2392D00AFB62D /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F746EC52273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F77B0EE91D118A16002130FE /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */,
- F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */,
- F78ACD4421903CF20088454D /* NCListCell.xib in Resources */,
- F7F4F10727ECDBDB008676F9 /* Inconsolata-Black.ttf in Resources */,
- F78ACD4621903D010088454D /* NCGridCell.xib in Resources */,
- F7F4F10827ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf in Resources */,
- F72685E727C78E490019EF5E /* InfoPlist.strings in Resources */,
- F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */,
- F7F4F10927ECDBDB008676F9 /* Inconsolata-Bold.ttf in Resources */,
- F76D3CF52428D0C1005DFA87 /* NCViewerPDF.storyboard in Resources */,
- F700222C1EC479840080073F /* Custom.xcassets in Resources */,
- F702F2F125EE5CDB008F8E80 /* NCLogin.storyboard in Resources */,
- F723985C253C95CE00257F49 /* NCViewerRichdocument.storyboard in Resources */,
- F758B45A212C564000515F55 /* NCScan.storyboard in Resources */,
- F70D87CF25EE6E58008CBBBD /* NCRenameFile.storyboard in Resources */,
- F765F73225237E3F00391DBE /* NCRecent.storyboard in Resources */,
- F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */,
- F702F30225EE5D2C008F8E80 /* english.txt in Resources */,
- F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */,
- F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */,
- F7EFC0C6256BC77700461AAD /* NCMoreUserCell.xib in Resources */,
- F702F2E725EE5C86008F8E80 /* NCAudioRecorderViewController.storyboard in Resources */,
- AF56C1DC2784856200D8BAE2 /* NCActivityCommentView.xib in Resources */,
- F7F4F10B27ECDBDB008676F9 /* Inconsolata-Light.ttf in Resources */,
- 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */,
- AF93471C27E2361E002537EE /* NCShareAdvancePermissionHeader.xib in Resources */,
- F7D0F33E264144FC0097D4A3 /* Background.xcassets in Resources */,
- F7F1E54C2492369A00E42386 /* NCMediaCommandView.xib in Resources */,
- F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */,
- F76032A0252F0F8E0015A421 /* NCTransferCell.xib in Resources */,
- F7F4F10527ECDBDB008676F9 /* Inconsolata-SemiBold.ttf in Resources */,
- F7A48415297028FC00BD1B49 /* Nextcloud Hub.png in Resources */,
- F74C0437253F1CDC009762AB /* NCShares.storyboard in Resources */,
- F7F4F10C27ECDBDB008676F9 /* Inconsolata-Regular.ttf in Resources */,
- F7B8B83025681C3400967775 /* GoogleService-Info.plist in Resources */,
- F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */,
- F7E0CDCF265CE8610044854E /* NCUserStatus.storyboard in Resources */,
- F76D3CF32428B94E005DFA87 /* NCViewerPDFSearchCell.xib in Resources */,
- F7CA212E25F1333300826ABB /* NCAccountRequest.storyboard in Resources */,
- F749C10E23C4A5340027D966 /* NCIntroCollectionViewCell.xib in Resources */,
- F717402D24F699A5000C87D5 /* NCFavorite.storyboard in Resources */,
- F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */,
- F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */,
- AF93471927E2361E002537EE /* NCShareAdvancePermissionFooter.xib in Resources */,
- F7725A61251F33BB00D125E0 /* NCFiles.storyboard in Resources */,
- F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */,
- F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */,
- F70753F72542A9C000972D44 /* NCViewerMediaPage.storyboard in Resources */,
- F70A58C024D0545100DED00D /* NCCapabilitiesViewController.storyboard in Resources */,
- F7F4F10627ECDBDB008676F9 /* Inconsolata-Medium.ttf in Resources */,
- F7AC934A296193050002BC0F /* Reasons to use Nextcloud.pdf in Resources */,
- F749C10D23C4A5340027D966 /* NCIntro.storyboard in Resources */,
- F7A60F87292D215000FCE1F2 /* NCTalkAccounts.storyboard in Resources */,
- F7239877253D86D300257F49 /* NCEmptyView.xib in Resources */,
- F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */,
- F719D9E0288D37A300762E33 /* NCColorPicker.storyboard in Resources */,
- F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */,
- F7F4F10A27ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf in Resources */,
- F704B5E72430C06700632F5F /* NCCreateFormUploadConflictCell.xib in Resources */,
- F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */,
- F7BC287E26663F6C004D46C5 /* NCViewCertificateDetails.storyboard in Resources */,
- F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */,
- F704B5E32430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard in Resources */,
- F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */,
- F7EDE509262DA9D600414FE6 /* NCSelectCommandViewSelect.xib in Resources */,
- F732D23327CF8AED000B0F1B /* NCPlayerToolBar.xib in Resources */,
- F73D11FA253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard in Resources */,
- F7EDE51B262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib in Resources */,
- F73B422B2476764F00A30FD3 /* NCNotification.storyboard in Resources */,
- F7FF2CB12842159500EBB7A1 /* NCSectionHeader.xib in Resources */,
- F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */,
- F77B0F631D118A16002130FE /* Localizable.strings in Resources */,
- F774264A22EB4D0000B23912 /* NCSearchUserDropDownCell.xib in Resources */,
- F7CB689A2541676B0050EC94 /* NCMore.storyboard in Resources */,
- F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */,
- F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */,
- F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */,
- F7EDE514262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib in Resources */,
- F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */,
- F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */,
- F74DE14425135B6800917068 /* NCTransfers.storyboard in Resources */,
- F77910A525DD517B00CEDB9E /* Settings.bundle in Resources */,
- F7CB68A0254169530050EC94 /* NCSettings.storyboard in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F7C9738E28F17131002C43E2 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXShellScriptBuildPhase section */
- AFBFD01327551A54002244BC /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- };
- /* End PBXShellScriptBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 2C33C47B23E2C475005F963B /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F785EEA52461A4CF00B3F945 /* CCUtility.m in Sources */,
- 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */,
- F770768A263A8A2500A1BA94 /* NCUtilityFileSystem.swift in Sources */,
- F76D364928A4F8BF00214537 /* NCActivityIndicator.swift in Sources */,
- F746EC50273906BA0052598D /* NCViewCertificateDetails.swift in Sources */,
- AF4BF62127562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
- F702F2D225EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
- F7707689263A896A00A1BA94 /* UIImage+Extension.swift in Sources */,
- 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */,
- F7E98C1927E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */,
- 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */,
- F7D68FD028CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
- F7245927289BB59300474787 /* ThreadSafeDictionary.swift in Sources */,
- 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */,
- AF4BF617275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
- F7BF9D872934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
- F749B64F297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
- D575039F27146F93008DC9DC /* String+Extension.swift in Sources */,
- F769CA1A2966EA3C00039397 /* ComponentView.swift in Sources */,
- F73D5E4A246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
- F79B646326CA661600838ACA /* UIControl+Extension.swift in Sources */,
- F78A10C429322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
- F75CA1482962F13700B01130 /* HUDView.swift in Sources */,
- AF4BF61C27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */,
- AF817EF4274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
- F798F0EC2588060A000DAFFD /* UIColor+Extension.swift in Sources */,
- F749B656297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
- 2CB7D1CA23E2EDCB00376EF9 /* NCPushNotificationEncryption.m in Sources */,
- F782FDC424E6933900666099 /* NCUtility.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- AF8ED1F52757821000B8DBC4 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- AF70C14D27F3484D00E13DF2 /* SharePermissionTest.swift in Sources */,
- AF3F909A28213BEA0048A93E /* UserAgentTests.swift in Sources */,
- AF36077627BFB019001A243D /* ParallelWorkerTest.swift in Sources */,
- AF8ED1FC2757821000B8DBC4 /* NextcloudTests.swift in Sources */,
- AF8ED2032757822700B8DBC4 /* NCGlobalTests.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F71459B51D12E3B700CAFEEC /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F746EC4E273906B80052598D /* NCViewCertificateDetails.swift in Sources */,
- F7245925289BB59100474787 /* ThreadSafeDictionary.swift in Sources */,
- F73D5E48246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
- F7EDE4E5262D7BBE00414FE6 /* NCSectionHeaderFooter.swift in Sources */,
- F7BF9D852934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
- F79EC78926316AC4004E59D6 /* NCPopupViewController.swift in Sources */,
- F7C30DFB291BCF790017149B /* NCNetworkingE2EECreateFolder.swift in Sources */,
- AF4BF61F27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
- F7A0D1362591FBC5008F8A13 /* String+Extension.swift in Sources */,
- F7EDE4D6262D7B9600414FE6 /* NCListCell.swift in Sources */,
- F7707687263A853700A1BA94 /* NCContentPresenter.swift in Sources */,
- F70460532499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */,
- F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */,
- AF22B20C277C6F4D00DAB0CC /* NCShareCell.swift in Sources */,
- F7E98C1727E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */,
- F79B646126CA661600838ACA /* UIControl+Extension.swift in Sources */,
- F77C973A2953143A00FDDD09 /* NCCameraRoll.swift in Sources */,
- F7EDE4CC262D7B6F00414FE6 /* NCEmptyDataSet.swift in Sources */,
- F7C30E01291BD2610017149B /* NCNetworkingE2EERename.swift in Sources */,
- AF4BF61A27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */,
- AF4BF615275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
- F798F0E225880608000DAFFD /* UIColor+Extension.swift in Sources */,
- AF3FDCC32796F3FB00710F60 /* NCTrashListCell+NCTrashCellProtocol.swift in Sources */,
- AF817EF2274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
- F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */,
- F7C30DFE291BD0B80017149B /* NCNetworkingE2EEDelete.swift in Sources */,
- F74AF3A5247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */,
- AF1A9B6527D0CC0500F17A9E /* UIAlertController+Extension.swift in Sources */,
- AF22B206277B4E4C00DAB0CC /* NCCreateFormUploadConflict.swift in Sources */,
- F7BD71E62636EAFC00643C34 /* NCNetworkingE2EE.swift in Sources */,
- F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
- AF22B218277D196700DAB0CC /* NCShareExtension+Files.swift in Sources */,
- F702F2D025EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
- F7EDE4DB262D7BA200414FE6 /* NCCellProtocol.swift in Sources */,
- F7EDE4D1262D7B8400414FE6 /* NCDataSource.swift in Sources */,
- F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */,
- F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */,
- AF730AFA27843E4C00B7520E /* NCShareExtension+NCDelegate.swift in Sources */,
- F749B64D297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
- F7EDE4E0262D7BAF00414FE6 /* NCGridCell.swift in Sources */,
- F7A76DC8256A71CD00119AB3 /* UIImage+Extension.swift in Sources */,
- F7B8CD96261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */,
- F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
- F7D57C8B26317BDE00DE301D /* NCAccountRequest.swift in Sources */,
- F7C30DF7291BC0D30017149B /* NCNetworkingE2EEUpload.swift in Sources */,
- F78A10C229322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
- F7D68FCE28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
- AF22B217277D196700DAB0CC /* NCShareExtension+DataSource.swift in Sources */,
- F76D364728A4F8BF00214537 /* NCActivityIndicator.swift in Sources */,
- F749B654297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
- F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
- F79EC77F26316193004E59D6 /* NCRenameFile.swift in Sources */,
- AF22B208277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.swift in Sources */,
- F7148041262EBE4000693E51 /* NCShareExtension.swift in Sources */,
- F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
- F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F7346E0C28B0EF5B006CE2D2 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F78302FD28B4C42B00B84583 /* NCUserBaseUrl.swift in Sources */,
- F793E5A128B76541005E4B02 /* NotificationCenter+MainThread.swift in Sources */,
- F76DEE9928F808AF0041B1C9 /* LockscreenWidgetView.swift in Sources */,
- F78302F928B4C3E600B84583 /* NCManageDatabase+Account.swift in Sources */,
- F7E0710128B13BB00001B882 /* DashboardData.swift in Sources */,
- F783030328B4C4DD00B84583 /* ThreadSafeDictionary.swift in Sources */,
- F77ED59128C9CE9D00E24ED0 /* ToolbarData.swift in Sources */,
- F78302F728B4C3C900B84583 /* NCManageDatabase.swift in Sources */,
- F7346E1628B0EF5C006CE2D2 /* Widget.swift in Sources */,
- F78302F828B4C3E100B84583 /* NCManageDatabase+Activity.swift in Sources */,
- F783030228B4C4B800B84583 /* NCUtility.swift in Sources */,
- F711D63128F44801003F43C8 /* IntentHandler.swift in Sources */,
- F76DEE9728F808AF0041B1C9 /* LockscreenData.swift in Sources */,
- F72EA95A28B7BD0D00C88F0C /* FilesWidgetView.swift in Sources */,
- F78302FE28B4C44700B84583 /* NCBrand.swift in Sources */,
- F793E5A028B7651B005E4B02 /* NCViewCertificateDetails.swift in Sources */,
- F749B64B297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
- F793E59F28B764F6005E4B02 /* NCContentPresenter.swift in Sources */,
- F76DEE9828F808AF0041B1C9 /* LockscreenWidgetProvider.swift in Sources */,
- F78A10C029322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
- F78302FA28B4C3EA00B84583 /* NCManageDatabase+Metadata.swift in Sources */,
- F783030728B4C52800B84583 /* UIColor+Extension.swift in Sources */,
- F783030028B4C45800B84583 /* NCGlobal.swift in Sources */,
- F793E59D28B761E7005E4B02 /* NCNetworking.swift in Sources */,
- F78302FC28B4C3F300B84583 /* NCElementsJSON.swift in Sources */,
- F7BF9D832934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
- F749B652297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
- F783030628B4C51E00B84583 /* String+Extension.swift in Sources */,
- F77ED59328C9CEA000E24ED0 /* ToolbarWidgetProvider.swift in Sources */,
- F72A17D828B221E300F3F159 /* DashboardWidgetView.swift in Sources */,
- F77ED59528C9CEA400E24ED0 /* ToolbarWidgetView.swift in Sources */,
- F78302FB28B4C3EE00B84583 /* NCManageDatabase+Video.swift in Sources */,
- F72EA95228B7BA2A00C88F0C /* DashboardWidgetProvider.swift in Sources */,
- F793E5A228B76580005E4B02 /* NCNetworkingChunkedUpload.swift in Sources */,
- F783031228B4C8EC00B84583 /* CCUtility.m in Sources */,
- F72EA95828B7BC4F00C88F0C /* FilesData.swift in Sources */,
- F793E59E28B763C2005E4B02 /* NCAskAuthorization.swift in Sources */,
- F78302FF28B4C45000B84583 /* NCUtilityFileSystem.swift in Sources */,
- F75DD766290ABB25002EB562 /* Intent.intentdefinition in Sources */,
- F78302F628B4C3C500B84583 /* NCDatabase.swift in Sources */,
- F7D68FCD28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
- F783030128B4C49700B84583 /* UIImage+Extension.swift in Sources */,
- F72EA95428B7BABA00C88F0C /* FilesWidgetProvider.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F771E3CC20E2392D00AFB62D /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */,
- F7245926289BB59300474787 /* ThreadSafeDictionary.swift in Sources */,
- F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */,
- F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */,
- F702F2D125EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
- F76D364828A4F8BF00214537 /* NCActivityIndicator.swift in Sources */,
- F7434B3820E2400600417916 /* NCBrand.swift in Sources */,
- F785EE9E2461A09900B3F945 /* NCNetworking.swift in Sources */,
- F746EC4F273906B90052598D /* NCViewCertificateDetails.swift in Sources */,
- F749B655297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
- F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */,
- F73D5E49246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
- F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */,
- AF4BF616275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
- F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */,
- F798F0E725880609000DAFFD /* UIColor+Extension.swift in Sources */,
- F7D68FCF28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
- AF4BF61B27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */,
- F70460542499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */,
- F78A10C329322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
- F7BF9D862934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
- F7E98C1827E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */,
- F785EEA42461A4A600B3F945 /* NCUtility.swift in Sources */,
- F79B646226CA661600838ACA /* UIControl+Extension.swift in Sources */,
- F749B64E297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
- AF817EF3274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
- F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */,
- F7B8CD9B261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */,
- F7A0D1372591FBC5008F8A13 /* String+Extension.swift in Sources */,
- F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */,
- F74AF3A6247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */,
- F7A76DCD256A71CE00119AB3 /* UIImage+Extension.swift in Sources */,
- F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */,
- AF4BF62027562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
- F785EEA62461A4FB00B3F945 /* CCUtility.m in Sources */,
- F73ADD2226554FD10069EA0D /* NCContentPresenter.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F77B0DEF1D118A16002130FE /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */,
- F78C6FDE296D677300C952C3 /* NCContextMenu.swift in Sources */,
- F769CA172965AB7C00039397 /* NCUploadAssets.swift in Sources */,
- F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */,
- F702F30825EE5D47008F8E80 /* NCPopupViewController.swift in Sources */,
- F70A58BE24D0349500DED00D /* NCCapabilitiesViewController.swift in Sources */,
- F733598125C1C188002ABA72 /* NCAskAuthorization.swift in Sources */,
- 370D26AF248A3D7A00121797 /* NCCellProtocol.swift in Sources */,
- F77B0DF51D118A16002130FE /* CCUtility.m in Sources */,
- F70D87D025EE6E58008CBBBD /* NCRenameFile.swift in Sources */,
- F7F4F0F727ECDBA4008676F9 /* NCSubtitles.swift in Sources */,
- F71CD6CA2930D7B1006C95C1 /* NCApplicationHandle.swift in Sources */,
- F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */,
- F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */,
- F75B0ABD244C4DBB00E58DCA /* NCFunctionCenter.swift in Sources */,
- AF935067276B84E700BD078F /* NCMenu+FloatingPanel.swift in Sources */,
- F702F2CD25EE5B4F008F8E80 /* AppDelegate.swift in Sources */,
- F769454022E9F077000A798A /* NCSharePaging.swift in Sources */,
- F78ACD4221903CE00088454D /* NCListCell.swift in Sources */,
- F76D3CF12428B40E005DFA87 /* NCViewerPDFSearch.swift in Sources */,
- F7245924289BB50C00474787 /* ThreadSafeDictionary.swift in Sources */,
- F73F537F1E929C8500F8678D /* NCMore.swift in Sources */,
- F702F2CF25EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
- F72CD63A25C19EBF00F46F9A /* NCAutoUpload.swift in Sources */,
- AF93471D27E2361E002537EE /* NCShareAdvancePermissionFooter.swift in Sources */,
- AF1A9B6427D0CA1E00F17A9E /* UIAlertController+Extension.swift in Sources */,
- F73B422C2476764F00A30FD3 /* NCNotification.swift in Sources */,
- 371B5A2E23D0B04500FAFAE9 /* NCMenu.swift in Sources */,
- F79EDAA326B004980007D134 /* NCPlayerToolBar.swift in Sources */,
- F77444F8222816D5000D5EB0 /* NCPickerViewController.swift in Sources */,
- F77BB74A2899857B0090FC19 /* UINavigationController+Extension.swift in Sources */,
- F72A47EC2487B06B005AD489 /* NCOperationQueue.swift in Sources */,
- F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */,
- F70753F12542A9A200972D44 /* NCViewerMedia.swift in Sources */,
- F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */,
- F7A60F86292D215000FCE1F2 /* NCTalkAccounts.swift in Sources */,
- F77910AB25DD53C700CEDB9E /* NCSettingsBundleHelper.swift in Sources */,
- AF4BF61927562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */,
- F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */,
- AFA2AC8527849604008E1EA7 /* NCActivityCommentView.swift in Sources */,
- F716B75F26F09DF600D37EFC /* NCKTVHTTPCache.swift in Sources */,
- AFCE353727E4ED7B00FEA6C2 /* NCShareCells.swift in Sources */,
- AF36077127BFA4E8001A243D /* ParallelWorker.swift in Sources */,
- F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */,
- F758B460212C56A400515F55 /* NCScan.swift in Sources */,
- F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */,
- F749C10C23C4A5340027D966 /* NCIntroViewController.swift in Sources */,
- F710D2022405826100A6033D /* NCViewer+Menu.swift in Sources */,
- F765E9CD295C585800A09ED8 /* NCUploadScanDocument.swift in Sources */,
- F77A697D250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift in Sources */,
- F7BF9D822934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
- AF7E504E27A2D8FF00B5E4AF /* UIBarButton+Extension.swift in Sources */,
- F78A10BF29322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
- F704B5E92430C0B800632F5F /* NCCreateFormUploadConflictCell.swift in Sources */,
- F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */,
- AFCE353927E5DE0500FEA6C2 /* NCShare+Helper.swift in Sources */,
- F77BB746289984CA0090FC19 /* UIViewController+Extension.swift in Sources */,
- F700510522DF6A89003A3356 /* NCShare.swift in Sources */,
- F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */,
- F785EE9D246196DF00B3F945 /* NCNetworkingE2EE.swift in Sources */,
- F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */,
- F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */,
- F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */,
- F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
- F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */,
- F78ACD4A21903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift in Sources */,
- F7B8CD91261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift in Sources */,
- F760329F252F0F8E0015A421 /* NCTransferCell.swift in Sources */,
- AF68326A27BE65A90010BF0B /* NCMenuAction.swift in Sources */,
- F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */,
- F7A0D1352591FBC5008F8A13 /* String+Extension.swift in Sources */,
- F77B0E5F1D118A16002130FE /* NCSettings.m in Sources */,
- F7F9D1BB25397CE000D9BFF5 /* NCViewer.swift in Sources */,
- AF730AF827834B1400B7520E /* NCShare+NCCellDelegate.swift in Sources */,
- F70460522499061800BB98A7 /* NotificationCenter+MainThread.swift in Sources */,
- F78F74362163781100C2ADAD /* NCTrash.swift in Sources */,
- AF817EF1274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
- AF2D7C7C2742556F00ADF566 /* NCShareLinkCell.swift in Sources */,
- F7E41316294A19B300839300 /* UIView+Extension.swift in Sources */,
- F7C30E00291BD2610017149B /* NCNetworkingE2EERename.swift in Sources */,
- F7F4F0F927ECDBA4008676F9 /* NCSubtitlePlayer.swift in Sources */,
- F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */,
- F74AF3A4247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */,
- F7239871253D86B600257F49 /* NCEmptyDataSet.swift in Sources */,
- AFCE353327E4ED1900FEA6C2 /* UIToolbar+Extension.swift in Sources */,
- 8491B1CD273BBA82001C8C5B /* UIViewController+Menu.swift in Sources */,
- F75DD765290ABB25002EB562 /* Intent.intentdefinition in Sources */,
- F702F2F725EE5CED008F8E80 /* NCLogin.swift in Sources */,
- F7E98C1627E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */,
- F7F4F11227ECDC52008676F9 /* UIFont+Extension.swift in Sources */,
- AF93471A27E2361E002537EE /* NCShareAdvancePermissionHeader.swift in Sources */,
- F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
- 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */,
- F73D5E47246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
- F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */,
- F7B6B70427C4E7FA00A7F6EB /* NCScan+CollectionView.swift in Sources */,
- F7C30DF6291BC0CA0017149B /* NCNetworkingE2EEUpload.swift in Sources */,
- F7501C332212E57500FB1415 /* NCMedia.swift in Sources */,
- F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */,
- F79EDAA526B004980007D134 /* NCPlayer.swift in Sources */,
- F7C1EEA525053A9C00866ACC /* NCDataSource.swift in Sources */,
- F713FF002472764100214AF6 /* UIImage+animatedGIF.m in Sources */,
- F749C10B23C4A5340027D966 /* NCIntroCollectionViewCell.swift in Sources */,
- AFCE353527E4ED5900FEA6C2 /* DateFormatter+Extension.swift in Sources */,
- F718C24E254D507B00C5C256 /* NCViewerMediaDetailView.swift in Sources */,
- F7145610296433C80038D028 /* NCDocumentCamera.swift in Sources */,
- F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */,
- F719D9E2288D396100762E33 /* NCColorPicker.swift in Sources */,
- F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
- F79B646026CA661600838ACA /* UIControl+Extension.swift in Sources */,
- F7CA212D25F1333300826ABB /* NCAccountRequest.swift in Sources */,
- F765F73125237E3F00391DBE /* NCRecent.swift in Sources */,
- F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
- F7581D2425EFDDDF004DC699 /* NCMedia+Menu.swift in Sources */,
- F738D4902756740100CD1D38 /* NCLoginNavigationController.swift in Sources */,
- F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
- F769CA192966EA3C00039397 /* ComponentView.swift in Sources */,
- AF93474C27E34120002537EE /* NCUtility+Image.swift in Sources */,
- F702F30125EE5D2C008F8E80 /* NYMnemonic.m in Sources */,
- AF93474E27E3F212002537EE /* NCShareNewUserAddComment.swift in Sources */,
- F7C30DFD291BD0B80017149B /* NCNetworkingE2EEDelete.swift in Sources */,
- AF93471227E2341B002537EE /* NCShare+Menu.swift in Sources */,
- F7EFA47825ADBA500083159A /* NCViewerProviderContextMenu.swift in Sources */,
- F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */,
- F7E8A391295DC5E0006CB2D0 /* View+Extension.swift in Sources */,
- AFD33240276A02C100F5AE02 /* UIApplication+Extension.swift in Sources */,
- F79B869B265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift in Sources */,
- F7B7504B2397D38F004E13EC /* UIImage+Extension.swift in Sources */,
- F7EFC0CD256BF8DD00461AAD /* NCUserStatus.swift in Sources */,
- AF3FDCC22796ECC300710F60 /* NCTrash+CollectionView.swift in Sources */,
- F70D7C3725FFBF82002B9E34 /* NCCollectionViewCommon.swift in Sources */,
- F76D364628A4F8BF00214537 /* NCActivityIndicator.swift in Sources */,
- F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */,
- F7134186259747BA00768D21 /* NCPushNotification.m in Sources */,
- F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */,
- F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */,
- F75D19E325EFE09000D74598 /* NCTrash+Menu.swift in Sources */,
- F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */,
- AF93471B27E2361E002537EE /* NCShareAdvancePermission.swift in Sources */,
- F77BC3ED293E528A005F2B08 /* NCConfigServer.swift in Sources */,
- F70753EB2542A99800972D44 /* NCViewerMediaPage.swift in Sources */,
- F749B651297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
- F7FAFD3A28BFA948000777FE /* NCNotification+Menu.swift in Sources */,
- F74C0436253F1CDC009762AB /* NCShares.swift in Sources */,
- F7AC1CB028AB94490032D99F /* Array+Extension.swift in Sources */,
- F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */,
- F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */,
- F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
- F77C97392953131000FDDD09 /* NCCameraRoll.swift in Sources */,
- F70968A424212C4E00ED60E5 /* NCLivePhoto.swift in Sources */,
- F7C30DFA291BCF790017149B /* NCNetworkingE2EECreateFolder.swift in Sources */,
- F7BC288026663F85004D46C5 /* NCViewCertificateDetails.swift in Sources */,
- F702F2E625EE5C86008F8E80 /* NCAudioRecorderViewController.swift in Sources */,
- D5B6AA7827200C7200D49C24 /* NCActivityTableViewCell.swift in Sources */,
- F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */,
- F7CBC31C24F78E79004D3812 /* NCSortMenu.swift in Sources */,
- F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */,
- F749B64A297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
- F7C9555521F0C5470024296E /* NCActivity.swift in Sources */,
- F7725A60251F33BB00D125E0 /* NCFiles.swift in Sources */,
- F704B5E52430AA8000632F5F /* NCCreateFormUploadConflict.swift in Sources */,
- F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */,
- F7D68FCC28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
- F70CEF5623E9C7E50007035B /* UIColor+Extension.swift in Sources */,
- F75CA1472962F13700B01130 /* HUDView.swift in Sources */,
- F7A48413297022E000BD1B49 /* ViewerQuickLook.swift in Sources */,
- F77BB748289985270090FC19 /* UITabBarController+Extension.swift in Sources */,
- F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */,
- F7A7FA6329265CF4000603EF /* NCManageE2EE.swift in Sources */,
- F7C7B489245EBA4100D93E60 /* NCViewerQuickLook.swift in Sources */,
- F758B45E212C569D00515F55 /* NCScanCell.swift in Sources */,
- F7581D1A25EFDA61004DC699 /* NCLoginWeb+Menu.swift in Sources */,
- F7F4F11027ECDC4A008676F9 /* UIDevice+Extension.swift in Sources */,
- F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
- F70D8D8124A4A9BF000A5756 /* NCNetworkingProcessUpload.swift in Sources */,
- F7D96FCC246ED7E200536D73 /* NCNetworkingCheckRemoteUser.swift in Sources */,
- F7E4D9C422ED929B003675FD /* NCShareCommentsCell.swift in Sources */,
- F717402E24F699A5000C87D5 /* NCFavorite.swift in Sources */,
- AF2D7C7E2742559100ADF566 /* NCShareUserCell.swift in Sources */,
- AF7E505027A2D92300B5E4AF /* NCSelectableNavigationView.swift in Sources */,
- F74DE14325135B6800917068 /* NCTransfers.swift in Sources */,
- AF4BF614275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
- AF4BF61E27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F7C9738C28F17131002C43E2 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F78A10C129322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
- F7A8D73528F17E16008BBE1C /* NCManageDatabase.swift in Sources */,
- F7A8D74428F1827B008BBE1C /* ThreadSafeDictionary.swift in Sources */,
- F7C9739528F17131002C43E2 /* IntentHandler.swift in Sources */,
- F7A8D73D28F181D3008BBE1C /* NCUtilityFileSystem.swift in Sources */,
- F7A8D74528F1828E008BBE1C /* CCUtility.m in Sources */,
- F75DD767290ABB25002EB562 /* Intent.intentdefinition in Sources */,
- F749B64C297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
- F7A8D73F28F181EF008BBE1C /* NCGlobal.swift in Sources */,
- F749B653297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
- F7A8D74328F1826F008BBE1C /* String+Extension.swift in Sources */,
- F7A8D73728F17E1E008BBE1C /* NCManageDatabase+Account.swift in Sources */,
- F7A8D73B28F17E2C008BBE1C /* NCElementsJSON.swift in Sources */,
- F7BF9D842934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
- F7A8D73C28F181BC008BBE1C /* NCBrand.swift in Sources */,
- F7A8D74228F18261008BBE1C /* NCUtility.swift in Sources */,
- F7A8D73A28F17E28008BBE1C /* NCManageDatabase+Video.swift in Sources */,
- F7A8D73828F17E21008BBE1C /* NCManageDatabase+DashboardWidget.swift in Sources */,
- F7A8D73928F17E25008BBE1C /* NCManageDatabase+Metadata.swift in Sources */,
- F7A8D74128F18254008BBE1C /* UIColor+Extension.swift in Sources */,
- F7A8D73428F17E12008BBE1C /* NCDatabase.swift in Sources */,
- F7A8D74028F18212008BBE1C /* UIImage+Extension.swift in Sources */,
- F7A8D73628F17E1A008BBE1C /* NCManageDatabase+Activity.swift in Sources */,
- F7A8D73E28F181E2008BBE1C /* NCUserBaseUrl.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXTargetDependency section */
- 2C33C48523E2C475005F963B /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 2C33C47E23E2C475005F963B /* Notification Service Extension */;
- targetProxy = 2C33C48423E2C475005F963B /* PBXContainerItemProxy */;
- };
- AF8ED1FE2757821000B8DBC4 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = F77B0DEB1D118A16002130FE /* Nextcloud */;
- targetProxy = AF8ED1FD2757821000B8DBC4 /* PBXContainerItemProxy */;
- };
- F7145A321D12E65F00CAFEEC /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = F71459B41D12E3B700CAFEEC /* Share */;
- targetProxy = F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */;
- };
- F7346E1B28B0EF5E006CE2D2 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = F7346E0F28B0EF5B006CE2D2 /* Widget */;
- targetProxy = F7346E1A28B0EF5E006CE2D2 /* PBXContainerItemProxy */;
- };
- F771E3EA20E2392E00AFB62D /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = F771E3CF20E2392D00AFB62D /* File Provider Extension */;
- targetProxy = F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */;
- };
- F7C9739828F17131002C43E2 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = F7C9738F28F17131002C43E2 /* WidgetDashboardIntentHandler */;
- targetProxy = F7C9739728F17131002C43E2 /* PBXContainerItemProxy */;
- };
- /* End PBXTargetDependency section */
- /* Begin PBXVariantGroup section */
- F72685E927C78E490019EF5E /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- F72685E827C78E490019EF5E /* en */,
- F7AA41B827C7CF4600494705 /* ca */,
- F7AA41B927C7CF4B00494705 /* zh-Hans */,
- F7AA41BA27C7CF5000494705 /* zh-Hant-TW */,
- F7AA41BB27C7CF5100494705 /* cs-CZ */,
- F7AA41BC27C7CF5300494705 /* da */,
- F7AA41BD27C7CF5400494705 /* nl */,
- F7AA41BE27C7CF5600494705 /* ja-JP */,
- F7AA41BF27C7CF5700494705 /* fr */,
- F7AA41C027C7CF5800494705 /* en-GB */,
- F7AA41C127C7CF5900494705 /* gl */,
- F7AA41C227C7CF5A00494705 /* ka-GE */,
- F7AA41C327C7CF5B00494705 /* de */,
- F7AA41C427C7CF5C00494705 /* hu */,
- F7AA41C527C7CF5D00494705 /* is */,
- F7AA41C627C7CF5E00494705 /* it */,
- F7AA41C727C7CF6000494705 /* tr */,
- F7AA41C827C7CF6200494705 /* es-HN */,
- F7AA41C927C7CF6300494705 /* es-DO */,
- F7AA41CA27C7CF6400494705 /* ko */,
- F7AA41CB27C7CF6500494705 /* nb-NO */,
- F7AA41CC27C7CF6600494705 /* pl */,
- F7AA41CD27C7CF6700494705 /* pt-BR */,
- F7AA41CE27C7CF6800494705 /* pt-PT */,
- F7AA41CF27C7CF6900494705 /* ru */,
- F7AA41D027C7CF6900494705 /* sk-SK */,
- F7AA41D127C7CF6A00494705 /* sr */,
- F7AA41D227C7CF6C00494705 /* es-CO */,
- F7AA41D327C7CF6D00494705 /* es-CL */,
- F7AA41D427C7CF6E00494705 /* es */,
- F7AA41D527C7CF6F00494705 /* es-CR */,
- F7AA41D627C7CF7100494705 /* es-GT */,
- F7AA41D727C7CF7200494705 /* es-SV */,
- F7AA41D827C7CF7300494705 /* es-EC */,
- F7AA41D927C7CF7500494705 /* es-PR */,
- F7AA41DA27C7CF7600494705 /* sv */,
- F7AA41DB27C7CF7800494705 /* es-UY */,
- F7AA41DC27C7CF7900494705 /* es-PE */,
- F7AA41DD27C7CF7B00494705 /* es-419 */,
- F7AA41DE27C7CF7D00494705 /* es-PA */,
- F7AA41DF27C7CF7E00494705 /* es-PY */,
- F7AA41E027C7CF8000494705 /* es-NI */,
- F7AA41E127C7CF8100494705 /* es-MX */,
- F79131C728AFB86E00577277 /* eu */,
- );
- name = InfoPlist.strings;
- path = "Supporting Files";
- sourceTree = "<group>";
- };
- F75DD769290ABB25002EB562 /* Intent.intentdefinition */ = {
- isa = PBXVariantGroup;
- children = (
- F75DD768290ABB25002EB562 /* Base */,
- F7BE7C25290AC8C9002ABB61 /* en */,
- F7BE7C27290ADEFD002ABB61 /* eu */,
- F7BE7C29290ADEFD002ABB61 /* ca */,
- F7BE7C2B290ADEFE002ABB61 /* zh-Hans */,
- F7BE7C2D290ADEFF002ABB61 /* cs-CZ */,
- F7BE7C2F290ADF00002ABB61 /* zh-Hant-TW */,
- F7BE7C31290ADF00002ABB61 /* nl */,
- F7BE7C33290ADF01002ABB61 /* da */,
- F7BE7C35290ADF03002ABB61 /* tr */,
- F7BE7C37290ADF03002ABB61 /* sv */,
- F7BE7C39290ADF04002ABB61 /* es-UY */,
- F7BE7C3B290ADF04002ABB61 /* es-PR */,
- F7BE7C3D290ADF05002ABB61 /* es-PE */,
- F7BE7C3F290ADF06002ABB61 /* es-PY */,
- F7BE7C41290ADF06002ABB61 /* es-PA */,
- F7BE7C43290ADF06002ABB61 /* es-NI */,
- F7BE7C45290ADF07002ABB61 /* es-MX */,
- F7BE7C47290ADF07002ABB61 /* es-419 */,
- F7BE7C49290ADF08002ABB61 /* es-HN */,
- F7BE7C4B290ADF09002ABB61 /* ru */,
- F7BE7C4D290ADF0A002ABB61 /* sr */,
- F7BE7C4F290ADF0A002ABB61 /* sk-SK */,
- F7BE7C51290ADF0B002ABB61 /* es */,
- F7BE7C53290ADF0B002ABB61 /* es-CL */,
- F7BE7C55290ADF0C002ABB61 /* es-CO */,
- F7BE7C57290ADF0C002ABB61 /* es-CR */,
- F7BE7C59290ADF0D002ABB61 /* es-DO */,
- F7BE7C5B290ADF0D002ABB61 /* es-EC */,
- F7BE7C5D290ADF0E002ABB61 /* es-SV */,
- F7BE7C5F290ADF0E002ABB61 /* es-GT */,
- F7BE7C61290ADF10002ABB61 /* en-GB */,
- F7BE7C63290ADF10002ABB61 /* fr */,
- F7BE7C65290ADF10002ABB61 /* gl */,
- F7BE7C67290ADF11002ABB61 /* ka-GE */,
- F7BE7C69290ADF11002ABB61 /* de */,
- F7BE7C6B290ADF12002ABB61 /* hu */,
- F7BE7C6D290ADF12002ABB61 /* is */,
- F7BE7C6F290ADF13002ABB61 /* it */,
- F7BE7C71290ADF13002ABB61 /* ja-JP */,
- F7BE7C73290ADF14002ABB61 /* ko */,
- F7BE7C75290ADF14002ABB61 /* nb-NO */,
- F7BE7C77290ADF15002ABB61 /* pl */,
- F7BE7C79290ADF16002ABB61 /* pt-BR */,
- F7BE7C7B290ADF16002ABB61 /* pt-PT */,
- );
- name = Intent.intentdefinition;
- sourceTree = "<group>";
- };
- F7E70DE91A24DE4100E1B66A /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- F7151A811D477A4B00E6AF45 /* en */,
- F7B1A7761EBB3C8000BFB6D1 /* de */,
- F75B91E21ECAE17800199C96 /* fr */,
- F75B91F71ECAE26300199C96 /* pt-BR */,
- F75B923D1ECAE55E00199C96 /* ru */,
- F7169A301EE59BB70086BD69 /* it */,
- F7169A4C1EE59C640086BD69 /* tr */,
- F78D6F461F0B7CB9002F9619 /* es-MX */,
- F78D6F4D1F0B7CE4002F9619 /* nb-NO */,
- F78D6F541F0B7D47002F9619 /* pl */,
- F7DE9AB01F482FA5008DFE10 /* sv */,
- F7CC04E61F5AD50D00378CEF /* es */,
- F7D532461F5D4123006568B1 /* is */,
- F7D5324D1F5D4137006568B1 /* nl */,
- F7D532541F5D4155006568B1 /* sk-SK */,
- F7D5328F1F5D443B006568B1 /* en-GB */,
- F7D532A41F5D4461006568B1 /* zh-Hans */,
- F77438EB1FCD694900662C46 /* ka-GE */,
- F77438F21FCD69D300662C46 /* hu */,
- F77438F91FCD6A0D00662C46 /* zh-Hant-TW */,
- F77439001FCD6B7F00662C46 /* sr */,
- F77439071FCD6BF000662C46 /* es-CL */,
- F774390E1FCD6C0C00662C46 /* es-CO */,
- F77439151FCD6C4A00662C46 /* es-CR */,
- F774391C1FCD6C6700662C46 /* es-DO */,
- F77439231FCD6C8700662C46 /* es-EC */,
- F774392A1FCD6CAA00662C46 /* es-GT */,
- F77439311FCD6CC400662C46 /* es-HN */,
- F77439381FCD6CDE00662C46 /* es-NI */,
- F774393F1FCD6D0B00662C46 /* es-PA */,
- F77439461FCD6D2300662C46 /* es-PE */,
- F774394D1FCD6D3E00662C46 /* es-PR */,
- F77439541FCD6D6100662C46 /* es-PY */,
- F774395B1FCD6D8200662C46 /* es-SV */,
- F77439621FCD6D9C00662C46 /* es-UY */,
- F7BB04851FD58ACB00BBFD2A /* cs-CZ */,
- F7320934201B812F008A0888 /* ko */,
- F732093B201B81E4008A0888 /* es-419 */,
- F70A07C8205285FB00DC1231 /* pt-PT */,
- F7E45E6D21E75BF200579249 /* ja-JP */,
- F753701822723D620041C76C /* gl */,
- F753701922723E0D0041C76C /* ca */,
- F753701A22723EC80041C76C /* da */,
- F79131C628AFB86E00577277 /* eu */,
- );
- name = Localizable.strings;
- path = "Supporting Files";
- sourceTree = "<group>";
- };
- /* End PBXVariantGroup section */
- /* Begin XCBuildConfiguration section */
- 2C33C48723E2C475005F963B /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_NOTIFICATION_SERVICE,
- );
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
- PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_NOTIFICATION_SERVICE";
- SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
- };
- name = Debug;
- };
- 2C33C48823E2C475005F963B /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_NOTIFICATION_SERVICE,
- );
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
- PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_NOTIFICATION_SERVICE";
- SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
- };
- name = Release;
- };
- AF8ED1FF2757821000B8DBC4 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
- ENABLE_HARDENED_RUNTIME = YES;
- GENERATE_INFOPLIST_FILE = YES;
- PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Nextcloud.app/Nextcloud";
- };
- name = Debug;
- };
- AF8ED2002757821000B8DBC4 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
- ENABLE_HARDENED_RUNTIME = YES;
- GENERATE_INFOPLIST_FILE = YES;
- PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Nextcloud.app/Nextcloud";
- };
- name = Release;
- };
- F7145A261D12E3B700CAFEEC /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_SHARE,
- );
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
- PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_SHARE";
- SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Share/Share-Bridging-Header.h";
- };
- name = Debug;
- };
- F7145A271D12E3B700CAFEEC /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_SHARE,
- );
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
- PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_SHARE";
- SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Share/Share-Bridging-Header.h";
- };
- name = Release;
- };
- F7346E1D28B0EF5E006CE2D2 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
- ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Widget.entitlements";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_WIDGET,
- );
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Widget.plist";
- INFOPLIST_KEY_CFBundleDisplayName = Nextcloud;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Widget;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_WIDGET";
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Widget/Widget-Brinding-header.h";
- };
- name = Debug;
- };
- F7346E1E28B0EF5E006CE2D2 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
- ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Widget.entitlements";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_WIDGET,
- );
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Widget.plist";
- INFOPLIST_KEY_CFBundleDisplayName = Nextcloud;
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Widget;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_WIDGET";
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Widget/Widget-Brinding-header.h";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- F771E3F020E2392E00AFB62D /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_FILE_PROVIDER_EXTENSION,
- );
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
- PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION";
- SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/File Provider Extension/FileProviderExtension-Bridging-Header.h";
- };
- name = Debug;
- };
- F771E3F120E2392E00AFB62D /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_FILE_PROVIDER_EXTENSION,
- );
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
- PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION";
- SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/File Provider Extension/FileProviderExtension-Bridging-Header.h";
- };
- name = Release;
- };
- F77B0F9B1D118A16002130FE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
- PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- };
- name = Debug;
- };
- F77B0F9C1D118A16002130FE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
- PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- };
- name = Release;
- };
- F7C9739B28F17132002C43E2 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand//WidgetDashboardIntentHandler.entitlements";
- DEBUG_INFORMATION_FORMAT = dwarf;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_WIDGETDASHBOARDINTENTHANDLER,
- );
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/WidgetDashboardIntentHandler.plist";
- INFOPLIST_KEY_CFBundleDisplayName = WidgetDashboardIntentHandler;
- INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2022 Nextcloud. All rights reserved.";
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.WidgetDashboardIntentHandler;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_WIDGETDASHBOARDINTENTHANDLER";
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/WidgetDashboardIntentHandler/WidgetDashboardIntentHandler-Brinding-header.h";
- };
- name = Debug;
- };
- F7C9739C28F17132002C43E2 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand//WidgetDashboardIntentHandler.entitlements";
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- EXTENSION,
- EXTENSION_WIDGETDASHBOARDINTENTHANDLER,
- );
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/WidgetDashboardIntentHandler.plist";
- INFOPLIST_KEY_CFBundleDisplayName = WidgetDashboardIntentHandler;
- INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2022 Nextcloud. All rights reserved.";
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.WidgetDashboardIntentHandler;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_WIDGETDASHBOARDINTENTHANDLER";
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/WidgetDashboardIntentHandler/WidgetDashboardIntentHandler-Brinding-header.h";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- F7F67BC91A24D27800EE80DA /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- CURRENT_PROJECT_VERSION = 7;
- DEVELOPMENT_TEAM = NKUJUXUJ3B;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- DEBUG,
- NC,
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2022 Nextcloud. All rights reserved.";
- IPHONEOS_DEPLOYMENT_TARGET = 14.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@executable_path/../../Frameworks",
- );
- MARKETING_VERSION = 4.7.0;
- ONLY_ACTIVE_ARCH = YES;
- OTHER_LDFLAGS = "";
- SDKROOT = iphoneos;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) NC DEBUG";
- SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Brand/Nextcloud-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- F7F67BCA1A24D27800EE80DA /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- CURRENT_PROJECT_VERSION = 7;
- DEVELOPMENT_TEAM = NKUJUXUJ3B;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- NC,
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2022 Nextcloud. All rights reserved.";
- IPHONEOS_DEPLOYMENT_TARGET = 14.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@executable_path/../../Frameworks",
- );
- MARKETING_VERSION = 4.7.0;
- ONLY_ACTIVE_ARCH = YES;
- OTHER_LDFLAGS = "";
- SDKROOT = iphoneos;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) NC";
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Brand/Nextcloud-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2C33C48723E2C475005F963B /* Debug */,
- 2C33C48823E2C475005F963B /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- AF8ED2012757821000B8DBC4 /* Build configuration list for PBXNativeTarget "NextcloudTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- AF8ED1FF2757821000B8DBC4 /* Debug */,
- AF8ED2002757821000B8DBC4 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- F7145A261D12E3B700CAFEEC /* Debug */,
- F7145A271D12E3B700CAFEEC /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- F7346E1F28B0EF5E006CE2D2 /* Build configuration list for PBXNativeTarget "Widget" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- F7346E1D28B0EF5E006CE2D2 /* Debug */,
- F7346E1E28B0EF5E006CE2D2 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- F771E3F020E2392E00AFB62D /* Debug */,
- F771E3F120E2392E00AFB62D /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- F77B0F9B1D118A16002130FE /* Debug */,
- F77B0F9C1D118A16002130FE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- F7C9739A28F17132002C43E2 /* Build configuration list for PBXNativeTarget "WidgetDashboardIntentHandler" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- F7C9739B28F17132002C43E2 /* Debug */,
- F7C9739C28F17132002C43E2 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- F7F67BC91A24D27800EE80DA /* Debug */,
- F7F67BCA1A24D27800EE80DA /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- /* End XCConfigurationList section */
- /* Begin XCRemoteSwiftPackageReference section */
- F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/firebase/firebase-ios-sdk";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 8.9.0;
- };
- };
- F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/realm/realm-swift";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 10.0.0;
- };
- };
- F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/JonasGessner/JGProgressHUD.git";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 2.0.0;
- };
- };
- F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/malcommac/SwiftRichString";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 3.7.2;
- };
- };
- F734B06428E75C0100E180D5 /* XCRemoteSwiftPackageReference "TLPhotoPicker" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/marinofaggiana/TLPhotoPicker";
- requirement = {
- branch = master;
- kind = branch;
- };
- };
- F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/huri000/SwiftEntryKit";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 1.2.7;
- };
- };
- F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/xmartlabs/XLForm";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 4.0.0;
- };
- };
- F753BA91281FD8010015BFB6 /* XCRemoteSwiftPackageReference "EasyTipView" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/marinofaggiana/EasyTipView";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 2.0.0;
- };
- };
- F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/SVGKit/SVGKit.git";
- requirement = {
- kind = upToNextMinorVersion;
- minimumVersion = 3.0.0;
- };
- };
- F75EAED626D2552E00F4320E /* XCRemoteSwiftPackageReference "MarqueeLabel" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/cbpowell/MarqueeLabel";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 4.3.0;
- };
- };
- F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/FabrizioBrancati/Queuer";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 2.0.0;
- };
- };
- F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/kishikawakatsumi/UICKeyChainStore";
- requirement = {
- branch = master;
- kind = branch;
- };
- };
- F76DA967277B77E90082465B /* XCRemoteSwiftPackageReference "DropDown" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/AssistoLab/DropDown";
- requirement = {
- branch = master;
- kind = branch;
- };
- };
- F770768C263A8C3400A1BA94 /* XCRemoteSwiftPackageReference "FloatingPanel" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/scenee/FloatingPanel";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 2.0.0;
- };
- };
- F77333862927A72100466E35 /* XCRemoteSwiftPackageReference "OpenSSL" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/krzyzanowskim/OpenSSL";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 1.0.0;
- };
- };
- F77BC3E9293E5268005F2B08 /* XCRemoteSwiftPackageReference "swifter" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/httpswift/swifter.git";
- requirement = {
- branch = stable;
- kind = branch;
- };
- };
- F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/nextcloud/NextcloudKit";
- requirement = {
- branch = develop;
- kind = branch;
- };
- };
- F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/bmoliveira/MarkdownKit";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 1.7.1;
- };
- };
- F7BB7E4527A18C56009B9F29 /* XCRemoteSwiftPackageReference "Parchment" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/rechsteiner/Parchment";
- requirement = {
- branch = main;
- kind = branch;
- };
- };
- F7D56B182972405400FA46C4 /* XCRemoteSwiftPackageReference "Mantis" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/marinofaggiana/Mantis";
- requirement = {
- kind = exactVersion;
- version = 1.0.0;
- };
- };
- F7ED547A25EEA65400956C55 /* XCRemoteSwiftPackageReference "QRCodeReader" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/yannickl/QRCodeReader.swift";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 10.1.1;
- };
- };
- /* End XCRemoteSwiftPackageReference section */
- /* Begin XCSwiftPackageProductDependency section */
- F70B86742642CE3B00ED5349 /* FirebaseCrashlytics */ = {
- isa = XCSwiftPackageProductDependency;
- package = F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */;
- productName = FirebaseCrashlytics;
- };
- F710FC79277B7D0000AA9FBF /* Realm */ = {
- isa = XCSwiftPackageProductDependency;
- package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
- productName = Realm;
- };
- F710FC7B277B7D0000AA9FBF /* RealmSwift */ = {
- isa = XCSwiftPackageProductDependency;
- package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
- productName = RealmSwift;
- };
- F710FC7D277B7D2600AA9FBF /* Realm */ = {
- isa = XCSwiftPackageProductDependency;
- package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
- productName = Realm;
- };
- F710FC7F277B7D2700AA9FBF /* RealmSwift */ = {
- isa = XCSwiftPackageProductDependency;
- package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
- productName = RealmSwift;
- };
- F710FC81277B7D3500AA9FBF /* Realm */ = {
- isa = XCSwiftPackageProductDependency;
- package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
- productName = Realm;
- };
- F710FC83277B7D3500AA9FBF /* RealmSwift */ = {
- isa = XCSwiftPackageProductDependency;
- package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
- productName = RealmSwift;
- };
- F710FC85277B7D3F00AA9FBF /* Realm */ = {
- isa = XCSwiftPackageProductDependency;
- package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
- productName = Realm;
- };
- F710FC87277B7D3F00AA9FBF /* RealmSwift */ = {
- isa = XCSwiftPackageProductDependency;
- package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
- productName = RealmSwift;
- };
- F72AD70C28C24B93006CB92D /* NextcloudKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
- productName = NextcloudKit;
- };
- F72AD70E28C24BA1006CB92D /* NextcloudKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
- productName = NextcloudKit;
- };
- F72AD71028C24BBB006CB92D /* NextcloudKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
- productName = NextcloudKit;
- };
- F72AD71228C24BCC006CB92D /* NextcloudKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
- productName = NextcloudKit;
- };
- F72CD01127A7E92400E59476 /* JGProgressHUD */ = {
- isa = XCSwiftPackageProductDependency;
- package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
- productName = JGProgressHUD;
- };
- F72D7EB6263B1207000B3DFC /* MarkdownKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */;
- productName = MarkdownKit;
- };
- F72DA9B325F53E4E00B87DB1 /* SwiftRichString */ = {
- isa = XCSwiftPackageProductDependency;
- package = F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */;
- productName = SwiftRichString;
- };
- F7346E2428B0FEFA006CE2D2 /* UICKeyChainStore */ = {
- isa = XCSwiftPackageProductDependency;
- package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
- productName = UICKeyChainStore;
- };
- F7346E2628B0FFF2006CE2D2 /* Realm */ = {
- isa = XCSwiftPackageProductDependency;
- package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
- productName = Realm;
- };
- F7346E2828B0FFF2006CE2D2 /* RealmSwift */ = {
- isa = XCSwiftPackageProductDependency;
- package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
- productName = RealmSwift;
- };
- F734B06528E75C0100E180D5 /* TLPhotoPicker */ = {
- isa = XCSwiftPackageProductDependency;
- package = F734B06428E75C0100E180D5 /* XCRemoteSwiftPackageReference "TLPhotoPicker" */;
- productName = TLPhotoPicker;
- };
- F73ADD1B265546890069EA0D /* SwiftEntryKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
- productName = SwiftEntryKit;
- };
- F73ADD2026554F8E0069EA0D /* SwiftEntryKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
- productName = SwiftEntryKit;
- };
- F73ADD2326554FE20069EA0D /* SwiftEntryKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
- productName = SwiftEntryKit;
- };
- F74E771F277A2EF40013B958 /* XLForm */ = {
- isa = XCSwiftPackageProductDependency;
- package = F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */;
- productName = XLForm;
- };
- F753BA92281FD8020015BFB6 /* EasyTipView */ = {
- isa = XCSwiftPackageProductDependency;
- package = F753BA91281FD8010015BFB6 /* XCRemoteSwiftPackageReference "EasyTipView" */;
- productName = EasyTipView;
- };
- F758A01127A7F03E0069468B /* JGProgressHUD */ = {
- isa = XCSwiftPackageProductDependency;
- package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
- productName = JGProgressHUD;
- };
- F75E57BC25BF0EC1002B72C2 /* SVGKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
- productName = SVGKit;
- };
- F75E57BE25BF0EC8002B72C2 /* SVGKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
- productName = SVGKit;
- };
- F75E57C025BF0ECD002B72C2 /* SVGKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
- productName = SVGKit;
- };
- F75E57C225BF0ED2002B72C2 /* SVGKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
- productName = SVGKit;
- };
- F75EAED726D2552E00F4320E /* MarqueeLabel */ = {
- isa = XCSwiftPackageProductDependency;
- package = F75EAED626D2552E00F4320E /* XCRemoteSwiftPackageReference "MarqueeLabel" */;
- productName = MarqueeLabel;
- };
- F76DA962277B760E0082465B /* Queuer */ = {
- isa = XCSwiftPackageProductDependency;
- package = F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */;
- productName = Queuer;
- };
- F76DA965277B76F30082465B /* UICKeyChainStore */ = {
- isa = XCSwiftPackageProductDependency;
- package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
- productName = UICKeyChainStore;
- };
- F76DA968277B77EA0082465B /* DropDown */ = {
- isa = XCSwiftPackageProductDependency;
- package = F76DA967277B77E90082465B /* XCRemoteSwiftPackageReference "DropDown" */;
- productName = DropDown;
- };
- F770768D263A8C3400A1BA94 /* FloatingPanel */ = {
- isa = XCSwiftPackageProductDependency;
- package = F770768C263A8C3400A1BA94 /* XCRemoteSwiftPackageReference "FloatingPanel" */;
- productName = FloatingPanel;
- };
- F77333872927A72100466E35 /* OpenSSL */ = {
- isa = XCSwiftPackageProductDependency;
- package = F77333862927A72100466E35 /* XCRemoteSwiftPackageReference "OpenSSL" */;
- productName = OpenSSL;
- };
- F77BC3EA293E5268005F2B08 /* Swifter */ = {
- isa = XCSwiftPackageProductDependency;
- package = F77BC3E9293E5268005F2B08 /* XCRemoteSwiftPackageReference "swifter" */;
- productName = Swifter;
- };
- F783030428B4C50600B84583 /* SVGKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
- productName = SVGKit;
- };
- F783030C28B4C59A00B84583 /* SwiftEntryKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
- productName = SwiftEntryKit;
- };
- F783034328B5142B00B84583 /* NextcloudKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
- productName = NextcloudKit;
- };
- F788ECC6263AAAFA00ADC67F /* MarkdownKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */;
- productName = MarkdownKit;
- };
- F78D0C7E2912722100D706AB /* JGProgressHUD */ = {
- isa = XCSwiftPackageProductDependency;
- package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
- productName = JGProgressHUD;
- };
- F78D0C802912723900D706AB /* JGProgressHUD */ = {
- isa = XCSwiftPackageProductDependency;
- package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
- productName = JGProgressHUD;
- };
- F78D0C822912724F00D706AB /* JGProgressHUD */ = {
- isa = XCSwiftPackageProductDependency;
- package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
- productName = JGProgressHUD;
- };
- F78D0C842912725600D706AB /* JGProgressHUD */ = {
- isa = XCSwiftPackageProductDependency;
- package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
- productName = JGProgressHUD;
- };
- F7A8D72328F1771B008BBE1C /* NextcloudKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
- productName = NextcloudKit;
- };
- F7A8D72528F17728008BBE1C /* Realm */ = {
- isa = XCSwiftPackageProductDependency;
- package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
- productName = Realm;
- };
- F7A8D72728F17728008BBE1C /* RealmSwift */ = {
- isa = XCSwiftPackageProductDependency;
- package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
- productName = RealmSwift;
- };
- F7A8D72928F17733008BBE1C /* SVGKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
- productName = SVGKit;
- };
- F7A8D72B28F17742008BBE1C /* SwiftEntryKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
- productName = SwiftEntryKit;
- };
- F7A8D72D28F17764008BBE1C /* UICKeyChainStore */ = {
- isa = XCSwiftPackageProductDependency;
- package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
- productName = UICKeyChainStore;
- };
- F7BB7E4627A18C56009B9F29 /* Parchment */ = {
- isa = XCSwiftPackageProductDependency;
- package = F7BB7E4527A18C56009B9F29 /* XCRemoteSwiftPackageReference "Parchment" */;
- productName = Parchment;
- };
- F7D56B192972405500FA46C4 /* Mantis */ = {
- isa = XCSwiftPackageProductDependency;
- package = F7D56B182972405400FA46C4 /* XCRemoteSwiftPackageReference "Mantis" */;
- productName = Mantis;
- };
- F7EBCDCE277B81FF00A4EF67 /* UICKeyChainStore */ = {
- isa = XCSwiftPackageProductDependency;
- package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
- productName = UICKeyChainStore;
- };
- F7EBCDD0277B820D00A4EF67 /* UICKeyChainStore */ = {
- isa = XCSwiftPackageProductDependency;
- package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
- productName = UICKeyChainStore;
- };
- F7EBCDD2277B821700A4EF67 /* UICKeyChainStore */ = {
- isa = XCSwiftPackageProductDependency;
- package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
- productName = UICKeyChainStore;
- };
- F7ED547B25EEA65400956C55 /* QRCodeReader */ = {
- isa = XCSwiftPackageProductDependency;
- package = F7ED547A25EEA65400956C55 /* XCRemoteSwiftPackageReference "QRCodeReader" */;
- productName = QRCodeReader;
- };
- /* End XCSwiftPackageProductDependency section */
- };
- rootObject = F7F67BA01A24D27800EE80DA /* Project object */;
- }
|