project.pbxproj 202 KB

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