project.pbxproj 206 KB

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