project.pbxproj 205 KB

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