project.pbxproj 206 KB

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