project.pbxproj 207 KB

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