project.pbxproj 227 KB

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