project.pbxproj 226 KB

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