project.pbxproj 228 KB

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