project.pbxproj 265 KB

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