project.pbxproj 213 KB

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