project.pbxproj 208 KB

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