project.pbxproj 350 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 54;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 1F0A1D442A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0A1D432A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift */; };
  10. 1F0B0A722BA264540073FF8D /* MentionSuggestion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0B0A712BA264540073FF8D /* MentionSuggestion.swift */; };
  11. 1F0B0A732BA265300073FF8D /* MentionSuggestion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0B0A712BA264540073FF8D /* MentionSuggestion.swift */; };
  12. 1F0B0A742BA265310073FF8D /* MentionSuggestion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0B0A712BA264540073FF8D /* MentionSuggestion.swift */; };
  13. 1F0B0A752BA265310073FF8D /* MentionSuggestion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0B0A712BA264540073FF8D /* MentionSuggestion.swift */; };
  14. 1F0B0A772BA26BE10073FF8D /* UnitMentionSuggestionTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0B0A762BA26BE10073FF8D /* UnitMentionSuggestionTest.swift */; };
  15. 1F0ECBF52A68274400921E90 /* CDMarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F0ECBF42A68274400921E90 /* CDMarkdownKit */; };
  16. 1F0ECBF72A68277000921E90 /* CDMarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F0ECBF62A68277000921E90 /* CDMarkdownKit */; };
  17. 1F0ECBF92A68277C00921E90 /* CDMarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F0ECBF82A68277C00921E90 /* CDMarkdownKit */; };
  18. 1F11FB7229C07B04001E21E7 /* NCZoomableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F11FB7129C07B04001E21E7 /* NCZoomableView.swift */; };
  19. 1F1B0F252BD94A0D003FD766 /* UnitDarwinCenterTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F242BD94A0D003FD766 /* UnitDarwinCenterTest.swift */; };
  20. 1F1B0F272BDA61C5003FD766 /* AllocationTracker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F262BDA61C5003FD766 /* AllocationTracker.swift */; };
  21. 1F1B0F2C2BDBB3AC003FD766 /* NCMediaViewerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F2B2BDBB3AC003FD766 /* NCMediaViewerViewController.swift */; };
  22. 1F1B0F302BDBC9D6003FD766 /* NCMediaViewerPageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F2F2BDBC9D6003FD766 /* NCMediaViewerPageViewController.swift */; };
  23. 1F1B0F322BDC57E3003FD766 /* UIPageViewControllerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F312BDC57E3003FD766 /* UIPageViewControllerExtension.swift */; };
  24. 1F1B0F362BDD8B9C003FD766 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F352BDD8B9C003FD766 /* NCActivityIndicator.swift */; };
  25. 1F1B0F422BE047CE003FD766 /* UIViewController+Transitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F3B2BE047CD003FD766 /* UIViewController+Transitions.swift */; };
  26. 1F1B0F432BE047CE003FD766 /* ModalTransitionAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F3C2BE047CD003FD766 /* ModalTransitionAnimator.swift */; };
  27. 1F1B0F442BE047CE003FD766 /* ModalTransitionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F3D2BE047CD003FD766 /* ModalTransitionManager.swift */; };
  28. 1F1B0F452BE047CE003FD766 /* ModalPresentationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F3E2BE047CD003FD766 /* ModalPresentationController.swift */; };
  29. 1F1B0F462BE047CE003FD766 /* InteractionControlling.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F3F2BE047CD003FD766 /* InteractionControlling.swift */; };
  30. 1F1B0F472BE047CE003FD766 /* StandardInteractionController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F402BE047CE003FD766 /* StandardInteractionController.swift */; };
  31. 1F1B0F482BE047CE003FD766 /* CustomPresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F412BE047CE003FD766 /* CustomPresentable.swift */; };
  32. 1F1B0F4A2BE047D5003FD766 /* OneWayPanGestureRecognizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F492BE047D5003FD766 /* OneWayPanGestureRecognizer.swift */; };
  33. 1F1B0F4C2BE18FF3003FD766 /* CustomPresentableNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F4B2BE18FF3003FD766 /* CustomPresentableNavigationController.swift */; };
  34. 1F1B50342B8E069800B0F2F4 /* BaseChatTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50332B8E069800B0F2F4 /* BaseChatTableViewCell.swift */; };
  35. 1F1B50382B8E070100B0F2F4 /* BaseChatTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F1B50372B8E070100B0F2F4 /* BaseChatTableViewCell.xib */; };
  36. 1F1B503A2B8F9E1300B0F2F4 /* BaseChatTableViewCell+File.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50392B8F9E1300B0F2F4 /* BaseChatTableViewCell+File.swift */; };
  37. 1F1B503E2B8FB12100B0F2F4 /* BaseChatTableViewCell+Message.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B503D2B8FB12100B0F2F4 /* BaseChatTableViewCell+Message.swift */; };
  38. 1F1B50442B9095D100B0F2F4 /* FederatedCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50432B9095D100B0F2F4 /* FederatedCapabilities.m */; };
  39. 1F1B50472B90CDF800B0F2F4 /* TalkCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50462B90CDF800B0F2F4 /* TalkCapabilities.m */; };
  40. 1F1B50482B90CF0800B0F2F4 /* TalkCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50462B90CDF800B0F2F4 /* TalkCapabilities.m */; };
  41. 1F1B50492B90CF0800B0F2F4 /* TalkCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50462B90CDF800B0F2F4 /* TalkCapabilities.m */; };
  42. 1F1B504A2B90CF0800B0F2F4 /* TalkCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50462B90CDF800B0F2F4 /* TalkCapabilities.m */; };
  43. 1F1B504B2B90CF0C00B0F2F4 /* FederatedCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50432B9095D100B0F2F4 /* FederatedCapabilities.m */; };
  44. 1F1B504C2B90CF0C00B0F2F4 /* FederatedCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50432B9095D100B0F2F4 /* FederatedCapabilities.m */; };
  45. 1F1B504D2B90CF0C00B0F2F4 /* FederatedCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50432B9095D100B0F2F4 /* FederatedCapabilities.m */; };
  46. 1F1C0D7F29A7F33600D17C6D /* NCNotificationAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA38C8F29A4B3C6008871B8 /* NCNotificationAction.swift */; };
  47. 1F1C0D8729AFB88800D17C6D /* VLCKitVideoViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F1C0D8629AFB88800D17C6D /* VLCKitVideoViewController.xib */; };
  48. 1F1C0D8929AFB89900D17C6D /* VLCKitVideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1C0D8829AFB89900D17C6D /* VLCKitVideoViewController.swift */; };
  49. 1F1C999D2909846400EACF02 /* BGTaskHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD9182828C55A73009092AB /* BGTaskHelper.swift */; };
  50. 1F1C999E2909846400EACF02 /* BGTaskHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD9182828C55A73009092AB /* BGTaskHelper.swift */; };
  51. 1F1DF83C2C5C17AF00E5EA86 /* TalkActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF83B2C5C17AF00E5EA86 /* TalkActor.swift */; };
  52. 1F1DF83D2C5C17AF00E5EA86 /* TalkActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF83B2C5C17AF00E5EA86 /* TalkActor.swift */; };
  53. 1F1DF83E2C5C17AF00E5EA86 /* TalkActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF83B2C5C17AF00E5EA86 /* TalkActor.swift */; };
  54. 1F1DF83F2C5C17AF00E5EA86 /* TalkActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF83B2C5C17AF00E5EA86 /* TalkActor.swift */; };
  55. 1F1DF8412C63C25900E5EA86 /* UnitNCDatabaseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF8402C63C25900E5EA86 /* UnitNCDatabaseManager.swift */; };
  56. 1F1DF8432C64006E00E5EA86 /* SignalingParticipant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF8422C64006E00E5EA86 /* SignalingParticipant.swift */; };
  57. 1F1DF8442C64006E00E5EA86 /* SignalingParticipant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF8422C64006E00E5EA86 /* SignalingParticipant.swift */; };
  58. 1F1DF8452C64006E00E5EA86 /* SignalingParticipant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF8422C64006E00E5EA86 /* SignalingParticipant.swift */; };
  59. 1F1DF8462C64006E00E5EA86 /* SignalingParticipant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF8422C64006E00E5EA86 /* SignalingParticipant.swift */; };
  60. 1F24B5A228E0648600654457 /* ReferenceGithubView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F24B5A128E0648600654457 /* ReferenceGithubView.swift */; };
  61. 1F24B5A428E0649200654457 /* ReferenceGithubView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F24B5A328E0649200654457 /* ReferenceGithubView.xib */; };
  62. 1F35F8E02AEEB9DE00044BDA /* ShareConfirmationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F35F8DF2AEEB9DE00044BDA /* ShareConfirmationViewController.swift */; };
  63. 1F35F8E12AEEB9DE00044BDA /* ShareConfirmationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F35F8DF2AEEB9DE00044BDA /* ShareConfirmationViewController.swift */; };
  64. 1F35F8E22AEEBAF900044BDA /* InputbarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5A24322ADA77DA009939FE /* InputbarViewController.swift */; };
  65. 1F35F8E32AEEBBE000044BDA /* NCChatTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7381552106136000CDB8DB /* NCChatTitleView.m */; };
  66. 1F35F8E42AEEBBE500044BDA /* NCChatTitleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C738157210613A200CDB8DB /* NCChatTitleView.xib */; };
  67. 1F35F8E52AEEBC0100044BDA /* SLKInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB3039D2264775E0053078A /* SLKInputAccessoryView.m */; };
  68. 1F35F8E62AEEBC0300044BDA /* SLKTextInput+Implementation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB3039E2264775E0053078A /* SLKTextInput+Implementation.m */; };
  69. 1F35F8E72AEEBC0600044BDA /* SLKTextInputbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A12264775E0053078A /* SLKTextInputbar.m */; };
  70. 1F35F8E82AEEBC0800044BDA /* SLKTextView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A32264775E0053078A /* SLKTextView+SLKAdditions.m */; };
  71. 1F35F8E92AEEBC0C00044BDA /* SLKTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A52264775E0053078A /* SLKTextView.m */; };
  72. 1F35F8EA2AEEBC0E00044BDA /* SLKTextViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A72264775E0053078A /* SLKTextViewController.m */; };
  73. 1F35F8EB2AEEBC1100044BDA /* UIResponder+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303AD2264775E0053078A /* UIResponder+SLKAdditions.m */; };
  74. 1F35F8EC2AEEBC1400044BDA /* UIScrollView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303AF2264775E0053078A /* UIScrollView+SLKAdditions.m */; };
  75. 1F35F8ED2AEEBC1600044BDA /* UIView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303B12264775E0053078A /* UIView+SLKAdditions.m */; };
  76. 1F35F8EF2AEEBC1A00044BDA /* SLKDefaultReplyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F66B72829FA936E003FB168 /* SLKDefaultReplyView.m */; };
  77. 1F35F8F02AEEBC1D00044BDA /* SLKDefaultTypingIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F66B72B29FA9414003FB168 /* SLKDefaultTypingIndicatorView.m */; };
  78. 1F35F8F12AEEC25B00044BDA /* TypingIndicatorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F66B71E29FA703B003FB168 /* TypingIndicatorView.swift */; };
  79. 1F35F8F22AEEC25E00044BDA /* TypingIndicatorView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F66B72029FA7089003FB168 /* TypingIndicatorView.xib */; };
  80. 1F35F8F32AEEC29A00044BDA /* AvatarButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDCC3EF29ECB4CE00DEB39B /* AvatarButton.swift */; };
  81. 1F35F8F52AEEDA9800044BDA /* SwiftyAttributes in Frameworks */ = {isa = PBXBuildFile; productRef = 1F35F8F42AEEDA9800044BDA /* SwiftyAttributes */; };
  82. 1F35F8FB2AEEDBC600044BDA /* ChatViewControllerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F35F8FA2AEEDBC600044BDA /* ChatViewControllerExtension.swift */; };
  83. 1F35F8FC2AEEDBC600044BDA /* ChatViewControllerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F35F8FA2AEEDBC600044BDA /* ChatViewControllerExtension.swift */; };
  84. 1F35F9042AEEDF0E00044BDA /* AutoCompletionTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F35F9032AEEDF0E00044BDA /* AutoCompletionTableViewCell.m */; };
  85. 1F35F9052AEEDF0E00044BDA /* AutoCompletionTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F35F9032AEEDF0E00044BDA /* AutoCompletionTableViewCell.m */; };
  86. 1F35F9062AEEE3C400044BDA /* NCMessageTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1554A208F2E5700CE8EF0 /* NCMessageTextView.m */; };
  87. 1F35F9072AEEE3EC00044BDA /* NCUserStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78E9E225120DE500E3D4CA /* NCUserStatus.m */; };
  88. 1F35F90A2AEEE76A00044BDA /* QuotedMessageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C6E7448238C1A0800AE396C /* QuotedMessageView.m */; };
  89. 1F35F90B2AEEE76C00044BDA /* ReplyMessageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C6E74452386D33200AE396C /* ReplyMessageView.m */; };
  90. 1F371A372A7B921A006CBFB3 /* DatePickerTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F371A362A7B921A006CBFB3 /* DatePickerTextField.swift */; };
  91. 1F3C419F29EDAC7D00F58435 /* RoomAvatarInfoTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F3C419E29EDAC7D00F58435 /* RoomAvatarInfoTableViewController.swift */; };
  92. 1F3C41A129EDAC8800F58435 /* RoomAvatarInfoTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F3C41A029EDAC8800F58435 /* RoomAvatarInfoTableViewController.xib */; };
  93. 1F3C41A329EDF05700F58435 /* AvatarEditView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F3C41A229EDF05700F58435 /* AvatarEditView.swift */; };
  94. 1F3C41A529EDF0B800F58435 /* AvatarEditView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F3C41A429EDF0B800F58435 /* AvatarEditView.xib */; };
  95. 1F3D3B22255F109E00230DAE /* BarButtonItemWithActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F3D3B20255F109E00230DAE /* BarButtonItemWithActivity.m */; };
  96. 1F45A1162A01D6EC005FE87D /* SDWebImage in Frameworks */ = {isa = PBXBuildFile; productRef = 1F45A1152A01D6EC005FE87D /* SDWebImage */; };
  97. 1F45A11A2A01D70E005FE87D /* SDWebImage in Frameworks */ = {isa = PBXBuildFile; productRef = 1F45A1192A01D70E005FE87D /* SDWebImage */; };
  98. 1F45A11E2A01D719005FE87D /* SDWebImage in Frameworks */ = {isa = PBXBuildFile; productRef = 1F45A11D2A01D719005FE87D /* SDWebImage */; };
  99. 1F45A1212A01D8BA005FE87D /* SDWebImageSVGKitPlugin in Frameworks */ = {isa = PBXBuildFile; productRef = 1F45A1202A01D8BA005FE87D /* SDWebImageSVGKitPlugin */; };
  100. 1F45A1232A01D8F1005FE87D /* SDWebImageSVGKitPlugin in Frameworks */ = {isa = PBXBuildFile; productRef = 1F45A1222A01D8F1005FE87D /* SDWebImageSVGKitPlugin */; };
  101. 1F45A1252A01D8F7005FE87D /* SDWebImageSVGKitPlugin in Frameworks */ = {isa = PBXBuildFile; productRef = 1F45A1242A01D8F7005FE87D /* SDWebImageSVGKitPlugin */; };
  102. 1F468E7628DCC6C60099597B /* Dynamic in Frameworks */ = {isa = PBXBuildFile; productRef = 1F468E7528DCC6C60099597B /* Dynamic */; };
  103. 1F468E7828DCC7310099597B /* EmojiTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F468E7728DCC7310099597B /* EmojiTextField.swift */; };
  104. 1F46CE2928E05B3200E7D88E /* ReferenceDefaultView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F46CE2828E05B3200E7D88E /* ReferenceDefaultView.swift */; };
  105. 1F46CE2B28E05B3C00E7D88E /* ReferenceDefaultView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F46CE2A28E05B3C00E7D88E /* ReferenceDefaultView.xib */; };
  106. 1F4DD3EB2571C688007DC98E /* EmojiUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F4DD3EA2571C688007DC98E /* EmojiUtils.swift */; };
  107. 1F4DD3EC2571C688007DC98E /* EmojiUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F4DD3EA2571C688007DC98E /* EmojiUtils.swift */; };
  108. 1F4DD3ED2571C688007DC98E /* EmojiUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F4DD3EA2571C688007DC98E /* EmojiUtils.swift */; };
  109. 1F53819129195FA4003DA6B7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2CA1CCAB1F067F35002FE6A2 /* Images.xcassets */; };
  110. 1F5683CF2BA7980C0023E151 /* FilePreviewImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5683CE2BA7980C0023E151 /* FilePreviewImageView.swift */; };
  111. 1F5813F828EB23EF00318FC3 /* NCSplitViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5813F628EB23EF00318FC3 /* NCSplitViewController.swift */; };
  112. 1F5813F928EB23EF00318FC3 /* NCSplitViewPlaceholderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5813F728EB23EF00318FC3 /* NCSplitViewPlaceholderViewController.swift */; };
  113. 1F59446225B8EDF5002AD65F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2C7F47AC20289B9600081CC7 /* Localizable.strings */; };
  114. 1F59446625B8EDF5002AD65F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2C7F47AC20289B9600081CC7 /* Localizable.strings */; };
  115. 1F5A24332ADA77DA009939FE /* InputbarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5A24322ADA77DA009939FE /* InputbarViewController.swift */; };
  116. 1F5CDAE72B3B05110040ECC0 /* UnitColorGeneratorTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5CDAE62B3B05110040ECC0 /* UnitColorGeneratorTest.swift */; };
  117. 1F61C767285E35A6004D74D8 /* DiagnosticsTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F61C766285E35A6004D74D8 /* DiagnosticsTableViewController.swift */; };
  118. 1F61C76B285F65E1004D74D8 /* SimpleTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F61C76A285F65E1004D74D8 /* SimpleTableViewController.swift */; };
  119. 1F628CBA2842BAAF0083A425 /* QRCodeReader in Frameworks */ = {isa = PBXBuildFile; productRef = 1F628CB92842BAAF0083A425 /* QRCodeReader */; };
  120. 1F6629FA2C17700E001C6C0E /* IntegrationRoomsManagerTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6629F92C17700E001C6C0E /* IntegrationRoomsManagerTest.swift */; };
  121. 1F66B71F29FA703B003FB168 /* TypingIndicatorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F66B71E29FA703B003FB168 /* TypingIndicatorView.swift */; };
  122. 1F66B72129FA7089003FB168 /* TypingIndicatorView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F66B72029FA7089003FB168 /* TypingIndicatorView.xib */; };
  123. 1F66B72929FA936E003FB168 /* SLKDefaultReplyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F66B72829FA936E003FB168 /* SLKDefaultReplyView.m */; };
  124. 1F66B72C29FA9414003FB168 /* SLKDefaultTypingIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F66B72B29FA9414003FB168 /* SLKDefaultTypingIndicatorView.m */; };
  125. 1F66B72F29FABD01003FB168 /* SwiftyAttributes in Frameworks */ = {isa = PBXBuildFile; productRef = 1F66B72E29FABD01003FB168 /* SwiftyAttributes */; };
  126. 1F6D8C332B2E3756004376B8 /* IntegrationRoomTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C322B2E3756004376B8 /* IntegrationRoomTest.swift */; };
  127. 1F6D8C3D2B2F23C4004376B8 /* Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C3C2B2F23C4004376B8 /* Helpers.swift */; };
  128. 1F6D8C412B2F26D5004376B8 /* TestConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C402B2F26D5004376B8 /* TestConstants.swift */; };
  129. 1F6D8C432B2F26EE004376B8 /* Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C422B2F26EE004376B8 /* Helpers.swift */; };
  130. 1F6D8C442B2F2791004376B8 /* TestConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C402B2F26D5004376B8 /* TestConstants.swift */; };
  131. 1F6D8C492B2F2FB7004376B8 /* AAAALoginTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C472B2F2F69004376B8 /* AAAALoginTest.swift */; };
  132. 1F6D8C4B2B2F5B61004376B8 /* TestBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C4A2B2F5B61004376B8 /* TestBase.swift */; };
  133. 1F6D8C4D2B2F8FE5004376B8 /* IntegrationChatTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C4C2B2F8FE5004376B8 /* IntegrationChatTest.swift */; };
  134. 1F759C092B63B9A7000534AB /* SDWebImage in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C082B63B9A7000534AB /* SDWebImage */; };
  135. 1F759C0B2B63B9A7000534AB /* SDWebImageSVGKitPlugin in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C0A2B63B9A7000534AB /* SDWebImageSVGKitPlugin */; };
  136. 1F759C0E2B63B9BA000534AB /* WebRTC in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C0D2B63B9BA000534AB /* WebRTC */; };
  137. 1F759C102B63B9D9000534AB /* OpenSSL in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C0F2B63B9D9000534AB /* OpenSSL */; };
  138. 1F759C142B63B9D9000534AB /* QRCodeReader in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C132B63B9D9000534AB /* QRCodeReader */; };
  139. 1F759C162B63B9D9000534AB /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C152B63B9D9000534AB /* NextcloudKit */; };
  140. 1F759C182B63B9D9000534AB /* SwiftyAttributes in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C172B63B9D9000534AB /* SwiftyAttributes */; };
  141. 1F759C1A2B63B9D9000534AB /* CDMarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C192B63B9D9000534AB /* CDMarkdownKit */; };
  142. 1F759C1C2B63B9D9000534AB /* TOCropViewController in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C1B2B63B9D9000534AB /* TOCropViewController */; };
  143. 1F759C1E2B63B9D9000534AB /* SwiftUIIntrospect in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C1D2B63B9D9000534AB /* SwiftUIIntrospect */; };
  144. 1F759C2C2B63CB93000534AB /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C2B2B63CB93000534AB /* Realm */; };
  145. 1F759C2E2B63CB9A000534AB /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C2D2B63CB9A000534AB /* Realm */; };
  146. 1F759C302B63CBA0000534AB /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C2F2B63CBA0000534AB /* Realm */; };
  147. 1F759C322B63CBA5000534AB /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C312B63CBA5000534AB /* Realm */; };
  148. 1F759C342B63CBAA000534AB /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C332B63CBAA000534AB /* Realm */; };
  149. 1F7625E52901B0DB00834869 /* CallsFromOldAccountViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F7625E42901B0DB00834869 /* CallsFromOldAccountViewController.swift */; };
  150. 1F7625E72901B0E800834869 /* CallsFromOldAccountViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F7625E62901B0E800834869 /* CallsFromOldAccountViewController.xib */; };
  151. 1F77A5EB2AB9A3EE007B6037 /* BGTaskHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD9182828C55A73009092AB /* BGTaskHelper.swift */; };
  152. 1F77A5EC2AB9A405007B6037 /* NCChatBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446DC2658158000DF1DBC /* NCChatBlock.m */; };
  153. 1F77A5ED2AB9A408007B6037 /* NCChatMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA15540208E350300CE8EF0 /* NCChatMessage.m */; };
  154. 1F77A5EF2AB9A41E007B6037 /* SDWebImage in Frameworks */ = {isa = PBXBuildFile; productRef = 1F77A5EE2AB9A41E007B6037 /* SDWebImage */; };
  155. 1F77A5F12AB9A423007B6037 /* SDWebImageSVGKitPlugin in Frameworks */ = {isa = PBXBuildFile; productRef = 1F77A5F02AB9A423007B6037 /* SDWebImageSVGKitPlugin */; };
  156. 1F77A5F22AB9A436007B6037 /* EmojiUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F4DD3EA2571C688007DC98E /* EmojiUtils.swift */; };
  157. 1F77A5F32AB9A43B007B6037 /* SwiftMarkdownObjCBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0A1D432A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift */; };
  158. 1F77A5F42AB9A4B2007B6037 /* ABContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDE4257F883400AEDFB6 /* ABContact.m */; };
  159. 1F77A5F52AB9A4B9007B6037 /* NCAPIController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCA91F02D1A4002FE6A2 /* NCAPIController.m */; };
  160. 1F77A5F62AB9A4BF007B6037 /* NCChatReaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC32E9727F5D9BD00BB8C39 /* NCChatReaction.m */; };
  161. 1F77A5F72AB9A4C5007B6037 /* NCContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDCD257E939600AEDFB6 /* NCContact.m */; };
  162. 1F77A5F82AB9A4CD007B6037 /* NCDeckCardParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1FF4728183958009F7288 /* NCDeckCardParameter.m */; };
  163. 1F77A5F92AB9A4D9007B6037 /* NCMessageFileParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEDE3CC257D43AB00853F79 /* NCMessageFileParameter.m */; };
  164. 1F77A5FA2AB9A4DF007B6037 /* NCMessageLocationParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACD92641483800D3D641 /* NCMessageLocationParameter.m */; };
  165. 1F77A5FB2AB9A4E6007B6037 /* NCMessageParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C43BA7521309A1000B3068A /* NCMessageParameter.m */; };
  166. 1F77A5FC2AB9A4ED007B6037 /* NCRoom.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCC21F166CC5002FE6A2 /* NCRoom.m */; };
  167. 1F77A5FD2AB9A4F3007B6037 /* ServerCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D7265814D100DF1DBC /* ServerCapabilities.m */; };
  168. 1F77A5FE2AB9A4F9007B6037 /* TalkAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D22658147900DF1DBC /* TalkAccount.m */; };
  169. 1F77A6002AB9A50D007B6037 /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F77A5FF2AB9A50D007B6037 /* NextcloudKit */; };
  170. 1F77A6012AB9A51D007B6037 /* NCNotificationAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA38C8F29A4B3C6008871B8 /* NCNotificationAction.swift */; };
  171. 1F77A6022AB9A532007B6037 /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82B11FCC7DBA00636459 /* CCCertificate.m */; };
  172. 1F77A6032AB9A56D007B6037 /* NotificationCenterNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EF265D454200DF1DBC /* NotificationCenterNotifications.m */; };
  173. 1F77A6062AB9A581007B6037 /* NCKeyChainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EB265D25BA00DF1DBC /* NCKeyChainController.m */; };
  174. 1F77A6082AB9A58D007B6037 /* NCRoomParticipants.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3780BC2107209C003F9AE8 /* NCRoomParticipants.m */; };
  175. 1F77A60A2AB9A5AE007B6037 /* NCUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCCC1F181741002FE6A2 /* NCUser.m */; };
  176. 1F77A60C2AB9A5BE007B6037 /* CDMarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F77A60B2AB9A5BE007B6037 /* CDMarkdownKit */; };
  177. 1F77A60D2AB9A5CC007B6037 /* NCPoll.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF1288A97D800E75118 /* NCPoll.m */; };
  178. 1F77A6162AB9B161007B6037 /* ScreenCaptureController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F77A6112AB9B161007B6037 /* ScreenCaptureController.m */; };
  179. 1F77A6172AB9B161007B6037 /* ScreenCapturer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F77A6132AB9B161007B6037 /* ScreenCapturer.m */; };
  180. 1F77A6222AB9EB06007B6037 /* SocketConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F77A6212AB9EB06007B6037 /* SocketConnection.m */; };
  181. 1F77A6242ABA0003007B6037 /* SampleHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F77A6232ABA0003007B6037 /* SampleHandler.swift */; };
  182. 1F77A6272ABA0CD9007B6037 /* NCScreensharingController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F77A6262ABA0CD9007B6037 /* NCScreensharingController.m */; };
  183. 1F77A62E2ABAFCC0007B6037 /* DarwinNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF2FD792AB99E4D000C9905 /* DarwinNotificationCenter.swift */; };
  184. 1F77A62F2ABAFCEB007B6037 /* DarwinNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF2FD792AB99E4D000C9905 /* DarwinNotificationCenter.swift */; };
  185. 1F785DDD2707865F00AC4B40 /* VoiceMessageTranscribeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F785DDA2707865F00AC4B40 /* VoiceMessageTranscribeViewController.m */; };
  186. 1F785DDE2707865F00AC4B40 /* VoiceMessageTranscribeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F785DDB2707865F00AC4B40 /* VoiceMessageTranscribeViewController.xib */; };
  187. 1F7AE07829142CA1009F72AD /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F7AE07729142CA1009F72AD /* NextcloudKit */; };
  188. 1F7AE07A29142E62009F72AD /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F7AE07929142E62009F72AD /* NextcloudKit */; };
  189. 1F7AE07C29142E6A009F72AD /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F7AE07B29142E6A009F72AD /* NextcloudKit */; };
  190. 1F7AE07D29158878009F72AD /* IntentsUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F90EFC225FE489B00F3FA55 /* IntentsUI.framework */; };
  191. 1F8995B32970644C00CABA33 /* ColorGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8995B22970644C00CABA33 /* ColorGenerator.swift */; };
  192. 1F8995B52973547700CABA33 /* WebRTCCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8995B42973547700CABA33 /* WebRTCCommon.swift */; };
  193. 1F8AAC322C518759004DA20A /* SignalingSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC312C518759004DA20A /* SignalingSettings.swift */; };
  194. 1F8AAC332C518B8A004DA20A /* SignalingSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC312C518759004DA20A /* SignalingSettings.swift */; };
  195. 1F8AAC342C518B8A004DA20A /* SignalingSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC312C518759004DA20A /* SignalingSettings.swift */; };
  196. 1F8AAC352C518B8B004DA20A /* SignalingSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC312C518759004DA20A /* SignalingSettings.swift */; };
  197. 1F8AAC372C519577004DA20A /* TurnServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC362C519577004DA20A /* TurnServer.swift */; };
  198. 1F8AAC382C519577004DA20A /* TurnServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC362C519577004DA20A /* TurnServer.swift */; };
  199. 1F8AAC392C519577004DA20A /* TurnServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC362C519577004DA20A /* TurnServer.swift */; };
  200. 1F8AAC3A2C519577004DA20A /* TurnServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC362C519577004DA20A /* TurnServer.swift */; };
  201. 1F8AAC3C2C519689004DA20A /* StunServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC3B2C519689004DA20A /* StunServer.swift */; };
  202. 1F8AAC3D2C519689004DA20A /* StunServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC3B2C519689004DA20A /* StunServer.swift */; };
  203. 1F8AAC3E2C519689004DA20A /* StunServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC3B2C519689004DA20A /* StunServer.swift */; };
  204. 1F8AAC3F2C519689004DA20A /* StunServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC3B2C519689004DA20A /* StunServer.swift */; };
  205. 1F8AAC622C596308004DA20A /* UnitSignalingSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC612C596308004DA20A /* UnitSignalingSettings.swift */; };
  206. 1F90DA0429E9A28E00E81E3D /* AvatarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F90DA0329E9A28E00E81E3D /* AvatarManager.swift */; };
  207. 1F90EFBC25FE39F800F3FA55 /* NCIntentController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F90EFBB25FE39F800F3FA55 /* NCIntentController.m */; };
  208. 1F90EFBD25FE39F800F3FA55 /* NCIntentController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F90EFBB25FE39F800F3FA55 /* NCIntentController.m */; };
  209. 1F90EFBE25FE39F800F3FA55 /* NCIntentController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F90EFBB25FE39F800F3FA55 /* NCIntentController.m */; };
  210. 1F90EFC725FE4BE700F3FA55 /* IntentsUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F90EFC225FE489B00F3FA55 /* IntentsUI.framework */; };
  211. 1F98DF9C28E7484700E05174 /* ReferenceDeckView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F98DF9B28E7484700E05174 /* ReferenceDeckView.swift */; };
  212. 1F98DF9E28E7485000E05174 /* ReferenceDeckView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F98DF9D28E7485000E05174 /* ReferenceDeckView.xib */; };
  213. 1FA20C8A284001D80062B4F3 /* DebounceWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA20C89284001D80062B4F3 /* DebounceWebView.swift */; };
  214. 1FA38C9029A4B3C6008871B8 /* NCNotificationAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA38C8F29A4B3C6008871B8 /* NCNotificationAction.swift */; };
  215. 1FA38C9129A4B3C6008871B8 /* NCNotificationAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA38C8F29A4B3C6008871B8 /* NCNotificationAction.swift */; };
  216. 1FA732FC2966CBB7003D2103 /* CallFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA732FB2966CBB7003D2103 /* CallFlowLayout.swift */; };
  217. 1FAB2E7D2AC99326001214EB /* TOCropViewController in Frameworks */ = {isa = PBXBuildFile; productRef = 1FAB2E7C2AC99326001214EB /* TOCropViewController */; };
  218. 1FAB2E7F2AC99367001214EB /* TOCropViewController in Frameworks */ = {isa = PBXBuildFile; productRef = 1FAB2E7E2AC99367001214EB /* TOCropViewController */; };
  219. 1FAB2E832AC9EC3F001214EB /* BaseChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2E822AC9EC3F001214EB /* BaseChatViewController.swift */; };
  220. 1FAB2E852ACB482B001214EB /* ChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2E842ACB482B001214EB /* ChatViewController.swift */; };
  221. 1FAB2E882ACD44D0001214EB /* WebRTC in Frameworks */ = {isa = PBXBuildFile; productRef = 1FAB2E872ACD44D0001214EB /* WebRTC */; };
  222. 1FAB2EEE2AD1BC1B001214EB /* UIControlExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2EED2AD1BC1B001214EB /* UIControlExtensions.swift */; };
  223. 1FAB2EF02AD1EAA3001214EB /* RLMSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2EEF2AD1EAA3001214EB /* RLMSupport.swift */; };
  224. 1FAB2EF12AD1EAA3001214EB /* RLMSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2EEF2AD1EAA3001214EB /* RLMSupport.swift */; };
  225. 1FAB2EF22AD1EAA3001214EB /* RLMSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2EEF2AD1EAA3001214EB /* RLMSupport.swift */; };
  226. 1FADECD62B821E24007AD94B /* FederationInvitationTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FADECD52B821E24007AD94B /* FederationInvitationTableViewController.swift */; };
  227. 1FADECD82B82269E007AD94B /* FederationInvitationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FADECD72B82269E007AD94B /* FederationInvitationCell.swift */; };
  228. 1FADECDA2B8227B1007AD94B /* FederationInvitationCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FADECD92B8227B1007AD94B /* FederationInvitationCell.xib */; };
  229. 1FB52E762842C75E00AC741B /* QRCodeLoginController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB52E752842C75E00AC741B /* QRCodeLoginController.swift */; };
  230. 1FB6678F28CE381300D29F8D /* SubtitleTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB6678E28CE381300D29F8D /* SubtitleTableViewCell.swift */; };
  231. 1FB78E1F2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E1E2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift */; };
  232. 1FB78E202B6ADBB600B0D69D /* NCAPIControllerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E1E2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift */; };
  233. 1FB78E212B6ADBB700B0D69D /* NCAPIControllerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E1E2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift */; };
  234. 1FB78E222B6ADBB700B0D69D /* NCAPIControllerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E1E2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift */; };
  235. 1FB78E262B6AE5A600B0D69D /* FederationInvitation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E252B6AE5A600B0D69D /* FederationInvitation.swift */; };
  236. 1FB78E272B6AE8C900B0D69D /* FederationInvitation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E252B6AE5A600B0D69D /* FederationInvitation.swift */; };
  237. 1FB78E282B6AE8C900B0D69D /* FederationInvitation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E252B6AE5A600B0D69D /* FederationInvitation.swift */; };
  238. 1FB78E292B6AE8CA00B0D69D /* FederationInvitation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E252B6AE5A600B0D69D /* FederationInvitation.swift */; };
  239. 1FB7B9852BE2EE020093CE98 /* UnitChatViewControllerTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B9842BE2EE020093CE98 /* UnitChatViewControllerTest.swift */; };
  240. 1FB7B9872BE441450093CE98 /* UIViewExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B9862BE441450093CE98 /* UIViewExtensions.swift */; };
  241. 1FB7B9892BE442400093CE98 /* UnitBaseChatTableViewCellTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B9882BE442400093CE98 /* UnitBaseChatTableViewCellTest.swift */; };
  242. 1FB7B98E2BF0CBA60093CE98 /* BannedActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B98D2BF0CBA60093CE98 /* BannedActor.swift */; };
  243. 1FB7B9902BF0CDF80093CE98 /* BannedActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B98D2BF0CBA60093CE98 /* BannedActor.swift */; };
  244. 1FB7B9912BF0CDF80093CE98 /* BannedActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B98D2BF0CBA60093CE98 /* BannedActor.swift */; };
  245. 1FB7B9922BF0CDF90093CE98 /* BannedActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B98D2BF0CBA60093CE98 /* BannedActor.swift */; };
  246. 1FB7B9952BF0DF1C0093CE98 /* BannedActorTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B9942BF0DF1C0093CE98 /* BannedActorTableViewController.swift */; };
  247. 1FB7B99A2BF0DF290093CE98 /* BannedActorCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B9992BF0DF290093CE98 /* BannedActorCell.swift */; };
  248. 1FB7B99C2BF0DF360093CE98 /* BannedActorCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FB7B99B2BF0DF360093CE98 /* BannedActorCell.xib */; };
  249. 1FBC3BE52B61ACD5003909E0 /* UnitBaseChatViewControllerTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC3BE42B61ACD5003909E0 /* UnitBaseChatViewControllerTest.swift */; };
  250. 1FBC3BE92B61BD09003909E0 /* TestBaseRealm.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC3BE82B61BD09003909E0 /* TestBaseRealm.swift */; };
  251. 1FC940B92A5F21FC00FFFADE /* SwiftMarkdownObjCBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0A1D432A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift */; };
  252. 1FC940BA2A5F21FD00FFFADE /* SwiftMarkdownObjCBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0A1D432A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift */; };
  253. 1FCE3D532C9B5918009C68A9 /* SwiftyGif in Frameworks */ = {isa = PBXBuildFile; productRef = 1FCE3D522C9B5918009C68A9 /* SwiftyGif */; };
  254. 1FCE3D552C9C189D009C68A9 /* NCChatFileControllerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FCE3D542C9C189D009C68A9 /* NCChatFileControllerWrapper.swift */; };
  255. 1FCE3D572C9C4D18009C68A9 /* ReferenceGiphyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FCE3D562C9C4D18009C68A9 /* ReferenceGiphyView.swift */; };
  256. 1FCE3D592C9C4D21009C68A9 /* ReferenceGiphyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FCE3D582C9C4D21009C68A9 /* ReferenceGiphyView.xib */; };
  257. 1FD6F83C2B825069004048AB /* NCRoomsManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD6F83B2B825069004048AB /* NCRoomsManagerExtensions.swift */; };
  258. 1FD6F83E2B87B712004048AB /* NCUserStatusExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD6F83D2B87B712004048AB /* NCUserStatusExtensions.swift */; };
  259. 1FD8AE6B2A3A216300787C16 /* UIRoomTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8AD8C2A3A162100787C16 /* UIRoomTest.swift */; };
  260. 1FD9182928C55A73009092AB /* BGTaskHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD9182828C55A73009092AB /* BGTaskHelper.swift */; };
  261. 1FDB47F62C9C71CE00D6F423 /* TalkAccount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDB47F52C9C71CE00D6F423 /* TalkAccount.swift */; };
  262. 1FDB47F82C9C7E3F00D6F423 /* NCDatabaseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDB47F72C9C7E3F00D6F423 /* NCDatabaseManager.swift */; };
  263. 1FDCC3D429EBF6E700DEB39B /* AvatarImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDCC3D329EBF6E700DEB39B /* AvatarImageView.swift */; };
  264. 1FDCC3E329EC787400DEB39B /* AvatarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F90DA0329E9A28E00E81E3D /* AvatarManager.swift */; };
  265. 1FDCC3ED29EC7E6700DEB39B /* AvatarImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDCC3D329EBF6E700DEB39B /* AvatarImageView.swift */; };
  266. 1FDCC3EE29EC7E8500DEB39B /* AvatarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F90DA0329E9A28E00E81E3D /* AvatarManager.swift */; };
  267. 1FDCC3F029ECB4CE00DEB39B /* AvatarButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDCC3EF29ECB4CE00DEB39B /* AvatarButton.swift */; };
  268. 1FDDB0D92AF440DD00FBAFB7 /* BoundsChangedFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDDB0D82AF440DD00FBAFB7 /* BoundsChangedFlowLayout.swift */; };
  269. 1FDDB0DB2AF440E100FBAFB7 /* BoundsChangedFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDDB0D82AF440DD00FBAFB7 /* BoundsChangedFlowLayout.swift */; };
  270. 1FDE7C9A28DE14A200CB718E /* ReferenceView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDE7C9928DE14A200CB718E /* ReferenceView.swift */; };
  271. 1FDE7C9C28DE14B000CB718E /* ReferenceView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FDE7C9B28DE14B000CB718E /* ReferenceView.xib */; };
  272. 1FDFC94D2BA50B9100670DF4 /* UIFontExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDFC94C2BA50B9100670DF4 /* UIFontExtension.swift */; };
  273. 1FDFC94E2BA50B9100670DF4 /* UIFontExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDFC94C2BA50B9100670DF4 /* UIFontExtension.swift */; };
  274. 1FDFC94F2BA50B9100670DF4 /* UIFontExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDFC94C2BA50B9100670DF4 /* UIFontExtension.swift */; };
  275. 1FDFC9502BA50B9100670DF4 /* UIFontExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDFC94C2BA50B9100670DF4 /* UIFontExtension.swift */; };
  276. 1FE0C56C2A0531200083576A /* ReferenceTalkView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FE0C56B2A0531200083576A /* ReferenceTalkView.xib */; };
  277. 1FE0C56E2A0531270083576A /* ReferenceTalkView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FE0C56D2A0531270083576A /* ReferenceTalkView.swift */; };
  278. 1FE7DE302BB4598F0040EE12 /* RoomInvitationViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FE7DE2F2BB4598F0040EE12 /* RoomInvitationViewCell.swift */; };
  279. 1FE7DE322BB459B10040EE12 /* RoomInvitationViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FE7DE312BB459B10040EE12 /* RoomInvitationViewCell.xib */; };
  280. 1FE7DE332BBC8FA00040EE12 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1FADECD42B7EACCB007AD94B /* PrivacyInfo.xcprivacy */; };
  281. 1FE7DE342BBC8FA10040EE12 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1FADECD42B7EACCB007AD94B /* PrivacyInfo.xcprivacy */; };
  282. 1FE7DE352BBC8FA10040EE12 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1FADECD42B7EACCB007AD94B /* PrivacyInfo.xcprivacy */; };
  283. 1FE7DE362BBC8FA10040EE12 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1FADECD42B7EACCB007AD94B /* PrivacyInfo.xcprivacy */; };
  284. 1FE94734293CE55600D6584C /* NCCameraController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FE94733293CE55600D6584C /* NCCameraController.swift */; };
  285. 1FEC459C2A02BCAE00A636AA /* ReferenceGithubPermalinkView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FEC459B2A02BCAE00A636AA /* ReferenceGithubPermalinkView.xib */; };
  286. 1FEC459E2A02BCB900A636AA /* ReferenceGithubPermalinkView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FEC459D2A02BCB900A636AA /* ReferenceGithubPermalinkView.swift */; };
  287. 1FEC45A32A02F92700A636AA /* GithubPermalinkViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FEC45A22A02F92700A636AA /* GithubPermalinkViewController.swift */; };
  288. 1FEC45A52A02F92B00A636AA /* GithubPermalinkViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FEC45A42A02F92B00A636AA /* GithubPermalinkViewController.xib */; };
  289. 1FEDE3C6257D439500853F79 /* NCChatFileController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEDE3C4257D439500853F79 /* NCChatFileController.m */; };
  290. 1FEDE3CE257D43AB00853F79 /* NCMessageFileParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEDE3CC257D43AB00853F79 /* NCMessageFileParameter.m */; };
  291. 1FEDE3CF257D43AB00853F79 /* NCMessageFileParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEDE3CC257D43AB00853F79 /* NCMessageFileParameter.m */; };
  292. 1FEDE3D0257D43AB00853F79 /* NCMessageFileParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEDE3CC257D43AB00853F79 /* NCMessageFileParameter.m */; };
  293. 1FF1360F2BFB4F8C006A6101 /* NCRoom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF1360E2BFB4F8C006A6101 /* NCRoom.swift */; };
  294. 1FF136102BFB4F8C006A6101 /* NCRoom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF1360E2BFB4F8C006A6101 /* NCRoom.swift */; };
  295. 1FF136112BFB4F8C006A6101 /* NCRoom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF1360E2BFB4F8C006A6101 /* NCRoom.swift */; };
  296. 1FF136122BFB4F8C006A6101 /* NCRoom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF1360E2BFB4F8C006A6101 /* NCRoom.swift */; };
  297. 1FF136132BFB6FCD006A6101 /* RLMSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2EEF2AD1EAA3001214EB /* RLMSupport.swift */; };
  298. 1FF136152BFB74C3006A6101 /* NCChatMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF136142BFB74C3006A6101 /* NCChatMessage.swift */; };
  299. 1FF136162BFB74CF006A6101 /* NCChatMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF136142BFB74C3006A6101 /* NCChatMessage.swift */; };
  300. 1FF136172BFB74CF006A6101 /* NCChatMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF136142BFB74C3006A6101 /* NCChatMessage.swift */; };
  301. 1FF136182BFB74D0006A6101 /* NCChatMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF136142BFB74C3006A6101 /* NCChatMessage.swift */; };
  302. 1FF1361A2BFBC841006A6101 /* SwiftyAttributes in Frameworks */ = {isa = PBXBuildFile; productRef = 1FF136192BFBC841006A6101 /* SwiftyAttributes */; };
  303. 1FF1361C2BFBC86A006A6101 /* SwiftyAttributes in Frameworks */ = {isa = PBXBuildFile; productRef = 1FF1361B2BFBC86A006A6101 /* SwiftyAttributes */; };
  304. 1FF2FD7F2AB99E4D000C9905 /* Atomic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF2FD7A2AB99E4D000C9905 /* Atomic.swift */; };
  305. 1FF2FD802AB99E4D000C9905 /* SampleUploader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF2FD7B2AB99E4D000C9905 /* SampleUploader.swift */; };
  306. 1FF2FD822AB99E4D000C9905 /* SocketConnection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF2FD7D2AB99E4D000C9905 /* SocketConnection.swift */; };
  307. 1FF2FD832AB99F3B000C9905 /* NCAppBranding.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2A788D2359CC8800EEB797 /* NCAppBranding.m */; };
  308. 1FF2FD852AB99F51000C9905 /* NCUserStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78E9E225120DE500E3D4CA /* NCUserStatus.m */; };
  309. 1FF2FD862AB99F5B000C9905 /* NCDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C40281422832EED0000DDFC /* NCDatabaseManager.m */; };
  310. 1FF4DA7E2C0237D000C1B952 /* DirectoryTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA7D2C0237D000C1B952 /* DirectoryTableViewCell.swift */; };
  311. 1FF4DA802C023FF300C1B952 /* NCChatFileStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA7F2C023FF300C1B952 /* NCChatFileStatus.swift */; };
  312. 1FF4DA822C025DB900C1B952 /* NCAPISessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA812C025DB900C1B952 /* NCAPISessionManager.swift */; };
  313. 1FF4DA832C025DBF00C1B952 /* NCAPISessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA812C025DB900C1B952 /* NCAPISessionManager.swift */; };
  314. 1FF4DA842C025DC000C1B952 /* NCAPISessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA812C025DB900C1B952 /* NCAPISessionManager.swift */; };
  315. 1FF4DA852C025DC000C1B952 /* NCAPISessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA812C025DB900C1B952 /* NCAPISessionManager.swift */; };
  316. 1FF4DA872C02626D00C1B952 /* NCBaseSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA862C02626D00C1B952 /* NCBaseSessionManager.swift */; };
  317. 1FF4DA882C0262BA00C1B952 /* NCBaseSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA862C02626D00C1B952 /* NCBaseSessionManager.swift */; };
  318. 1FF4DA892C0262BB00C1B952 /* NCBaseSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA862C02626D00C1B952 /* NCBaseSessionManager.swift */; };
  319. 1FF4DA8A2C0262BB00C1B952 /* NCBaseSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA862C02626D00C1B952 /* NCBaseSessionManager.swift */; };
  320. 1FF4DA8C2C0263A200C1B952 /* NCPushProxySessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA8B2C0263A200C1B952 /* NCPushProxySessionManager.swift */; };
  321. 1FF4DA8D2C0264B100C1B952 /* NCPushProxySessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA8B2C0263A200C1B952 /* NCPushProxySessionManager.swift */; };
  322. 1FF4DA8E2C0264B200C1B952 /* NCPushProxySessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA8B2C0263A200C1B952 /* NCPushProxySessionManager.swift */; };
  323. 1FF4DA8F2C0264B200C1B952 /* NCPushProxySessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA8B2C0263A200C1B952 /* NCPushProxySessionManager.swift */; };
  324. 1FF4DA912C02677C00C1B952 /* NCImageSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA902C02677C00C1B952 /* NCImageSessionManager.swift */; };
  325. 1FF4DA922C02677F00C1B952 /* NCImageSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA902C02677C00C1B952 /* NCImageSessionManager.swift */; };
  326. 1FF4DA932C02678000C1B952 /* NCImageSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA902C02677C00C1B952 /* NCImageSessionManager.swift */; };
  327. 1FF4DA942C02678000C1B952 /* NCImageSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA902C02677C00C1B952 /* NCImageSessionManager.swift */; };
  328. 1FF4DA962C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA952C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift */; };
  329. 1FF4DA972C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA952C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift */; };
  330. 1FF4DA982C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA952C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift */; };
  331. 1FF4DA992C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA952C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift */; };
  332. 1FF4DA9B2C032AAC00C1B952 /* RoomTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA9A2C032AAC00C1B952 /* RoomTableViewCell.swift */; };
  333. 1FF4DAA02C03351E00C1B952 /* RoomNameTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA9F2C03351E00C1B952 /* RoomNameTableViewCell.swift */; };
  334. 1FF4DAA22C0338D000C1B952 /* RoomDescriptionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA12C0338D000C1B952 /* RoomDescriptionTableViewCell.swift */; };
  335. 1FF4DAA62C08D81D00C1B952 /* UnitNCChatMessageTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA52C08D81D00C1B952 /* UnitNCChatMessageTest.swift */; };
  336. 1FF4DAA82C08DE3A00C1B952 /* UnitNCRoomsManagerTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA72C08DE3A00C1B952 /* UnitNCRoomsManagerTest.swift */; };
  337. 1FF4DAAA2C0A114900C1B952 /* OcsResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA92C0A114900C1B952 /* OcsResponse.swift */; };
  338. 1FF4DAAB2C0A114900C1B952 /* OcsResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA92C0A114900C1B952 /* OcsResponse.swift */; };
  339. 1FF4DAAC2C0A114900C1B952 /* OcsResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA92C0A114900C1B952 /* OcsResponse.swift */; };
  340. 1FF4DAAD2C0A114900C1B952 /* OcsResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA92C0A114900C1B952 /* OcsResponse.swift */; };
  341. 1FFF41622C70937B00162F4D /* ReferenceZammadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FFF41612C70937B00162F4D /* ReferenceZammadView.swift */; };
  342. 1FFF41642C70938700162F4D /* ReferenceZammadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FFF41632C70938700162F4D /* ReferenceZammadView.xib */; };
  343. 2C0424902CA32D45004772F6 /* BaseChatTableViewCell+Audio.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C04248F2CA32D45004772F6 /* BaseChatTableViewCell+Audio.swift */; };
  344. 2C0424982CA335C4004772F6 /* AudioPlayerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C0424962CA335C4004772F6 /* AudioPlayerView.xib */; };
  345. 2C04249B2CA33681004772F6 /* AudioPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0424992CA33681004772F6 /* AudioPlayerView.swift */; };
  346. 2C0574821EDD9E8E00D9E7F2 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C0574811EDD9E8E00D9E7F2 /* main.m */; };
  347. 2C0574851EDD9E8E00D9E7F2 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C0574841EDD9E8E00D9E7F2 /* AppDelegate.m */; };
  348. 2C05748E1EDD9E8E00D9E7F2 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2C05748C1EDD9E8E00D9E7F2 /* Main.storyboard */; };
  349. 2C0574A41EDDA2E300D9E7F2 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C0574A21EDDA2E300D9E7F2 /* LoginViewController.m */; };
  350. 2C0574A51EDDA2E300D9E7F2 /* LoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C0574A31EDDA2E300D9E7F2 /* LoginViewController.xib */; };
  351. 2C06330F2046CC8B0043481A /* NCUserInterfaceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C06330E2046CC8B0043481A /* NCUserInterfaceController.m */; };
  352. 2C06BF5D20A89F510031EB46 /* NCRoomsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C06BF5C20A89F510031EB46 /* NCRoomsManager.m */; };
  353. 2C06BF6420AC64370031EB46 /* DateHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C06BF6320AC64370031EB46 /* DateHeaderView.xib */; };
  354. 2C06BF6720AC647A0031EB46 /* DateHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C06BF6620AC647A0031EB46 /* DateHeaderView.m */; };
  355. 2C06BF6C20AEB0030031EB46 /* RoundedNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C06BF6A20AEB0030031EB46 /* RoundedNumberView.m */; };
  356. 2C16A82C28E7284D00EDE523 /* NCButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C16A82B28E7284D00EDE523 /* NCButton.swift */; };
  357. 2C1ABD8625769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8025769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.m */; };
  358. 2C1ABD8725769E7D00AEDFB6 /* ShareItemController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8225769E7D00AEDFB6 /* ShareItemController.m */; };
  359. 2C1ABD8825769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8425769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.xib */; };
  360. 2C1ABD8925769E7D00AEDFB6 /* ShareItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8525769E7D00AEDFB6 /* ShareItem.m */; };
  361. 2C1ABD9925769F7500AEDFB6 /* ShareItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8525769E7D00AEDFB6 /* ShareItem.m */; };
  362. 2C1ABDC6257A7CF000AEDFB6 /* NCContactsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDC5257A7CF000AEDFB6 /* NCContactsManager.m */; };
  363. 2C1ABDCE257E939600AEDFB6 /* NCContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDCD257E939600AEDFB6 /* NCContact.m */; };
  364. 2C1ABDCF257E939600AEDFB6 /* NCContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDCD257E939600AEDFB6 /* NCContact.m */; };
  365. 2C1ABDD0257E939600AEDFB6 /* NCContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDCD257E939600AEDFB6 /* NCContact.m */; };
  366. 2C1ABDE5257F883400AEDFB6 /* ABContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDE4257F883400AEDFB6 /* ABContact.m */; };
  367. 2C1D13A3253760EE00EC0533 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C1D13A1253760EE00EC0533 /* LaunchScreen.xib */; };
  368. 2C1EF36B25505DCE007C9768 /* NCNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1EF36A25505DCE007C9768 /* NCNavigationController.m */; };
  369. 2C1EF36D25505DCE007C9768 /* NCNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1EF36A25505DCE007C9768 /* NCNavigationController.m */; };
  370. 2C21446E2BB5B54D005A6537 /* BaseChatTableViewCell+Location.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C21446D2BB5B54D005A6537 /* BaseChatTableViewCell+Location.swift */; };
  371. 2C2145682BF6B8E900470C0C /* NewRoomTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C2145672BF6B8E900470C0C /* NewRoomTableViewController.swift */; };
  372. 2C2A788E2359CC8800EEB797 /* NCAppBranding.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2A788D2359CC8800EEB797 /* NCAppBranding.m */; };
  373. 2C2D7A172B8C9C0000642373 /* RoomCreationTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C2D7A162B8C9C0000642373 /* RoomCreationTableViewController.swift */; };
  374. 2C2E64251F3462AF00D39CE8 /* NCSignalingMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2E64241F3462AF00D39CE8 /* NCSignalingMessage.m */; };
  375. 2C3195BC24C599130066F221 /* PlaceholderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CC7158820B837140045C789 /* PlaceholderView.xib */; };
  376. 2C3195BE24C5A7410066F221 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2CA1CCAB1F067F35002FE6A2 /* Images.xcassets */; };
  377. 2C3195C224C5E2100066F221 /* ShareTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3195C024C5E2100066F221 /* ShareTableViewCell.m */; };
  378. 2C3195C324C5E2100066F221 /* ShareTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C3195C124C5E2100066F221 /* ShareTableViewCell.xib */; };
  379. 2C330372255E6EBC00BDB4E4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2C330374255E6EBC00BDB4E4 /* InfoPlist.strings */; };
  380. 2C36A04A261487BC0026F04A /* DetailedOptionsSelectorTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C36A049261487BC0026F04A /* DetailedOptionsSelectorTableViewController.m */; };
  381. 2C3780BD2107209C003F9AE8 /* NCRoomParticipants.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3780BC2107209C003F9AE8 /* NCRoomParticipants.m */; };
  382. 2C3780C3210F49DC003F9AE8 /* HeaderWithButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3780C2210F49DC003F9AE8 /* HeaderWithButton.m */; };
  383. 2C3780C5210F4A26003F9AE8 /* HeaderWithButton.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C3780C4210F4A26003F9AE8 /* HeaderWithButton.xib */; };
  384. 2C40281522832EED0000DDFC /* NCDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C40281422832EED0000DDFC /* NCDatabaseManager.m */; };
  385. 2C4230F72B207AB00013E1FA /* ContextChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C4230F62B207AB00013E1FA /* ContextChatViewController.swift */; };
  386. 2C42ADB420B58E6300296DEA /* NCChatController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C42ADB320B58E6300296DEA /* NCChatController.m */; };
  387. 2C43BA7621309A1000B3068A /* NCMessageParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C43BA7521309A1000B3068A /* NCMessageParameter.m */; };
  388. 2C440D1120EA4A770005F9BB /* RoomInfoTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C440D0F20EA4A770005F9BB /* RoomInfoTableViewController.m */; };
  389. 2C440D1220EA4A770005F9BB /* RoomInfoTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C440D1020EA4A770005F9BB /* RoomInfoTableViewController.xib */; };
  390. 2C4446D32658147900DF1DBC /* TalkAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D22658147900DF1DBC /* TalkAccount.m */; };
  391. 2C4446D42658147900DF1DBC /* TalkAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D22658147900DF1DBC /* TalkAccount.m */; };
  392. 2C4446D52658147900DF1DBC /* TalkAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D22658147900DF1DBC /* TalkAccount.m */; };
  393. 2C4446D8265814D100DF1DBC /* ServerCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D7265814D100DF1DBC /* ServerCapabilities.m */; };
  394. 2C4446D9265814D100DF1DBC /* ServerCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D7265814D100DF1DBC /* ServerCapabilities.m */; };
  395. 2C4446DA265814D100DF1DBC /* ServerCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D7265814D100DF1DBC /* ServerCapabilities.m */; };
  396. 2C4446DD2658158000DF1DBC /* NCChatBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446DC2658158000DF1DBC /* NCChatBlock.m */; };
  397. 2C4446DE2658158000DF1DBC /* NCChatBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446DC2658158000DF1DBC /* NCChatBlock.m */; };
  398. 2C4446DF2658158000DF1DBC /* NCChatBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446DC2658158000DF1DBC /* NCChatBlock.m */; };
  399. 2C4446EC265D25BA00DF1DBC /* NCKeyChainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EB265D25BA00DF1DBC /* NCKeyChainController.m */; };
  400. 2C4446ED265D25BA00DF1DBC /* NCKeyChainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EB265D25BA00DF1DBC /* NCKeyChainController.m */; };
  401. 2C4446F0265D454200DF1DBC /* NotificationCenterNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EF265D454200DF1DBC /* NotificationCenterNotifications.m */; };
  402. 2C4446F3265D51A600DF1DBC /* NCPushNotificationsUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446F2265D51A600DF1DBC /* NCPushNotificationsUtils.m */; };
  403. 2C4446F4265D51A600DF1DBC /* NCPushNotificationsUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446F2265D51A600DF1DBC /* NCPushNotificationsUtils.m */; };
  404. 2C4446F5265D583200DF1DBC /* NCKeyChainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EB265D25BA00DF1DBC /* NCKeyChainController.m */; };
  405. 2C4446F8265D5A0700DF1DBC /* NotificationCenterNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EF265D454200DF1DBC /* NotificationCenterNotifications.m */; };
  406. 2C4446F9265D5A0700DF1DBC /* NotificationCenterNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EF265D454200DF1DBC /* NotificationCenterNotifications.m */; };
  407. 2C4446FB265D5C5700DF1DBC /* NCRoomParticipants.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3780BC2107209C003F9AE8 /* NCRoomParticipants.m */; };
  408. 2C4446FC265D5C5800DF1DBC /* NCRoomParticipants.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3780BC2107209C003F9AE8 /* NCRoomParticipants.m */; };
  409. 2C4446FD265D5DFA00DF1DBC /* ABContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDE4257F883400AEDFB6 /* ABContact.m */; };
  410. 2C4446FE265D5DFA00DF1DBC /* ABContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDE4257F883400AEDFB6 /* ABContact.m */; };
  411. 2C444703265D641300DF1DBC /* NCUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C444702265D641300DF1DBC /* NCUserDefaults.m */; };
  412. 2C444704265D641300DF1DBC /* NCUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C444702265D641300DF1DBC /* NCUserDefaults.m */; };
  413. 2C444705265D641300DF1DBC /* NCUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C444702265D641300DF1DBC /* NCUserDefaults.m */; };
  414. 2C444706265E59B100DF1DBC /* ShareConfirmationCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8025769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.m */; };
  415. 2C444707265E59B500DF1DBC /* ShareConfirmationCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8425769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.xib */; };
  416. 2C444708265E59BC00DF1DBC /* ShareItemController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8225769E7D00AEDFB6 /* ShareItemController.m */; };
  417. 2C44B4D127FF05A000AD1C86 /* ReactionsSummaryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C44B4D027FF05A000AD1C86 /* ReactionsSummaryView.swift */; };
  418. 2C4747E22CB58FD2002828F2 /* PollMessageView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C4747E12CB58FD2002828F2 /* PollMessageView.xib */; };
  419. 2C4747E62CB6711F002828F2 /* BaseChatTableViewCell+Poll.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C4747E52CB6710F002828F2 /* BaseChatTableViewCell+Poll.swift */; };
  420. 2C4747E92CB67177002828F2 /* PollMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C4747E82CB67177002828F2 /* PollMessageView.swift */; };
  421. 2C477C1628B79D980044DEB4 /* Localizable.stringsdict in Resources */ = {isa = PBXBuildFile; fileRef = 2C477C1828B79D980044DEB4 /* Localizable.stringsdict */; };
  422. 2C4987BD21E640E20060AC27 /* CallKitManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4987BC21E640E20060AC27 /* CallKitManager.m */; };
  423. 2C4CDCCD269618240023F403 /* RoomDescriptionTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C4CDCCB269618230023F403 /* RoomDescriptionTableViewCell.xib */; };
  424. 2C4CDCD026A84AEA0023F403 /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C62AFB824C1A4E6007E460A /* ShareViewController.m */; };
  425. 2C4CDCD126A84E500023F403 /* ShareTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3195C024C5E2100066F221 /* ShareTableViewCell.m */; };
  426. 2C4CDCD226A84E550023F403 /* ShareTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C3195C124C5E2100066F221 /* ShareTableViewCell.xib */; };
  427. 2C4D7D631F2F7C2C00FF4A0D /* ARDCaptureController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D7D621F2F7C2C00FF4A0D /* ARDCaptureController.m */; };
  428. 2C4D7D691F2F7DBC00FF4A0D /* ARDSettingsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D7D651F2F7DBC00FF4A0D /* ARDSettingsModel.m */; };
  429. 2C4D7D6A1F2F7DBC00FF4A0D /* ARDSettingsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D7D681F2F7DBC00FF4A0D /* ARDSettingsStore.m */; };
  430. 2C4D7D721F309DA500FF4A0D /* RTCIceCandidate+JSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D7D6E1F309DA500FF4A0D /* RTCIceCandidate+JSON.m */; };
  431. 2C4D7D731F309DA500FF4A0D /* RTCSessionDescription+JSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D7D701F309DA500FF4A0D /* RTCSessionDescription+JSON.m */; };
  432. 2C4D7D761F30F7B600FF4A0D /* ARDUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D7D751F30F7B600FF4A0D /* ARDUtilities.m */; };
  433. 2C4DE9F221F732B40096940D /* NCAudioController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4DE9F121F732B40096940D /* NCAudioController.m */; };
  434. 2C57CD8428C2255000B22E03 /* PollCreationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C57CD8328C2255000B22E03 /* PollCreationViewController.swift */; };
  435. 2C5BFBEA28772A9A00E75118 /* NCUnifiedSearchController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBE928772A9A00E75118 /* NCUnifiedSearchController.swift */; };
  436. 2C5BFBEF288A947900E75118 /* PollVotingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBEE288A947800E75118 /* PollVotingView.swift */; };
  437. 2C5BFBF2288A97D800E75118 /* NCPoll.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF1288A97D800E75118 /* NCPoll.m */; };
  438. 2C5BFBF3288AA37F00E75118 /* NCPoll.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF1288A97D800E75118 /* NCPoll.m */; };
  439. 2C5BFBF4288AA37F00E75118 /* NCPoll.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF1288A97D800E75118 /* NCPoll.m */; };
  440. 2C5BFBF628902E0300E75118 /* PollFooterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF528902E0300E75118 /* PollFooterView.swift */; };
  441. 2C5BFBF828902E3700E75118 /* PollFooterView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF728902E3700E75118 /* PollFooterView.xib */; };
  442. 2C5BFBFB2891598A00E75118 /* PollResultTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF92891598900E75118 /* PollResultTableViewCell.swift */; };
  443. 2C5BFBFC2891598A00E75118 /* PollResultTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C5BFBFA2891598900E75118 /* PollResultTableViewCell.xib */; };
  444. 2C5BFBFE2891C3DF00E75118 /* PollResultsDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBFD2891C3DF00E75118 /* PollResultsDetailsViewController.swift */; };
  445. 2C604BD9211988A700D34DCD /* SystemMessageTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C604BD8211988A700D34DCD /* SystemMessageTableViewCell.m */; };
  446. 2C62AFB624C1A449007E460A /* Share.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2C62AFB524C1A449007E460A /* Share.storyboard */; };
  447. 2C62AFB924C1A4E6007E460A /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C62AFB824C1A4E6007E460A /* ShareViewController.m */; };
  448. 2C62AFBB24C1B7B1007E460A /* NCDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C40281422832EED0000DDFC /* NCDatabaseManager.m */; };
  449. 2C62AFFA24C1BDA5007E460A /* NCChatMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA15540208E350300CE8EF0 /* NCChatMessage.m */; };
  450. 2C62AFFD24C1BDA5007E460A /* NCMessageParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C43BA7521309A1000B3068A /* NCMessageParameter.m */; };
  451. 2C62AFFF24C1BDAA007E460A /* NCUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCCC1F181741002FE6A2 /* NCUser.m */; };
  452. 2C62B00724C1BDBD007E460A /* NCAPIController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCA91F02D1A4002FE6A2 /* NCAPIController.m */; };
  453. 2C62B00C24C1BDC1007E460A /* NCNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9B0B9B217F756B00A4752C /* NCNotification.m */; };
  454. 2C62B00D24C1BDC1007E460A /* NCPushNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82AD1FC888FC00636459 /* NCPushNotification.m */; };
  455. 2C62B01024C1BDC5007E460A /* NCRoom.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCC21F166CC5002FE6A2 /* NCRoom.m */; };
  456. 2C62B01C24C1BDC9007E460A /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82B11FCC7DBA00636459 /* CCCertificate.m */; };
  457. 2C62B02424C1BDCF007E460A /* NCAppBranding.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2A788D2359CC8800EEB797 /* NCAppBranding.m */; };
  458. 2C62B02E24C1BDD7007E460A /* PlaceholderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC7158B20B8394A0045C789 /* PlaceholderView.m */; };
  459. 2C69323D2923ECAA00017AD2 /* WSMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C69323C2923ECAA00017AD2 /* WSMessage.m */; };
  460. 2C6955122B0CE1A10070F6E1 /* NCUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDDB0E42AFD046600FBAFB7 /* NCUtils.swift */; };
  461. 2C6955132B0CE1A20070F6E1 /* NCUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDDB0E42AFD046600FBAFB7 /* NCUtils.swift */; };
  462. 2C6955142B0CE1A20070F6E1 /* NCUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDDB0E42AFD046600FBAFB7 /* NCUtils.swift */; };
  463. 2C6955152B0CE1A30070F6E1 /* NCUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDDB0E42AFD046600FBAFB7 /* NCUtils.swift */; };
  464. 2C6E74462386D33200AE396C /* ReplyMessageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C6E74452386D33200AE396C /* ReplyMessageView.m */; };
  465. 2C6E7449238C1A0800AE396C /* QuotedMessageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C6E7448238C1A0800AE396C /* QuotedMessageView.m */; };
  466. 2C7381562106136000CDB8DB /* NCChatTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7381552106136000CDB8DB /* NCChatTitleView.m */; };
  467. 2C738158210613A200CDB8DB /* NCChatTitleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C738157210613A200CDB8DB /* NCChatTitleView.xib */; };
  468. 2C78E9E325120DE600E3D4CA /* NCUserStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78E9E225120DE500E3D4CA /* NCUserStatus.m */; };
  469. 2C78EF951F7E70EB008AFA74 /* NCPeerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78EF941F7E70EB008AFA74 /* NCPeerConnection.m */; };
  470. 2C78EF991F80F81E008AFA74 /* NCSignalingController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78EF981F80F81E008AFA74 /* NCSignalingController.m */; };
  471. 2C78EF9C1F826B22008AFA74 /* NCCallController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78EF9B1F826B22008AFA74 /* NCCallController.m */; };
  472. 2C78EFA01F828C41008AFA74 /* CallViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78EF9E1F828C41008AFA74 /* CallViewController.m */; };
  473. 2C78EFA11F828C41008AFA74 /* CallViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C78EF9F1F828C41008AFA74 /* CallViewController.xib */; };
  474. 2C78EFA51F86FF4A008AFA74 /* CallParticipantViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78EFA31F86FF4A008AFA74 /* CallParticipantViewCell.m */; };
  475. 2C78EFA61F86FF4A008AFA74 /* CallParticipantViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C78EFA41F86FF4A008AFA74 /* CallParticipantViewCell.xib */; };
  476. 2C7A1237200E0A5700864818 /* UserSettingsTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C7A1235200E0A5700864818 /* UserSettingsTableViewCell.xib */; };
  477. 2C7A12422017872600864818 /* AddParticipantsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7A12402017872600864818 /* AddParticipantsTableViewController.m */; };
  478. 2C7A12432017872600864818 /* AddParticipantsTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C7A12412017872600864818 /* AddParticipantsTableViewController.xib */; };
  479. 2C7F47AA20289B9600081CC7 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2C7F47AC20289B9600081CC7 /* Localizable.strings */; };
  480. 2C84BCCC29EEB9C6001BA6DA /* CallReactionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C84BCCB29EEB9C6001BA6DA /* CallReactionView.swift */; };
  481. 2C84BCCE29EEDCE8001BA6DA /* CallReactionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C84BCCD29EEDCE8001BA6DA /* CallReactionView.xib */; };
  482. 2C8A2BC9221F094F00DE6D2C /* DirectoryTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C8A2BC8221F094F00DE6D2C /* DirectoryTableViewController.m */; };
  483. 2C8A2BCF221FEEFE00DE6D2C /* DirectoryTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C8A2BCD221FEEFE00DE6D2C /* DirectoryTableViewCell.xib */; };
  484. 2C8CDD0621C2EDE8004E2997 /* AvatarBackgroundImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C8CDD0521C2EDE8004E2997 /* AvatarBackgroundImageView.m */; };
  485. 2C8E2A1B232174C20022BFC9 /* MessageSeparatorTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C8E2A1A232174C20022BFC9 /* MessageSeparatorTableViewCell.m */; };
  486. 2C90E5641EDDE0FB0093D85A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C90E5631EDDE0FB0093D85A /* Foundation.framework */; };
  487. 2C90E5671EDDE1340093D85A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C90E5661EDDE1340093D85A /* CoreGraphics.framework */; };
  488. 2C90E5691EDDE13A0093D85A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C90E5681EDDE13A0093D85A /* UIKit.framework */; };
  489. 2C90E5CF1EDF23A00093D85A /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C90E5CE1EDF23A00093D85A /* WebKit.framework */; };
  490. 2C90E5D31EE80C870093D85A /* AuthenticationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C90E5D11EE80C870093D85A /* AuthenticationViewController.m */; };
  491. 2C9200C32474262C0050084F /* UIBarButtonItem+Badge.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9200C22474262C0050084F /* UIBarButtonItem+Badge.m */; };
  492. 2C98F77921622445001A6A73 /* RoomSearchTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C98F77821622445001A6A73 /* RoomSearchTableViewController.m */; };
  493. 2C98F77D216231D3001A6A73 /* RoomTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C98F77C216231D3001A6A73 /* RoomTableViewCell.xib */; };
  494. 2C9B0B98217F6DBA00A4752C /* NCNotificationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9B0B97217F6DBA00A4752C /* NCNotificationController.m */; };
  495. 2C9B0B9C217F756B00A4752C /* NCNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9B0B9B217F756B00A4752C /* NCNotification.m */; };
  496. 2C9E6CCE1F6F34F000399B7A /* ARDSDPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9E6CCD1F6F34F000399B7A /* ARDSDPUtils.m */; };
  497. 2CA15541208E350300CE8EF0 /* NCChatMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA15540208E350300CE8EF0 /* NCChatMessage.m */; };
  498. 2CA1554B208F2E5700CE8EF0 /* NCMessageTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1554A208F2E5700CE8EF0 /* NCMessageTextView.m */; };
  499. 2CA1CC911F014354002FE6A2 /* NCConnectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CC901F014354002FE6A2 /* NCConnectionController.m */; };
  500. 2CA1CC951F014EF9002FE6A2 /* NCSettingsController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CC941F014EF9002FE6A2 /* NCSettingsController.m */; };
  501. 2CA1CC971F016117002FE6A2 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CA1CC961F016117002FE6A2 /* Security.framework */; };
  502. 2CA1CCA41F025F64002FE6A2 /* RoomsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCA31F025F64002FE6A2 /* RoomsTableViewController.m */; };
  503. 2CA1CCAA1F02D1A4002FE6A2 /* NCAPIController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCA91F02D1A4002FE6A2 /* NCAPIController.m */; };
  504. 2CA1CCAC1F067F35002FE6A2 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2CA1CCAB1F067F35002FE6A2 /* Images.xcassets */; };
  505. 2CA1CCC31F166CC5002FE6A2 /* NCRoom.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCC21F166CC5002FE6A2 /* NCRoom.m */; };
  506. 2CA1CCCA1F17C503002FE6A2 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CA1CCC91F17C503002FE6A2 /* AudioToolbox.framework */; };
  507. 2CA1CCCD1F181741002FE6A2 /* NCUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCCC1F181741002FE6A2 /* NCUser.m */; };
  508. 2CA1CCD01F1E1779002FE6A2 /* SearchTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCCF1F1E1779002FE6A2 /* SearchTableViewController.m */; };
  509. 2CA1CCD61F1E664C002FE6A2 /* ContactsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCD41F1E664C002FE6A2 /* ContactsTableViewCell.m */; };
  510. 2CA1CCD71F1E664C002FE6A2 /* ContactsTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CA1CCD51F1E664C002FE6A2 /* ContactsTableViewCell.xib */; };
  511. 2CA52ACB2670D02800619610 /* VoiceMessageRecordingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA52ACA2670D02800619610 /* VoiceMessageRecordingView.m */; };
  512. 2CA52ACD2670D07900619610 /* VoiceMessageRecordingView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CA52ACC2670D07900619610 /* VoiceMessageRecordingView.xib */; };
  513. 2CB052A12BF2297500191349 /* connecting.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 2CB052A02BF2297500191349 /* connecting.mp3 */; };
  514. 2CB304192264775E0053078A /* SLKInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB3039D2264775E0053078A /* SLKInputAccessoryView.m */; };
  515. 2CB3041A2264775E0053078A /* SLKTextInput+Implementation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB3039E2264775E0053078A /* SLKTextInput+Implementation.m */; };
  516. 2CB3041B2264775E0053078A /* SLKTextInputbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A12264775E0053078A /* SLKTextInputbar.m */; };
  517. 2CB3041C2264775E0053078A /* SLKTextView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A32264775E0053078A /* SLKTextView+SLKAdditions.m */; };
  518. 2CB3041D2264775E0053078A /* SLKTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A52264775E0053078A /* SLKTextView.m */; };
  519. 2CB3041E2264775E0053078A /* SLKTextViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A72264775E0053078A /* SLKTextViewController.m */; };
  520. 2CB304202264775E0053078A /* UIResponder+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303AD2264775E0053078A /* UIResponder+SLKAdditions.m */; };
  521. 2CB304212264775E0053078A /* UIScrollView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303AF2264775E0053078A /* UIScrollView+SLKAdditions.m */; };
  522. 2CB304222264775E0053078A /* UIView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303B12264775E0053078A /* UIView+SLKAdditions.m */; };
  523. 2CB6ACBC26385A3800D3D641 /* ShareLocationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACBA26385A3800D3D641 /* ShareLocationViewController.m */; };
  524. 2CB6ACBF26385A3800D3D641 /* ShareLocationViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CB6ACBB26385A3800D3D641 /* ShareLocationViewController.xib */; };
  525. 2CB6ACCA26401D5200D3D641 /* GeoLocationRichObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACC926401D5100D3D641 /* GeoLocationRichObject.m */; };
  526. 2CB6ACDA2641483800D3D641 /* NCMessageLocationParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACD92641483800D3D641 /* NCMessageLocationParameter.m */; };
  527. 2CB6ACDB2641483800D3D641 /* NCMessageLocationParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACD92641483800D3D641 /* NCMessageLocationParameter.m */; };
  528. 2CB6ACDC2641483800D3D641 /* NCMessageLocationParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACD92641483800D3D641 /* NCMessageLocationParameter.m */; };
  529. 2CB6ACE92641954700D3D641 /* MapViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACE72641954700D3D641 /* MapViewController.m */; };
  530. 2CB6ACEC2641954700D3D641 /* MapViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CB6ACE82641954700D3D641 /* MapViewController.xib */; };
  531. 2CB6ACED2641954700D3D641 /* MapViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CB6ACE82641954700D3D641 /* MapViewController.xib */; };
  532. 2CB6ACEE2641954700D3D641 /* MapViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CB6ACE82641954700D3D641 /* MapViewController.xib */; };
  533. 2CB997C52A052449003C41AC /* EmojiAvatarPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CB997C32A052449003C41AC /* EmojiAvatarPickerViewController.swift */; };
  534. 2CB997C62A052449003C41AC /* EmojiAvatarPickerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CB997C42A052449003C41AC /* EmojiAvatarPickerViewController.xib */; };
  535. 2CBD0D5A2C8770A40013C089 /* UIImageExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CBD0D592C8770A40013C089 /* UIImageExtension.swift */; };
  536. 2CBF82AE1FC888FC00636459 /* NCPushNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82AD1FC888FC00636459 /* NCPushNotification.m */; };
  537. 2CBF82B21FCC7DBA00636459 /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82B11FCC7DBA00636459 /* CCCertificate.m */; };
  538. 2CC0015324A1F0E900A20167 /* NotificationService.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC0015224A1F0E900A20167 /* NotificationService.m */; };
  539. 2CC0016124A25B5500A20167 /* NCAPIController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCA91F02D1A4002FE6A2 /* NCAPIController.m */; };
  540. 2CC0016324A25B7400A20167 /* NCDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C40281422832EED0000DDFC /* NCDatabaseManager.m */; };
  541. 2CC0016724A25BE100A20167 /* NCChatMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA15540208E350300CE8EF0 /* NCChatMessage.m */; };
  542. 2CC0016924A25C3400A20167 /* NCMessageParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C43BA7521309A1000B3068A /* NCMessageParameter.m */; };
  543. 2CC001B724A37A9A00A20167 /* NCUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCCC1F181741002FE6A2 /* NCUser.m */; };
  544. 2CC001C124A37AC500A20167 /* NCNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9B0B9B217F756B00A4752C /* NCNotification.m */; };
  545. 2CC001C224A37AC500A20167 /* NCPushNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82AD1FC888FC00636459 /* NCPushNotification.m */; };
  546. 2CC001CE24A37ACA00A20167 /* NCRoom.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCC21F166CC5002FE6A2 /* NCRoom.m */; };
  547. 2CC001DB24A37AD000A20167 /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82B11FCC7DBA00636459 /* CCCertificate.m */; };
  548. 2CC001DC24A37AD400A20167 /* NCAppBranding.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2A788D2359CC8800EEB797 /* NCAppBranding.m */; };
  549. 2CC007B420D7AE990096D91F /* ResultMultiSelectionTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC007B320D7AE990096D91F /* ResultMultiSelectionTableViewController.m */; };
  550. 2CC007C620D90AE50096D91F /* RoomNameTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CC007C420D90AE50096D91F /* RoomNameTableViewCell.xib */; };
  551. 2CC007CE20E50B0A0096D91F /* MessageBodyTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC007CD20E50B0A0096D91F /* MessageBodyTextView.m */; };
  552. 2CC1C38629C0945700C8436B /* DRCellSlideGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1C38029C0945600C8436B /* DRCellSlideGestureRecognizer.m */; };
  553. 2CC1C38729C0945700C8436B /* DRCellSlideAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1C38429C0945700C8436B /* DRCellSlideAction.m */; };
  554. 2CC1C38829C0945700C8436B /* DRCellSlideActionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1C38529C0945700C8436B /* DRCellSlideActionView.m */; };
  555. 2CC1FF4428147F11009F7288 /* RoomSharedItemsTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1FF4228147F10009F7288 /* RoomSharedItemsTableViewController.swift */; };
  556. 2CC1FF4528147F11009F7288 /* RoomSharedItemsTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CC1FF4328147F10009F7288 /* RoomSharedItemsTableViewController.xib */; };
  557. 2CC1FF4828183958009F7288 /* NCDeckCardParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1FF4728183958009F7288 /* NCDeckCardParameter.m */; };
  558. 2CC1FF492818395E009F7288 /* NCDeckCardParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1FF4728183958009F7288 /* NCDeckCardParameter.m */; };
  559. 2CC1FF4A2818395F009F7288 /* NCDeckCardParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1FF4728183958009F7288 /* NCDeckCardParameter.m */; };
  560. 2CC32E8D27F4540E00BB8C39 /* ReactionsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC32E8C27F4540E00BB8C39 /* ReactionsView.swift */; };
  561. 2CC32E9227F45AE000BB8C39 /* ReactionsViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC32E9027F45AE000BB8C39 /* ReactionsViewCell.swift */; };
  562. 2CC32E9327F45AE000BB8C39 /* ReactionsViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CC32E9127F45AE000BB8C39 /* ReactionsViewCell.xib */; };
  563. 2CC32E9827F5D9BD00BB8C39 /* NCChatReaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC32E9727F5D9BD00BB8C39 /* NCChatReaction.m */; };
  564. 2CC32E9927F5DADA00BB8C39 /* NCChatReaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC32E9727F5D9BD00BB8C39 /* NCChatReaction.m */; };
  565. 2CC32E9A27F5DADB00BB8C39 /* NCChatReaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC32E9727F5D9BD00BB8C39 /* NCChatReaction.m */; };
  566. 2CC7158920B837140045C789 /* PlaceholderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CC7158820B837140045C789 /* PlaceholderView.xib */; };
  567. 2CC7158C20B8394A0045C789 /* PlaceholderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC7158B20B8394A0045C789 /* PlaceholderView.m */; };
  568. 2CC7159420C54D080045C789 /* ChatTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC7159320C54D080045C789 /* ChatTableViewCell.m */; };
  569. 2CCCD21D2835088F00F076CE /* OpenSSL in Frameworks */ = {isa = PBXBuildFile; productRef = 2CCCD21C2835088F00F076CE /* OpenSSL */; };
  570. 2CD4F6B72C11C80600ED594F /* ContactsSearchResultTableViewContoller.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CD4F6B62C11C80600ED594F /* ContactsSearchResultTableViewContoller.swift */; };
  571. 2CD5F3242142781A006B71BF /* NCExternalSignalingController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CD5F3232142781A006B71BF /* NCExternalSignalingController.m */; };
  572. 2CD80F482A4304AD00919057 /* OpenConversationsTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CD80F472A4304AD00919057 /* OpenConversationsTableViewController.swift */; };
  573. 2CEDA88C26F492610044552B /* NSMutableAttributedString+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CEDA88B26F492610044552B /* NSMutableAttributedString+Extensions.swift */; };
  574. 2CF8AD3F2A0010FB00A4D3E6 /* MessageTranslationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CF8AD3D2A0010FB00A4D3E6 /* MessageTranslationViewController.swift */; };
  575. 2CF8AD402A0010FB00A4D3E6 /* MessageTranslationViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CF8AD3E2A0010FB00A4D3E6 /* MessageTranslationViewController.xib */; };
  576. 2CF9CBFF26025F65002246EF /* TextInputTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CF9CBFB26025F64002246EF /* TextInputTableViewCell.xib */; };
  577. 3FCA62550CD1442D28E8A7C6 /* libPods-NotificationServiceExtension.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9B81BB7A4920C391CC2CACFD /* libPods-NotificationServiceExtension.a */; };
  578. 4890175925A0D7FC2EC76CC0 /* libPods-NextcloudTalkTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7005E22D6C2896927FC3AEEC /* libPods-NextcloudTalkTests.a */; };
  579. 5EE5ACBB2CF371E7004D7EDB /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CA1CCC91F17C503002FE6A2 /* AudioToolbox.framework */; };
  580. 5EE5ACBE2CF371E9004D7EDB /* IntentsUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F90EFC225FE489B00F3FA55 /* IntentsUI.framework */; };
  581. 5EE5ACC02CF372AD004D7EDB /* ReplayKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FF2FD5C2AB99CCB000C9905 /* ReplayKit.framework */; };
  582. 5EE5ACC32CF48BCA004D7EDB /* BroadcastUploadExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 1FF2FD5B2AB99CCB000C9905 /* BroadcastUploadExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  583. 5EE5ACC72CF48BDA004D7EDB /* NotificationServiceExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 2CC0014F24A1F0E900A20167 /* NotificationServiceExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  584. 5EE5ACCA2CF48BDF004D7EDB /* ShareExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 2C62AFA324C08845007E460A /* ShareExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  585. 807E30762A83A90F00089D28 /* UserStatusOptionsSwiftUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 807E30752A83A90F00089D28 /* UserStatusOptionsSwiftUI.swift */; };
  586. 80832B762A822E5100195A97 /* UserStatusSwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80832B752A822E5100195A97 /* UserStatusSwiftUIView.swift */; };
  587. 80832B782A823D0700195A97 /* UserStatusMessageSwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80832B772A823D0700195A97 /* UserStatusMessageSwiftUIView.swift */; };
  588. 80CDF8C42A8E098900CB57AE /* SwiftUIIntrospect in Frameworks */ = {isa = PBXBuildFile; productRef = 80CDF8C32A8E098900CB57AE /* SwiftUIIntrospect */; };
  589. 847EFC7236336B67A1A89358 /* libPods-BroadcastUploadExtension.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A3D305FCD7BF7E727A62F35 /* libPods-BroadcastUploadExtension.a */; };
  590. 8789AE73BFCAA413B43319C0 /* libPods-ShareExtension.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 684807120F4439797973DF73 /* libPods-ShareExtension.a */; };
  591. 9993261EDAC77481FF4EF58A /* libPods-NextcloudTalk.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4F7C31E9D74F550EAF89931B /* libPods-NextcloudTalk.a */; };
  592. DA1AEFC3270F1FA90088E519 /* DateLabelCustom.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA1AEFC2270F1FA90088E519 /* DateLabelCustom.swift */; };
  593. DA66582B27B6992F00B46B11 /* UserProfileTableViewController+AvatarSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA66582A27B6992F00B46B11 /* UserProfileTableViewController+AvatarSetup.swift */; };
  594. DA66582D27B6A73800B46B11 /* UserProfileTableViewController+DelegateMethods.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA66582C27B6A73800B46B11 /* UserProfileTableViewController+DelegateMethods.swift */; };
  595. DA66582F27B6B19C00B46B11 /* UserProfileTableViewController+Actions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA66582E27B6B19C00B46B11 /* UserProfileTableViewController+Actions.swift */; };
  596. DA66583127B6B24E00B46B11 /* UserProfileTableViewController+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA66583027B6B24E00B46B11 /* UserProfileTableViewController+Utils.swift */; };
  597. DA75580F278EEA1000A48A1B /* SettingsTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA75580E278EEA1000A48A1B /* SettingsTableViewController.swift */; };
  598. DA755811278EF3EF00A48A1B /* UserSettingsTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA755810278EF3EF00A48A1B /* UserSettingsTableViewCell.swift */; };
  599. DA8801A227A2DA00009EF248 /* UserProfileTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA8801A127A2DA00009EF248 /* UserProfileTableViewController.swift */; };
  600. DA8801A427AC52AC009EF248 /* TextInputTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA8801A327AC52AC009EF248 /* TextInputTableViewCell.swift */; };
  601. /* End PBXBuildFile section */
  602. /* Begin PBXContainerItemProxy section */
  603. 1F6D8C342B2E3756004376B8 /* PBXContainerItemProxy */ = {
  604. isa = PBXContainerItemProxy;
  605. containerPortal = 2C0574751EDD9E8E00D9E7F2 /* Project object */;
  606. proxyType = 1;
  607. remoteGlobalIDString = 2C05747C1EDD9E8E00D9E7F2;
  608. remoteInfo = NextcloudTalk;
  609. };
  610. 1FD8AD902A3A162100787C16 /* PBXContainerItemProxy */ = {
  611. isa = PBXContainerItemProxy;
  612. containerPortal = 2C0574751EDD9E8E00D9E7F2 /* Project object */;
  613. proxyType = 1;
  614. remoteGlobalIDString = 2C05747C1EDD9E8E00D9E7F2;
  615. remoteInfo = NextcloudTalk;
  616. };
  617. 5EE5ACC42CF48BCA004D7EDB /* PBXContainerItemProxy */ = {
  618. isa = PBXContainerItemProxy;
  619. containerPortal = 2C0574751EDD9E8E00D9E7F2 /* Project object */;
  620. proxyType = 1;
  621. remoteGlobalIDString = 1FF2FD5A2AB99CCB000C9905;
  622. remoteInfo = BroadcastUploadExtension;
  623. };
  624. 5EE5ACC82CF48BDA004D7EDB /* PBXContainerItemProxy */ = {
  625. isa = PBXContainerItemProxy;
  626. containerPortal = 2C0574751EDD9E8E00D9E7F2 /* Project object */;
  627. proxyType = 1;
  628. remoteGlobalIDString = 2CC0014E24A1F0E900A20167;
  629. remoteInfo = NotificationServiceExtension;
  630. };
  631. 5EE5ACCB2CF48BDF004D7EDB /* PBXContainerItemProxy */ = {
  632. isa = PBXContainerItemProxy;
  633. containerPortal = 2C0574751EDD9E8E00D9E7F2 /* Project object */;
  634. proxyType = 1;
  635. remoteGlobalIDString = 2C62AFA224C08845007E460A;
  636. remoteInfo = ShareExtension;
  637. };
  638. /* End PBXContainerItemProxy section */
  639. /* Begin PBXCopyFilesBuildPhase section */
  640. 5EE5ACC62CF48BCA004D7EDB /* Embed Foundation Extensions */ = {
  641. isa = PBXCopyFilesBuildPhase;
  642. buildActionMask = 2147483647;
  643. dstPath = "";
  644. dstSubfolderSpec = 13;
  645. files = (
  646. 5EE5ACCA2CF48BDF004D7EDB /* ShareExtension.appex in Embed Foundation Extensions */,
  647. 5EE5ACC32CF48BCA004D7EDB /* BroadcastUploadExtension.appex in Embed Foundation Extensions */,
  648. 5EE5ACC72CF48BDA004D7EDB /* NotificationServiceExtension.appex in Embed Foundation Extensions */,
  649. );
  650. name = "Embed Foundation Extensions";
  651. runOnlyForDeploymentPostprocessing = 0;
  652. };
  653. /* End PBXCopyFilesBuildPhase section */
  654. /* Begin PBXFileReference section */
  655. 1F0A1D432A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMarkdownObjCBridge.swift; sourceTree = "<group>"; };
  656. 1F0B0A712BA264540073FF8D /* MentionSuggestion.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MentionSuggestion.swift; sourceTree = "<group>"; };
  657. 1F0B0A762BA26BE10073FF8D /* UnitMentionSuggestionTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitMentionSuggestionTest.swift; sourceTree = "<group>"; };
  658. 1F11FB7129C07B04001E21E7 /* NCZoomableView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCZoomableView.swift; sourceTree = "<group>"; };
  659. 1F1B0F242BD94A0D003FD766 /* UnitDarwinCenterTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitDarwinCenterTest.swift; sourceTree = "<group>"; };
  660. 1F1B0F262BDA61C5003FD766 /* AllocationTracker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AllocationTracker.swift; sourceTree = "<group>"; };
  661. 1F1B0F2B2BDBB3AC003FD766 /* NCMediaViewerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMediaViewerViewController.swift; sourceTree = "<group>"; };
  662. 1F1B0F2F2BDBC9D6003FD766 /* NCMediaViewerPageViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMediaViewerPageViewController.swift; sourceTree = "<group>"; };
  663. 1F1B0F312BDC57E3003FD766 /* UIPageViewControllerExtension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIPageViewControllerExtension.swift; sourceTree = "<group>"; };
  664. 1F1B0F352BDD8B9C003FD766 /* NCActivityIndicator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivityIndicator.swift; sourceTree = "<group>"; };
  665. 1F1B0F3B2BE047CD003FD766 /* UIViewController+Transitions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+Transitions.swift"; sourceTree = "<group>"; };
  666. 1F1B0F3C2BE047CD003FD766 /* ModalTransitionAnimator.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ModalTransitionAnimator.swift; sourceTree = "<group>"; };
  667. 1F1B0F3D2BE047CD003FD766 /* ModalTransitionManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ModalTransitionManager.swift; sourceTree = "<group>"; };
  668. 1F1B0F3E2BE047CD003FD766 /* ModalPresentationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ModalPresentationController.swift; sourceTree = "<group>"; };
  669. 1F1B0F3F2BE047CD003FD766 /* InteractionControlling.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InteractionControlling.swift; sourceTree = "<group>"; };
  670. 1F1B0F402BE047CE003FD766 /* StandardInteractionController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StandardInteractionController.swift; sourceTree = "<group>"; };
  671. 1F1B0F412BE047CE003FD766 /* CustomPresentable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomPresentable.swift; sourceTree = "<group>"; };
  672. 1F1B0F492BE047D5003FD766 /* OneWayPanGestureRecognizer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OneWayPanGestureRecognizer.swift; sourceTree = "<group>"; };
  673. 1F1B0F4B2BE18FF3003FD766 /* CustomPresentableNavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomPresentableNavigationController.swift; sourceTree = "<group>"; };
  674. 1F1B50332B8E069800B0F2F4 /* BaseChatTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseChatTableViewCell.swift; sourceTree = "<group>"; };
  675. 1F1B50372B8E070100B0F2F4 /* BaseChatTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BaseChatTableViewCell.xib; sourceTree = "<group>"; };
  676. 1F1B50392B8F9E1300B0F2F4 /* BaseChatTableViewCell+File.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "BaseChatTableViewCell+File.swift"; sourceTree = "<group>"; };
  677. 1F1B503D2B8FB12100B0F2F4 /* BaseChatTableViewCell+Message.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "BaseChatTableViewCell+Message.swift"; sourceTree = "<group>"; };
  678. 1F1B50422B9095C900B0F2F4 /* FederatedCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FederatedCapabilities.h; sourceTree = "<group>"; };
  679. 1F1B50432B9095D100B0F2F4 /* FederatedCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FederatedCapabilities.m; sourceTree = "<group>"; };
  680. 1F1B50452B90CDE600B0F2F4 /* TalkCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TalkCapabilities.h; sourceTree = "<group>"; };
  681. 1F1B50462B90CDF800B0F2F4 /* TalkCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TalkCapabilities.m; sourceTree = "<group>"; };
  682. 1F1C0D8629AFB88800D17C6D /* VLCKitVideoViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = VLCKitVideoViewController.xib; sourceTree = "<group>"; };
  683. 1F1C0D8829AFB89900D17C6D /* VLCKitVideoViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VLCKitVideoViewController.swift; sourceTree = "<group>"; };
  684. 1F1DF83B2C5C17AF00E5EA86 /* TalkActor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TalkActor.swift; sourceTree = "<group>"; };
  685. 1F1DF8402C63C25900E5EA86 /* UnitNCDatabaseManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitNCDatabaseManager.swift; sourceTree = "<group>"; };
  686. 1F1DF8422C64006E00E5EA86 /* SignalingParticipant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SignalingParticipant.swift; sourceTree = "<group>"; };
  687. 1F21A0622C77863500ED8C0C /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  688. 1F21A0632C77863500ED8C0C /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  689. 1F21A0642C77863500ED8C0C /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = "nb-NO"; path = "nb-NO.lproj/Localizable.stringsdict"; sourceTree = "<group>"; };
  690. 1F21A0652C77865D00ED8C0C /* ga */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ga; path = ga.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  691. 1F21A0662C77865D00ED8C0C /* ga */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = ga; path = ga.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
  692. 1F21A0672C77865D00ED8C0C /* ga */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ga; path = ga.lproj/Localizable.strings; sourceTree = "<group>"; };
  693. 1F21A0682C77868000ED8C0C /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = sv; path = sv.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
  694. 1F21A0692C77868000ED8C0C /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  695. 1F21A06A2C77868000ED8C0C /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  696. 1F21A06B2C77869600ED8C0C /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  697. 1F21A06C2C77869600ED8C0C /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
  698. 1F21A06D2C77869600ED8C0C /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = sr; path = sr.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
  699. 1F24B5A128E0648600654457 /* ReferenceGithubView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceGithubView.swift; sourceTree = "<group>"; };
  700. 1F24B5A328E0649200654457 /* ReferenceGithubView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceGithubView.xib; sourceTree = "<group>"; };
  701. 1F35F8DF2AEEB9DE00044BDA /* ShareConfirmationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareConfirmationViewController.swift; sourceTree = "<group>"; };
  702. 1F35F8FA2AEEDBC600044BDA /* ChatViewControllerExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatViewControllerExtension.swift; sourceTree = "<group>"; };
  703. 1F35F9022AEEDEE800044BDA /* AutoCompletionTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AutoCompletionTableViewCell.h; sourceTree = "<group>"; };
  704. 1F35F9032AEEDF0E00044BDA /* AutoCompletionTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AutoCompletionTableViewCell.m; sourceTree = "<group>"; };
  705. 1F371A362A7B921A006CBFB3 /* DatePickerTextField.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DatePickerTextField.swift; sourceTree = "<group>"; };
  706. 1F3C419E29EDAC7D00F58435 /* RoomAvatarInfoTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RoomAvatarInfoTableViewController.swift; sourceTree = "<group>"; };
  707. 1F3C41A029EDAC8800F58435 /* RoomAvatarInfoTableViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RoomAvatarInfoTableViewController.xib; sourceTree = "<group>"; };
  708. 1F3C41A229EDF05700F58435 /* AvatarEditView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AvatarEditView.swift; sourceTree = "<group>"; };
  709. 1F3C41A429EDF0B800F58435 /* AvatarEditView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AvatarEditView.xib; sourceTree = "<group>"; };
  710. 1F3D3B20255F109E00230DAE /* BarButtonItemWithActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BarButtonItemWithActivity.m; sourceTree = "<group>"; };
  711. 1F3D3B21255F109E00230DAE /* BarButtonItemWithActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BarButtonItemWithActivity.h; sourceTree = "<group>"; };
  712. 1F468E7728DCC7310099597B /* EmojiTextField.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmojiTextField.swift; sourceTree = "<group>"; };
  713. 1F46CE2828E05B3200E7D88E /* ReferenceDefaultView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceDefaultView.swift; sourceTree = "<group>"; };
  714. 1F46CE2A28E05B3C00E7D88E /* ReferenceDefaultView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceDefaultView.xib; sourceTree = "<group>"; };
  715. 1F4DD3EA2571C688007DC98E /* EmojiUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmojiUtils.swift; sourceTree = "<group>"; };
  716. 1F5683CE2BA7980C0023E151 /* FilePreviewImageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilePreviewImageView.swift; sourceTree = "<group>"; };
  717. 1F5813F628EB23EF00318FC3 /* NCSplitViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCSplitViewController.swift; sourceTree = "<group>"; };
  718. 1F5813F728EB23EF00318FC3 /* NCSplitViewPlaceholderViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCSplitViewPlaceholderViewController.swift; sourceTree = "<group>"; };
  719. 1F5A24322ADA77DA009939FE /* InputbarViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InputbarViewController.swift; sourceTree = "<group>"; };
  720. 1F5CDAE62B3B05110040ECC0 /* UnitColorGeneratorTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = UnitColorGeneratorTest.swift; path = NextcloudTalkTests/Unit/UnitColorGeneratorTest.swift; sourceTree = SOURCE_ROOT; };
  721. 1F61C766285E35A6004D74D8 /* DiagnosticsTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiagnosticsTableViewController.swift; sourceTree = "<group>"; };
  722. 1F61C76A285F65E1004D74D8 /* SimpleTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleTableViewController.swift; sourceTree = "<group>"; };
  723. 1F6629F92C17700E001C6C0E /* IntegrationRoomsManagerTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IntegrationRoomsManagerTest.swift; sourceTree = "<group>"; };
  724. 1F66B71E29FA703B003FB168 /* TypingIndicatorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TypingIndicatorView.swift; sourceTree = "<group>"; };
  725. 1F66B72029FA7089003FB168 /* TypingIndicatorView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TypingIndicatorView.xib; sourceTree = "<group>"; };
  726. 1F66B72729FA936E003FB168 /* SLKDefaultReplyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLKDefaultReplyView.h; sourceTree = "<group>"; };
  727. 1F66B72829FA936E003FB168 /* SLKDefaultReplyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLKDefaultReplyView.m; sourceTree = "<group>"; };
  728. 1F66B72A29FA9414003FB168 /* SLKDefaultTypingIndicatorView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLKDefaultTypingIndicatorView.h; sourceTree = "<group>"; };
  729. 1F66B72B29FA9414003FB168 /* SLKDefaultTypingIndicatorView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLKDefaultTypingIndicatorView.m; sourceTree = "<group>"; };
  730. 1F6D8C302B2E3756004376B8 /* NextcloudTalkTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NextcloudTalkTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  731. 1F6D8C322B2E3756004376B8 /* IntegrationRoomTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntegrationRoomTest.swift; sourceTree = "<group>"; };
  732. 1F6D8C3C2B2F23C4004376B8 /* Helpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Helpers.swift; sourceTree = "<group>"; };
  733. 1F6D8C402B2F26D5004376B8 /* TestConstants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestConstants.swift; sourceTree = "<group>"; };
  734. 1F6D8C422B2F26EE004376B8 /* Helpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Helpers.swift; sourceTree = "<group>"; };
  735. 1F6D8C472B2F2F69004376B8 /* AAAALoginTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AAAALoginTest.swift; sourceTree = "<group>"; };
  736. 1F6D8C4A2B2F5B61004376B8 /* TestBase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestBase.swift; sourceTree = "<group>"; };
  737. 1F6D8C4C2B2F8FE5004376B8 /* IntegrationChatTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IntegrationChatTest.swift; sourceTree = "<group>"; };
  738. 1F7625E42901B0DB00834869 /* CallsFromOldAccountViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallsFromOldAccountViewController.swift; sourceTree = "<group>"; };
  739. 1F7625E62901B0E800834869 /* CallsFromOldAccountViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CallsFromOldAccountViewController.xib; sourceTree = "<group>"; };
  740. 1F77A6112AB9B161007B6037 /* ScreenCaptureController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScreenCaptureController.m; sourceTree = "<group>"; };
  741. 1F77A6122AB9B161007B6037 /* ScreenCaptureController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScreenCaptureController.h; sourceTree = "<group>"; };
  742. 1F77A6132AB9B161007B6037 /* ScreenCapturer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScreenCapturer.m; sourceTree = "<group>"; };
  743. 1F77A6142AB9B161007B6037 /* ScreenCapturer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScreenCapturer.h; sourceTree = "<group>"; };
  744. 1F77A61C2AB9B301007B6037 /* CapturerEventsDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapturerEventsDelegate.h; sourceTree = "<group>"; };
  745. 1F77A61F2AB9D82B007B6037 /* BroadcastUploadExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = BroadcastUploadExtension.entitlements; sourceTree = "<group>"; };
  746. 1F77A6202AB9EB06007B6037 /* SocketConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SocketConnection.h; sourceTree = "<group>"; };
  747. 1F77A6212AB9EB06007B6037 /* SocketConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SocketConnection.m; sourceTree = "<group>"; };
  748. 1F77A6232ABA0003007B6037 /* SampleHandler.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SampleHandler.swift; sourceTree = "<group>"; };
  749. 1F77A6252ABA0CD9007B6037 /* NCScreensharingController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCScreensharingController.h; sourceTree = "<group>"; };
  750. 1F77A6262ABA0CD9007B6037 /* NCScreensharingController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCScreensharingController.m; sourceTree = "<group>"; };
  751. 1F785DDA2707865F00AC4B40 /* VoiceMessageTranscribeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoiceMessageTranscribeViewController.m; sourceTree = "<group>"; };
  752. 1F785DDB2707865F00AC4B40 /* VoiceMessageTranscribeViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = VoiceMessageTranscribeViewController.xib; sourceTree = "<group>"; };
  753. 1F785DDC2707865F00AC4B40 /* VoiceMessageTranscribeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoiceMessageTranscribeViewController.h; sourceTree = "<group>"; };
  754. 1F8995B22970644C00CABA33 /* ColorGenerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ColorGenerator.swift; sourceTree = "<group>"; };
  755. 1F8995B42973547700CABA33 /* WebRTCCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebRTCCommon.swift; sourceTree = "<group>"; };
  756. 1F8AAC312C518759004DA20A /* SignalingSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SignalingSettings.swift; sourceTree = "<group>"; };
  757. 1F8AAC362C519577004DA20A /* TurnServer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TurnServer.swift; sourceTree = "<group>"; };
  758. 1F8AAC3B2C519689004DA20A /* StunServer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StunServer.swift; sourceTree = "<group>"; };
  759. 1F8AAC612C596308004DA20A /* UnitSignalingSettings.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitSignalingSettings.swift; sourceTree = "<group>"; };
  760. 1F90DA0329E9A28E00E81E3D /* AvatarManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AvatarManager.swift; sourceTree = "<group>"; };
  761. 1F90EFBA25FE39F800F3FA55 /* NCIntentController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCIntentController.h; sourceTree = "<group>"; };
  762. 1F90EFBB25FE39F800F3FA55 /* NCIntentController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCIntentController.m; sourceTree = "<group>"; };
  763. 1F90EFC225FE489B00F3FA55 /* IntentsUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IntentsUI.framework; path = System/Library/Frameworks/IntentsUI.framework; sourceTree = SDKROOT; };
  764. 1F98DF9B28E7484700E05174 /* ReferenceDeckView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceDeckView.swift; sourceTree = "<group>"; };
  765. 1F98DF9D28E7485000E05174 /* ReferenceDeckView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceDeckView.xib; sourceTree = "<group>"; };
  766. 1FA20C89284001D80062B4F3 /* DebounceWebView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DebounceWebView.swift; sourceTree = "<group>"; };
  767. 1FA38C8F29A4B3C6008871B8 /* NCNotificationAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNotificationAction.swift; sourceTree = "<group>"; };
  768. 1FA732FB2966CBB7003D2103 /* CallFlowLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallFlowLayout.swift; sourceTree = "<group>"; };
  769. 1FAB2E822AC9EC3F001214EB /* BaseChatViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseChatViewController.swift; sourceTree = "<group>"; };
  770. 1FAB2E842ACB482B001214EB /* ChatViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatViewController.swift; sourceTree = "<group>"; };
  771. 1FAB2EED2AD1BC1B001214EB /* UIControlExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIControlExtensions.swift; sourceTree = "<group>"; };
  772. 1FAB2EEF2AD1EAA3001214EB /* RLMSupport.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RLMSupport.swift; sourceTree = "<group>"; };
  773. 1FADECD42B7EACCB007AD94B /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
  774. 1FADECD52B821E24007AD94B /* FederationInvitationTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FederationInvitationTableViewController.swift; sourceTree = "<group>"; };
  775. 1FADECD72B82269E007AD94B /* FederationInvitationCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FederationInvitationCell.swift; sourceTree = "<group>"; };
  776. 1FADECD92B8227B1007AD94B /* FederationInvitationCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FederationInvitationCell.xib; sourceTree = "<group>"; };
  777. 1FB52E752842C75E00AC741B /* QRCodeLoginController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRCodeLoginController.swift; sourceTree = "<group>"; };
  778. 1FB6678E28CE381300D29F8D /* SubtitleTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SubtitleTableViewCell.swift; sourceTree = "<group>"; };
  779. 1FB78E1E2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAPIControllerExtensions.swift; sourceTree = "<group>"; };
  780. 1FB78E252B6AE5A600B0D69D /* FederationInvitation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FederationInvitation.swift; sourceTree = "<group>"; };
  781. 1FB7B9842BE2EE020093CE98 /* UnitChatViewControllerTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitChatViewControllerTest.swift; sourceTree = "<group>"; };
  782. 1FB7B9862BE441450093CE98 /* UIViewExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIViewExtensions.swift; sourceTree = "<group>"; };
  783. 1FB7B9882BE442400093CE98 /* UnitBaseChatTableViewCellTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitBaseChatTableViewCellTest.swift; sourceTree = "<group>"; };
  784. 1FB7B98D2BF0CBA60093CE98 /* BannedActor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BannedActor.swift; sourceTree = "<group>"; };
  785. 1FB7B9942BF0DF1C0093CE98 /* BannedActorTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BannedActorTableViewController.swift; sourceTree = "<group>"; };
  786. 1FB7B9992BF0DF290093CE98 /* BannedActorCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BannedActorCell.swift; sourceTree = "<group>"; };
  787. 1FB7B99B2BF0DF360093CE98 /* BannedActorCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BannedActorCell.xib; sourceTree = "<group>"; };
  788. 1FBC3BE42B61ACD5003909E0 /* UnitBaseChatViewControllerTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitBaseChatViewControllerTest.swift; sourceTree = "<group>"; };
  789. 1FBC3BE82B61BD09003909E0 /* TestBaseRealm.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TestBaseRealm.swift; sourceTree = "<group>"; };
  790. 1FCE3D542C9C189D009C68A9 /* NCChatFileControllerWrapper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCChatFileControllerWrapper.swift; sourceTree = "<group>"; };
  791. 1FCE3D562C9C4D18009C68A9 /* ReferenceGiphyView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceGiphyView.swift; sourceTree = "<group>"; };
  792. 1FCE3D582C9C4D21009C68A9 /* ReferenceGiphyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceGiphyView.xib; sourceTree = "<group>"; };
  793. 1FD6F83B2B825069004048AB /* NCRoomsManagerExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCRoomsManagerExtensions.swift; sourceTree = "<group>"; };
  794. 1FD6F83D2B87B712004048AB /* NCUserStatusExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUserStatusExtensions.swift; sourceTree = "<group>"; };
  795. 1FD8AD8A2A3A162100787C16 /* NextcloudTalkUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NextcloudTalkUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  796. 1FD8AD8C2A3A162100787C16 /* UIRoomTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIRoomTest.swift; sourceTree = "<group>"; };
  797. 1FD9182828C55A73009092AB /* BGTaskHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGTaskHelper.swift; sourceTree = "<group>"; };
  798. 1FDB47F52C9C71CE00D6F423 /* TalkAccount.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TalkAccount.swift; sourceTree = "<group>"; };
  799. 1FDB47F72C9C7E3F00D6F423 /* NCDatabaseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCDatabaseManager.swift; sourceTree = "<group>"; };
  800. 1FDCC3D329EBF6E700DEB39B /* AvatarImageView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AvatarImageView.swift; sourceTree = "<group>"; };
  801. 1FDCC3EC29EC7DD400DEB39B /* NextcloudTalk-Bridging-Header-Extensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NextcloudTalk-Bridging-Header-Extensions.h"; sourceTree = "<group>"; };
  802. 1FDCC3EF29ECB4CE00DEB39B /* AvatarButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AvatarButton.swift; sourceTree = "<group>"; };
  803. 1FDDB0D82AF440DD00FBAFB7 /* BoundsChangedFlowLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BoundsChangedFlowLayout.swift; sourceTree = "<group>"; };
  804. 1FDDB0E42AFD046600FBAFB7 /* NCUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtils.swift; sourceTree = "<group>"; };
  805. 1FDDB0E82AFE8F5C00FBAFB7 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
  806. 1FDE7C9928DE14A200CB718E /* ReferenceView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReferenceView.swift; sourceTree = "<group>"; };
  807. 1FDE7C9B28DE14B000CB718E /* ReferenceView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ReferenceView.xib; sourceTree = "<group>"; };
  808. 1FDFC94C2BA50B9100670DF4 /* UIFontExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIFontExtension.swift; sourceTree = "<group>"; };
  809. 1FE0C56B2A0531200083576A /* ReferenceTalkView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceTalkView.xib; sourceTree = "<group>"; };
  810. 1FE0C56D2A0531270083576A /* ReferenceTalkView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceTalkView.swift; sourceTree = "<group>"; };
  811. 1FE7DE2F2BB4598F0040EE12 /* RoomInvitationViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RoomInvitationViewCell.swift; sourceTree = "<group>"; };
  812. 1FE7DE312BB459B10040EE12 /* RoomInvitationViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RoomInvitationViewCell.xib; sourceTree = "<group>"; };
  813. 1FE94733293CE55600D6584C /* NCCameraController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCameraController.swift; sourceTree = "<group>"; };
  814. 1FEC459B2A02BCAE00A636AA /* ReferenceGithubPermalinkView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceGithubPermalinkView.xib; sourceTree = "<group>"; };
  815. 1FEC459D2A02BCB900A636AA /* ReferenceGithubPermalinkView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceGithubPermalinkView.swift; sourceTree = "<group>"; };
  816. 1FEC45A22A02F92700A636AA /* GithubPermalinkViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GithubPermalinkViewController.swift; sourceTree = "<group>"; };
  817. 1FEC45A42A02F92B00A636AA /* GithubPermalinkViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GithubPermalinkViewController.xib; sourceTree = "<group>"; };
  818. 1FEDE3C4257D439500853F79 /* NCChatFileController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCChatFileController.m; sourceTree = "<group>"; };
  819. 1FEDE3C5257D439500853F79 /* NCChatFileController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCChatFileController.h; sourceTree = "<group>"; };
  820. 1FEDE3CC257D43AB00853F79 /* NCMessageFileParameter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCMessageFileParameter.m; sourceTree = "<group>"; };
  821. 1FEDE3CD257D43AB00853F79 /* NCMessageFileParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCMessageFileParameter.h; sourceTree = "<group>"; };
  822. 1FF1360E2BFB4F8C006A6101 /* NCRoom.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRoom.swift; sourceTree = "<group>"; };
  823. 1FF136142BFB74C3006A6101 /* NCChatMessage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCChatMessage.swift; sourceTree = "<group>"; };
  824. 1FF2FD5B2AB99CCB000C9905 /* BroadcastUploadExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = BroadcastUploadExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  825. 1FF2FD5C2AB99CCB000C9905 /* ReplayKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ReplayKit.framework; path = System/Library/Frameworks/ReplayKit.framework; sourceTree = SDKROOT; };
  826. 1FF2FD612AB99CCB000C9905 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  827. 1FF2FD792AB99E4D000C9905 /* DarwinNotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DarwinNotificationCenter.swift; sourceTree = "<group>"; };
  828. 1FF2FD7A2AB99E4D000C9905 /* Atomic.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Atomic.swift; sourceTree = "<group>"; };
  829. 1FF2FD7B2AB99E4D000C9905 /* SampleUploader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SampleUploader.swift; sourceTree = "<group>"; };
  830. 1FF2FD7D2AB99E4D000C9905 /* SocketConnection.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SocketConnection.swift; sourceTree = "<group>"; };
  831. 1FF4DA7D2C0237D000C1B952 /* DirectoryTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DirectoryTableViewCell.swift; sourceTree = "<group>"; };
  832. 1FF4DA7F2C023FF300C1B952 /* NCChatFileStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCChatFileStatus.swift; sourceTree = "<group>"; };
  833. 1FF4DA812C025DB900C1B952 /* NCAPISessionManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAPISessionManager.swift; sourceTree = "<group>"; };
  834. 1FF4DA862C02626D00C1B952 /* NCBaseSessionManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBaseSessionManager.swift; sourceTree = "<group>"; };
  835. 1FF4DA8B2C0263A200C1B952 /* NCPushProxySessionManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPushProxySessionManager.swift; sourceTree = "<group>"; };
  836. 1FF4DA902C02677C00C1B952 /* NCImageSessionManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCImageSessionManager.swift; sourceTree = "<group>"; };
  837. 1FF4DA952C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCWebImageDownloaderOperation.swift; sourceTree = "<group>"; };
  838. 1FF4DA9A2C032AAC00C1B952 /* RoomTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RoomTableViewCell.swift; sourceTree = "<group>"; };
  839. 1FF4DA9F2C03351E00C1B952 /* RoomNameTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RoomNameTableViewCell.swift; sourceTree = "<group>"; };
  840. 1FF4DAA12C0338D000C1B952 /* RoomDescriptionTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RoomDescriptionTableViewCell.swift; sourceTree = "<group>"; };
  841. 1FF4DAA52C08D81D00C1B952 /* UnitNCChatMessageTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitNCChatMessageTest.swift; sourceTree = "<group>"; };
  842. 1FF4DAA72C08DE3A00C1B952 /* UnitNCRoomsManagerTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitNCRoomsManagerTest.swift; sourceTree = "<group>"; };
  843. 1FF4DAA92C0A114900C1B952 /* OcsResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OcsResponse.swift; sourceTree = "<group>"; };
  844. 1FFF41612C70937B00162F4D /* ReferenceZammadView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceZammadView.swift; sourceTree = "<group>"; };
  845. 1FFF41632C70938700162F4D /* ReferenceZammadView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceZammadView.xib; sourceTree = "<group>"; };
  846. 2C04248F2CA32D45004772F6 /* BaseChatTableViewCell+Audio.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BaseChatTableViewCell+Audio.swift"; sourceTree = "<group>"; };
  847. 2C0424962CA335C4004772F6 /* AudioPlayerView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AudioPlayerView.xib; sourceTree = "<group>"; };
  848. 2C0424992CA33681004772F6 /* AudioPlayerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AudioPlayerView.swift; sourceTree = "<group>"; };
  849. 2C05747D1EDD9E8E00D9E7F2 /* NextcloudTalk.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NextcloudTalk.app; sourceTree = BUILT_PRODUCTS_DIR; };
  850. 2C0574811EDD9E8E00D9E7F2 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  851. 2C0574831EDD9E8E00D9E7F2 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  852. 2C0574841EDD9E8E00D9E7F2 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  853. 2C05748D1EDD9E8E00D9E7F2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  854. 2C0574941EDD9E8E00D9E7F2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  855. 2C0574A11EDDA2E300D9E7F2 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  856. 2C0574A21EDDA2E300D9E7F2 /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
  857. 2C0574A31EDDA2E300D9E7F2 /* LoginViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginViewController.xib; sourceTree = "<group>"; };
  858. 2C06330D2046CC8B0043481A /* NCUserInterfaceController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCUserInterfaceController.h; sourceTree = "<group>"; };
  859. 2C06330E2046CC8B0043481A /* NCUserInterfaceController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCUserInterfaceController.m; sourceTree = "<group>"; };
  860. 2C06BF5B20A89F510031EB46 /* NCRoomsManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCRoomsManager.h; sourceTree = "<group>"; };
  861. 2C06BF5C20A89F510031EB46 /* NCRoomsManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCRoomsManager.m; sourceTree = "<group>"; };
  862. 2C06BF6320AC64370031EB46 /* DateHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DateHeaderView.xib; sourceTree = "<group>"; };
  863. 2C06BF6520AC647A0031EB46 /* DateHeaderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DateHeaderView.h; sourceTree = "<group>"; };
  864. 2C06BF6620AC647A0031EB46 /* DateHeaderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DateHeaderView.m; sourceTree = "<group>"; };
  865. 2C06BF6A20AEB0030031EB46 /* RoundedNumberView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoundedNumberView.m; sourceTree = "<group>"; };
  866. 2C06BF6B20AEB0030031EB46 /* RoundedNumberView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoundedNumberView.h; sourceTree = "<group>"; };
  867. 2C16A82B28E7284D00EDE523 /* NCButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCButton.swift; sourceTree = "<group>"; };
  868. 2C1ABD7F25769E7C00AEDFB6 /* ShareItemController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShareItemController.h; sourceTree = "<group>"; };
  869. 2C1ABD8025769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShareConfirmationCollectionViewCell.m; sourceTree = "<group>"; };
  870. 2C1ABD8125769E7D00AEDFB6 /* ShareItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShareItem.h; sourceTree = "<group>"; };
  871. 2C1ABD8225769E7D00AEDFB6 /* ShareItemController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShareItemController.m; sourceTree = "<group>"; };
  872. 2C1ABD8325769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShareConfirmationCollectionViewCell.h; sourceTree = "<group>"; };
  873. 2C1ABD8425769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ShareConfirmationCollectionViewCell.xib; sourceTree = "<group>"; };
  874. 2C1ABD8525769E7D00AEDFB6 /* ShareItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShareItem.m; sourceTree = "<group>"; };
  875. 2C1ABDC4257A7CF000AEDFB6 /* NCContactsManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCContactsManager.h; sourceTree = "<group>"; };
  876. 2C1ABDC5257A7CF000AEDFB6 /* NCContactsManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCContactsManager.m; sourceTree = "<group>"; };
  877. 2C1ABDCC257E939600AEDFB6 /* NCContact.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCContact.h; sourceTree = "<group>"; };
  878. 2C1ABDCD257E939600AEDFB6 /* NCContact.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCContact.m; sourceTree = "<group>"; };
  879. 2C1ABDE3257F883400AEDFB6 /* ABContact.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ABContact.h; sourceTree = "<group>"; };
  880. 2C1ABDE4257F883400AEDFB6 /* ABContact.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ABContact.m; sourceTree = "<group>"; };
  881. 2C1D13A2253760EE00EC0533 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
  882. 2C1EF36925505DCE007C9768 /* NCNavigationController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCNavigationController.h; sourceTree = "<group>"; };
  883. 2C1EF36A25505DCE007C9768 /* NCNavigationController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCNavigationController.m; sourceTree = "<group>"; };
  884. 2C21446D2BB5B54D005A6537 /* BaseChatTableViewCell+Location.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BaseChatTableViewCell+Location.swift"; sourceTree = "<group>"; };
  885. 2C2145672BF6B8E900470C0C /* NewRoomTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NewRoomTableViewController.swift; sourceTree = "<group>"; };
  886. 2C2A788C2359CC8800EEB797 /* NCAppBranding.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCAppBranding.h; sourceTree = "<group>"; };
  887. 2C2A788D2359CC8800EEB797 /* NCAppBranding.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCAppBranding.m; sourceTree = "<group>"; };
  888. 2C2D7A162B8C9C0000642373 /* RoomCreationTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RoomCreationTableViewController.swift; sourceTree = "<group>"; };
  889. 2C2E64231F3462AF00D39CE8 /* NCSignalingMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSignalingMessage.h; sourceTree = "<group>"; };
  890. 2C2E64241F3462AF00D39CE8 /* NCSignalingMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSignalingMessage.m; sourceTree = "<group>"; };
  891. 2C3195BB24C1F58A0066F221 /* ShareExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = ShareExtension.entitlements; sourceTree = "<group>"; };
  892. 2C3195BF24C5E2100066F221 /* ShareTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShareTableViewCell.h; sourceTree = "<group>"; };
  893. 2C3195C024C5E2100066F221 /* ShareTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShareTableViewCell.m; sourceTree = "<group>"; };
  894. 2C3195C124C5E2100066F221 /* ShareTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShareTableViewCell.xib; sourceTree = "<group>"; };
  895. 2C330373255E6EBC00BDB4E4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  896. 2C36A048261487BC0026F04A /* DetailedOptionsSelectorTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailedOptionsSelectorTableViewController.h; sourceTree = "<group>"; };
  897. 2C36A049261487BC0026F04A /* DetailedOptionsSelectorTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailedOptionsSelectorTableViewController.m; sourceTree = "<group>"; };
  898. 2C3780BB2107209C003F9AE8 /* NCRoomParticipant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCRoomParticipant.h; sourceTree = "<group>"; };
  899. 2C3780BC2107209C003F9AE8 /* NCRoomParticipants.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCRoomParticipants.m; sourceTree = "<group>"; };
  900. 2C3780C1210F49DC003F9AE8 /* HeaderWithButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HeaderWithButton.h; sourceTree = "<group>"; };
  901. 2C3780C2210F49DC003F9AE8 /* HeaderWithButton.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HeaderWithButton.m; sourceTree = "<group>"; };
  902. 2C3780C4210F4A26003F9AE8 /* HeaderWithButton.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HeaderWithButton.xib; sourceTree = "<group>"; };
  903. 2C40281322832EED0000DDFC /* NCDatabaseManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCDatabaseManager.h; sourceTree = "<group>"; };
  904. 2C40281422832EED0000DDFC /* NCDatabaseManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCDatabaseManager.m; sourceTree = "<group>"; };
  905. 2C4230F62B207AB00013E1FA /* ContextChatViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContextChatViewController.swift; sourceTree = "<group>"; };
  906. 2C42ADB220B58E6300296DEA /* NCChatController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCChatController.h; sourceTree = "<group>"; };
  907. 2C42ADB320B58E6300296DEA /* NCChatController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCChatController.m; sourceTree = "<group>"; };
  908. 2C43BA7421309A1000B3068A /* NCMessageParameter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCMessageParameter.h; sourceTree = "<group>"; };
  909. 2C43BA7521309A1000B3068A /* NCMessageParameter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCMessageParameter.m; sourceTree = "<group>"; };
  910. 2C440D0E20EA4A770005F9BB /* RoomInfoTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RoomInfoTableViewController.h; sourceTree = "<group>"; };
  911. 2C440D0F20EA4A770005F9BB /* RoomInfoTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RoomInfoTableViewController.m; sourceTree = "<group>"; };
  912. 2C440D1020EA4A770005F9BB /* RoomInfoTableViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RoomInfoTableViewController.xib; sourceTree = "<group>"; };
  913. 2C4446D12658147900DF1DBC /* TalkAccount.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TalkAccount.h; sourceTree = "<group>"; };
  914. 2C4446D22658147900DF1DBC /* TalkAccount.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TalkAccount.m; sourceTree = "<group>"; };
  915. 2C4446D6265814D100DF1DBC /* ServerCapabilities.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ServerCapabilities.h; sourceTree = "<group>"; };
  916. 2C4446D7265814D100DF1DBC /* ServerCapabilities.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ServerCapabilities.m; sourceTree = "<group>"; };
  917. 2C4446DB2658158000DF1DBC /* NCChatBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCChatBlock.h; sourceTree = "<group>"; };
  918. 2C4446DC2658158000DF1DBC /* NCChatBlock.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCChatBlock.m; sourceTree = "<group>"; };
  919. 2C4446EA265D25BA00DF1DBC /* NCKeyChainController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCKeyChainController.h; sourceTree = "<group>"; };
  920. 2C4446EB265D25BA00DF1DBC /* NCKeyChainController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCKeyChainController.m; sourceTree = "<group>"; };
  921. 2C4446EE265D454200DF1DBC /* NotificationCenterNotifications.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NotificationCenterNotifications.h; sourceTree = "<group>"; };
  922. 2C4446EF265D454200DF1DBC /* NotificationCenterNotifications.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NotificationCenterNotifications.m; sourceTree = "<group>"; };
  923. 2C4446F1265D51A600DF1DBC /* NCPushNotificationsUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCPushNotificationsUtils.h; sourceTree = "<group>"; };
  924. 2C4446F2265D51A600DF1DBC /* NCPushNotificationsUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCPushNotificationsUtils.m; sourceTree = "<group>"; };
  925. 2C4446FA265D5BEF00DF1DBC /* CallConstants.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CallConstants.h; sourceTree = "<group>"; };
  926. 2C444701265D641300DF1DBC /* NCUserDefaults.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCUserDefaults.h; sourceTree = "<group>"; };
  927. 2C444702265D641300DF1DBC /* NCUserDefaults.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCUserDefaults.m; sourceTree = "<group>"; };
  928. 2C44B4D027FF05A000AD1C86 /* ReactionsSummaryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReactionsSummaryView.swift; sourceTree = "<group>"; };
  929. 2C4747E12CB58FD2002828F2 /* PollMessageView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PollMessageView.xib; sourceTree = "<group>"; };
  930. 2C4747E52CB6710F002828F2 /* BaseChatTableViewCell+Poll.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BaseChatTableViewCell+Poll.swift"; sourceTree = "<group>"; };
  931. 2C4747E82CB67177002828F2 /* PollMessageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PollMessageView.swift; sourceTree = "<group>"; };
  932. 2C477C1728B79D980044DEB4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = en; path = en.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
  933. 2C4987BB21E640E20060AC27 /* CallKitManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CallKitManager.h; sourceTree = "<group>"; };
  934. 2C4987BC21E640E20060AC27 /* CallKitManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CallKitManager.m; sourceTree = "<group>"; };
  935. 2C4CDCCB269618230023F403 /* RoomDescriptionTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RoomDescriptionTableViewCell.xib; sourceTree = "<group>"; };
  936. 2C4CDCD326AF16650023F403 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
  937. 2C4CDCD426AF16650023F403 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  938. 2C4D7D611F2F7C2C00FF4A0D /* ARDCaptureController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARDCaptureController.h; sourceTree = "<group>"; };
  939. 2C4D7D621F2F7C2C00FF4A0D /* ARDCaptureController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ARDCaptureController.m; sourceTree = "<group>"; };
  940. 2C4D7D641F2F7DBC00FF4A0D /* ARDSettingsModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARDSettingsModel.h; sourceTree = "<group>"; };
  941. 2C4D7D651F2F7DBC00FF4A0D /* ARDSettingsModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ARDSettingsModel.m; sourceTree = "<group>"; };
  942. 2C4D7D661F2F7DBC00FF4A0D /* ARDSettingsModel+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ARDSettingsModel+Private.h"; sourceTree = "<group>"; };
  943. 2C4D7D671F2F7DBC00FF4A0D /* ARDSettingsStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARDSettingsStore.h; sourceTree = "<group>"; };
  944. 2C4D7D681F2F7DBC00FF4A0D /* ARDSettingsStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ARDSettingsStore.m; sourceTree = "<group>"; };
  945. 2C4D7D6D1F309DA500FF4A0D /* RTCIceCandidate+JSON.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RTCIceCandidate+JSON.h"; sourceTree = "<group>"; };
  946. 2C4D7D6E1F309DA500FF4A0D /* RTCIceCandidate+JSON.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "RTCIceCandidate+JSON.m"; sourceTree = "<group>"; };
  947. 2C4D7D6F1F309DA500FF4A0D /* RTCSessionDescription+JSON.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RTCSessionDescription+JSON.h"; sourceTree = "<group>"; };
  948. 2C4D7D701F309DA500FF4A0D /* RTCSessionDescription+JSON.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "RTCSessionDescription+JSON.m"; sourceTree = "<group>"; };
  949. 2C4D7D741F30F7B600FF4A0D /* ARDUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARDUtilities.h; sourceTree = "<group>"; };
  950. 2C4D7D751F30F7B600FF4A0D /* ARDUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ARDUtilities.m; sourceTree = "<group>"; };
  951. 2C4DE9F021F732B40096940D /* NCAudioController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCAudioController.h; sourceTree = "<group>"; };
  952. 2C4DE9F121F732B40096940D /* NCAudioController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCAudioController.m; sourceTree = "<group>"; };
  953. 2C57CD8228C204C600B22E03 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = es; path = es.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
  954. 2C57CD8328C2255000B22E03 /* PollCreationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PollCreationViewController.swift; sourceTree = "<group>"; };
  955. 2C57CD8528CB3FAF00B22E03 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = eu; path = eu.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
  956. 2C5BFBE928772A9A00E75118 /* NCUnifiedSearchController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUnifiedSearchController.swift; sourceTree = "<group>"; };
  957. 2C5BFBEE288A947800E75118 /* PollVotingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PollVotingView.swift; sourceTree = "<group>"; };
  958. 2C5BFBF0288A97D800E75118 /* NCPoll.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCPoll.h; sourceTree = "<group>"; };
  959. 2C5BFBF1288A97D800E75118 /* NCPoll.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCPoll.m; sourceTree = "<group>"; };
  960. 2C5BFBF528902E0300E75118 /* PollFooterView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PollFooterView.swift; sourceTree = "<group>"; };
  961. 2C5BFBF728902E3700E75118 /* PollFooterView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PollFooterView.xib; sourceTree = "<group>"; };
  962. 2C5BFBF92891598900E75118 /* PollResultTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PollResultTableViewCell.swift; sourceTree = "<group>"; };
  963. 2C5BFBFA2891598900E75118 /* PollResultTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PollResultTableViewCell.xib; sourceTree = "<group>"; };
  964. 2C5BFBFD2891C3DF00E75118 /* PollResultsDetailsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PollResultsDetailsViewController.swift; sourceTree = "<group>"; };
  965. 2C604A2A25E4556E00F23615 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  966. 2C604A2B25E4556E00F23615 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  967. 2C604A2C25E455AC00F23615 /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/Localizable.strings; sourceTree = "<group>"; };
  968. 2C604A2D25E455AC00F23615 /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  969. 2C604A2E25E455C500F23615 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/Localizable.strings; sourceTree = "<group>"; };
  970. 2C604A2F25E455C500F23615 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  971. 2C604A3025E455D900F23615 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  972. 2C604A3125E455D900F23615 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  973. 2C604A3225E455ED00F23615 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  974. 2C604A3325E455ED00F23615 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  975. 2C604A3825E4568400F23615 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  976. 2C604A3925E4568400F23615 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  977. 2C604A3A25E4569300F23615 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  978. 2C604A3B25E4569300F23615 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  979. 2C604A3C25E4569F00F23615 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Localizable.strings; sourceTree = "<group>"; };
  980. 2C604A3D25E4569F00F23615 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  981. 2C604A4025E45A9400F23615 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  982. 2C604A4125E45A9400F23615 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  983. 2C604A4225E45BAE00F23615 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
  984. 2C604A4325E45BAE00F23615 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  985. 2C604BD7211988A700D34DCD /* SystemMessageTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SystemMessageTableViewCell.h; sourceTree = "<group>"; };
  986. 2C604BD8211988A700D34DCD /* SystemMessageTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SystemMessageTableViewCell.m; sourceTree = "<group>"; };
  987. 2C6085C11FB1063700B36A6E /* NextcloudTalk.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = NextcloudTalk.entitlements; sourceTree = "<group>"; };
  988. 2C62AFA324C08845007E460A /* ShareExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = ShareExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  989. 2C62AFAB24C08845007E460A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  990. 2C62AFB524C1A449007E460A /* Share.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = Share.storyboard; sourceTree = "<group>"; };
  991. 2C62AFB724C1A4E6007E460A /* ShareViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShareViewController.h; sourceTree = "<group>"; };
  992. 2C62AFB824C1A4E6007E460A /* ShareViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShareViewController.m; sourceTree = "<group>"; };
  993. 2C67905128D35BEB00762744 /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = sl; path = sl.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
  994. 2C69323B2923ECAA00017AD2 /* WSMessage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WSMessage.h; sourceTree = "<group>"; };
  995. 2C69323C2923ECAA00017AD2 /* WSMessage.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WSMessage.m; sourceTree = "<group>"; };
  996. 2C6E74442386D33200AE396C /* ReplyMessageView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReplyMessageView.h; sourceTree = "<group>"; };
  997. 2C6E74452386D33200AE396C /* ReplyMessageView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReplyMessageView.m; sourceTree = "<group>"; };
  998. 2C6E7447238C1A0800AE396C /* QuotedMessageView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = QuotedMessageView.h; sourceTree = "<group>"; };
  999. 2C6E7448238C1A0800AE396C /* QuotedMessageView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = QuotedMessageView.m; sourceTree = "<group>"; };
  1000. 2C7381542106136000CDB8DB /* NCChatTitleView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCChatTitleView.h; sourceTree = "<group>"; };
  1001. 2C7381552106136000CDB8DB /* NCChatTitleView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCChatTitleView.m; sourceTree = "<group>"; };
  1002. 2C738157210613A200CDB8DB /* NCChatTitleView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCChatTitleView.xib; sourceTree = "<group>"; };
  1003. 2C78E9E125120DE500E3D4CA /* NCUserStatus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCUserStatus.h; sourceTree = "<group>"; };
  1004. 2C78E9E225120DE500E3D4CA /* NCUserStatus.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCUserStatus.m; sourceTree = "<group>"; };
  1005. 2C78EF931F7E70EB008AFA74 /* NCPeerConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCPeerConnection.h; sourceTree = "<group>"; };
  1006. 2C78EF941F7E70EB008AFA74 /* NCPeerConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCPeerConnection.m; sourceTree = "<group>"; };
  1007. 2C78EF971F80F81E008AFA74 /* NCSignalingController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSignalingController.h; sourceTree = "<group>"; };
  1008. 2C78EF981F80F81E008AFA74 /* NCSignalingController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSignalingController.m; sourceTree = "<group>"; };
  1009. 2C78EF9A1F826B22008AFA74 /* NCCallController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCCallController.h; sourceTree = "<group>"; };
  1010. 2C78EF9B1F826B22008AFA74 /* NCCallController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCCallController.m; sourceTree = "<group>"; };
  1011. 2C78EF9D1F828C41008AFA74 /* CallViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CallViewController.h; sourceTree = "<group>"; };
  1012. 2C78EF9E1F828C41008AFA74 /* CallViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CallViewController.m; sourceTree = "<group>"; };
  1013. 2C78EF9F1F828C41008AFA74 /* CallViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CallViewController.xib; sourceTree = "<group>"; };
  1014. 2C78EFA21F86FF4A008AFA74 /* CallParticipantViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CallParticipantViewCell.h; sourceTree = "<group>"; };
  1015. 2C78EFA31F86FF4A008AFA74 /* CallParticipantViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CallParticipantViewCell.m; sourceTree = "<group>"; };
  1016. 2C78EFA41F86FF4A008AFA74 /* CallParticipantViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CallParticipantViewCell.xib; sourceTree = "<group>"; };
  1017. 2C7A1235200E0A5700864818 /* UserSettingsTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = UserSettingsTableViewCell.xib; sourceTree = "<group>"; };
  1018. 2C7A123F2017872600864818 /* AddParticipantsTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AddParticipantsTableViewController.h; sourceTree = "<group>"; };
  1019. 2C7A12402017872600864818 /* AddParticipantsTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddParticipantsTableViewController.m; sourceTree = "<group>"; };
  1020. 2C7A12412017872600864818 /* AddParticipantsTableViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AddParticipantsTableViewController.xib; sourceTree = "<group>"; };
  1021. 2C7F47AB20289B9600081CC7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  1022. 2C84BCCB29EEB9C6001BA6DA /* CallReactionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallReactionView.swift; sourceTree = "<group>"; };
  1023. 2C84BCCD29EEDCE8001BA6DA /* CallReactionView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = CallReactionView.xib; sourceTree = "<group>"; };
  1024. 2C8A2BC7221F094F00DE6D2C /* DirectoryTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DirectoryTableViewController.h; sourceTree = "<group>"; };
  1025. 2C8A2BC8221F094F00DE6D2C /* DirectoryTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DirectoryTableViewController.m; sourceTree = "<group>"; };
  1026. 2C8A2BCD221FEEFE00DE6D2C /* DirectoryTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DirectoryTableViewCell.xib; sourceTree = "<group>"; };
  1027. 2C8CDD0421C2EDE8004E2997 /* AvatarBackgroundImageView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AvatarBackgroundImageView.h; sourceTree = "<group>"; };
  1028. 2C8CDD0521C2EDE8004E2997 /* AvatarBackgroundImageView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AvatarBackgroundImageView.m; sourceTree = "<group>"; };
  1029. 2C8E2A19232174C20022BFC9 /* MessageSeparatorTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MessageSeparatorTableViewCell.h; sourceTree = "<group>"; };
  1030. 2C8E2A1A232174C20022BFC9 /* MessageSeparatorTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MessageSeparatorTableViewCell.m; sourceTree = "<group>"; };
  1031. 2C90E5631EDDE0FB0093D85A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  1032. 2C90E5661EDDE1340093D85A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  1033. 2C90E5681EDDE13A0093D85A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  1034. 2C90E5CE1EDF23A00093D85A /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
  1035. 2C90E5D01EE80C870093D85A /* AuthenticationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AuthenticationViewController.h; sourceTree = "<group>"; };
  1036. 2C90E5D11EE80C870093D85A /* AuthenticationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AuthenticationViewController.m; sourceTree = "<group>"; };
  1037. 2C9200C12474262C0050084F /* UIBarButtonItem+Badge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+Badge.h"; sourceTree = "<group>"; };
  1038. 2C9200C22474262C0050084F /* UIBarButtonItem+Badge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+Badge.m"; sourceTree = "<group>"; };
  1039. 2C928BD2268A06BB00729332 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = "<group>"; };
  1040. 2C928BD3268A06BB00729332 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1041. 2C928BD4268A0AAD00729332 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  1042. 2C928BD5268A0AAD00729332 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1043. 2C928BD6268A0B2800729332 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  1044. 2C928BD7268A0B2800729332 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1045. 2C928BD8268A0BC000729332 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/Localizable.strings; sourceTree = "<group>"; };
  1046. 2C928BD9268A0BC000729332 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1047. 2C928BDA268A103600729332 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
  1048. 2C98F77721622445001A6A73 /* RoomSearchTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RoomSearchTableViewController.h; sourceTree = "<group>"; };
  1049. 2C98F77821622445001A6A73 /* RoomSearchTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RoomSearchTableViewController.m; sourceTree = "<group>"; };
  1050. 2C98F77C216231D3001A6A73 /* RoomTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RoomTableViewCell.xib; sourceTree = "<group>"; };
  1051. 2C9B0B96217F6DBA00A4752C /* NCNotificationController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCNotificationController.h; sourceTree = "<group>"; };
  1052. 2C9B0B97217F6DBA00A4752C /* NCNotificationController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCNotificationController.m; sourceTree = "<group>"; };
  1053. 2C9B0B9A217F756B00A4752C /* NCNotification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCNotification.h; sourceTree = "<group>"; };
  1054. 2C9B0B9B217F756B00A4752C /* NCNotification.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCNotification.m; sourceTree = "<group>"; };
  1055. 2C9E6CCC1F6F34F000399B7A /* ARDSDPUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARDSDPUtils.h; sourceTree = "<group>"; };
  1056. 2C9E6CCD1F6F34F000399B7A /* ARDSDPUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ARDSDPUtils.m; sourceTree = "<group>"; };
  1057. 2CA1553F208E350300CE8EF0 /* NCChatMessage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCChatMessage.h; sourceTree = "<group>"; };
  1058. 2CA15540208E350300CE8EF0 /* NCChatMessage.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCChatMessage.m; sourceTree = "<group>"; };
  1059. 2CA15549208F2E5700CE8EF0 /* NCMessageTextView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCMessageTextView.h; sourceTree = "<group>"; };
  1060. 2CA1554A208F2E5700CE8EF0 /* NCMessageTextView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCMessageTextView.m; sourceTree = "<group>"; };
  1061. 2CA1CC8F1F014354002FE6A2 /* NCConnectionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCConnectionController.h; sourceTree = "<group>"; };
  1062. 2CA1CC901F014354002FE6A2 /* NCConnectionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCConnectionController.m; sourceTree = "<group>"; };
  1063. 2CA1CC931F014EF9002FE6A2 /* NCSettingsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSettingsController.h; sourceTree = "<group>"; };
  1064. 2CA1CC941F014EF9002FE6A2 /* NCSettingsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSettingsController.m; sourceTree = "<group>"; };
  1065. 2CA1CC961F016117002FE6A2 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
  1066. 2CA1CCA21F025F64002FE6A2 /* RoomsTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoomsTableViewController.h; sourceTree = "<group>"; };
  1067. 2CA1CCA31F025F64002FE6A2 /* RoomsTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoomsTableViewController.m; sourceTree = "<group>"; };
  1068. 2CA1CCA81F02D1A4002FE6A2 /* NCAPIController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCAPIController.h; sourceTree = "<group>"; };
  1069. 2CA1CCA91F02D1A4002FE6A2 /* NCAPIController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCAPIController.m; sourceTree = "<group>"; };
  1070. 2CA1CCAB1F067F35002FE6A2 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  1071. 2CA1CCC11F166CC5002FE6A2 /* NCRoom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCRoom.h; sourceTree = "<group>"; };
  1072. 2CA1CCC21F166CC5002FE6A2 /* NCRoom.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCRoom.m; sourceTree = "<group>"; };
  1073. 2CA1CCC91F17C503002FE6A2 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  1074. 2CA1CCCB1F181741002FE6A2 /* NCUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCUser.h; sourceTree = "<group>"; };
  1075. 2CA1CCCC1F181741002FE6A2 /* NCUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCUser.m; sourceTree = "<group>"; };
  1076. 2CA1CCCE1F1E1779002FE6A2 /* SearchTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchTableViewController.h; sourceTree = "<group>"; };
  1077. 2CA1CCCF1F1E1779002FE6A2 /* SearchTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchTableViewController.m; sourceTree = "<group>"; };
  1078. 2CA1CCD31F1E664C002FE6A2 /* ContactsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContactsTableViewCell.h; sourceTree = "<group>"; };
  1079. 2CA1CCD41F1E664C002FE6A2 /* ContactsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContactsTableViewCell.m; sourceTree = "<group>"; };
  1080. 2CA1CCD51F1E664C002FE6A2 /* ContactsTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ContactsTableViewCell.xib; sourceTree = "<group>"; };
  1081. 2CA52AC92670D02800619610 /* VoiceMessageRecordingView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VoiceMessageRecordingView.h; sourceTree = "<group>"; };
  1082. 2CA52ACA2670D02800619610 /* VoiceMessageRecordingView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VoiceMessageRecordingView.m; sourceTree = "<group>"; };
  1083. 2CA52ACC2670D07900619610 /* VoiceMessageRecordingView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = VoiceMessageRecordingView.xib; sourceTree = "<group>"; };
  1084. 2CA80EDB256C1249006BA449 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  1085. 2CA80EDC256C1249006BA449 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1086. 2CA80EDD256C1296006BA449 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  1087. 2CA80EDE256C1296006BA449 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1088. 2CA80EDF256C12E7006BA449 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  1089. 2CA80EE0256C12E7006BA449 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1090. 2CB052A02BF2297500191349 /* connecting.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; name = connecting.mp3; path = Sounds/connecting.mp3; sourceTree = SOURCE_ROOT; };
  1091. 2CB2B24D28BCB9D900A9D606 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = cs; path = cs.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
  1092. 2CB2B24E28BCB9E800A9D606 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = hu; path = hu.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
  1093. 2CB2B24F28BCBABC00A9D606 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = pl; path = pl.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
  1094. 2CB2B25128BF957100A9D606 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = tr; path = tr.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
  1095. 2CB3039C2264775E0053078A /* SLKInputAccessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKInputAccessoryView.h; sourceTree = "<group>"; };
  1096. 2CB3039D2264775E0053078A /* SLKInputAccessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLKInputAccessoryView.m; sourceTree = "<group>"; };
  1097. 2CB3039E2264775E0053078A /* SLKTextInput+Implementation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "SLKTextInput+Implementation.m"; sourceTree = "<group>"; };
  1098. 2CB3039F2264775E0053078A /* SLKTextInput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKTextInput.h; sourceTree = "<group>"; };
  1099. 2CB303A02264775E0053078A /* SLKTextInputbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKTextInputbar.h; sourceTree = "<group>"; };
  1100. 2CB303A12264775E0053078A /* SLKTextInputbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLKTextInputbar.m; sourceTree = "<group>"; };
  1101. 2CB303A22264775E0053078A /* SLKTextView+SLKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SLKTextView+SLKAdditions.h"; sourceTree = "<group>"; };
  1102. 2CB303A32264775E0053078A /* SLKTextView+SLKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "SLKTextView+SLKAdditions.m"; sourceTree = "<group>"; };
  1103. 2CB303A42264775E0053078A /* SLKTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKTextView.h; sourceTree = "<group>"; };
  1104. 2CB303A52264775E0053078A /* SLKTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLKTextView.m; sourceTree = "<group>"; };
  1105. 2CB303A62264775E0053078A /* SLKTextViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKTextViewController.h; sourceTree = "<group>"; };
  1106. 2CB303A72264775E0053078A /* SLKTextViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLKTextViewController.m; sourceTree = "<group>"; };
  1107. 2CB303A82264775E0053078A /* SLKVisibleViewProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKVisibleViewProtocol.h; sourceTree = "<group>"; };
  1108. 2CB303AB2264775E0053078A /* SLKUIConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKUIConstants.h; sourceTree = "<group>"; };
  1109. 2CB303AC2264775E0053078A /* UIResponder+SLKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIResponder+SLKAdditions.h"; sourceTree = "<group>"; };
  1110. 2CB303AD2264775E0053078A /* UIResponder+SLKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIResponder+SLKAdditions.m"; sourceTree = "<group>"; };
  1111. 2CB303AE2264775E0053078A /* UIScrollView+SLKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+SLKAdditions.h"; sourceTree = "<group>"; };
  1112. 2CB303AF2264775E0053078A /* UIScrollView+SLKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+SLKAdditions.m"; sourceTree = "<group>"; };
  1113. 2CB303B02264775E0053078A /* UIView+SLKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SLKAdditions.h"; sourceTree = "<group>"; };
  1114. 2CB303B12264775E0053078A /* UIView+SLKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SLKAdditions.m"; sourceTree = "<group>"; };
  1115. 2CB6ACB926385A3800D3D641 /* ShareLocationViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShareLocationViewController.h; sourceTree = "<group>"; };
  1116. 2CB6ACBA26385A3800D3D641 /* ShareLocationViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShareLocationViewController.m; sourceTree = "<group>"; };
  1117. 2CB6ACBB26385A3800D3D641 /* ShareLocationViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShareLocationViewController.xib; sourceTree = "<group>"; };
  1118. 2CB6ACC826401D5100D3D641 /* GeoLocationRichObject.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeoLocationRichObject.h; sourceTree = "<group>"; };
  1119. 2CB6ACC926401D5100D3D641 /* GeoLocationRichObject.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GeoLocationRichObject.m; sourceTree = "<group>"; };
  1120. 2CB6ACD82641483800D3D641 /* NCMessageLocationParameter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCMessageLocationParameter.h; sourceTree = "<group>"; };
  1121. 2CB6ACD92641483800D3D641 /* NCMessageLocationParameter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCMessageLocationParameter.m; sourceTree = "<group>"; };
  1122. 2CB6ACE62641954700D3D641 /* MapViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MapViewController.h; sourceTree = "<group>"; };
  1123. 2CB6ACE72641954700D3D641 /* MapViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MapViewController.m; sourceTree = "<group>"; };
  1124. 2CB6ACE82641954700D3D641 /* MapViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MapViewController.xib; sourceTree = "<group>"; };
  1125. 2CB997C32A052449003C41AC /* EmojiAvatarPickerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmojiAvatarPickerViewController.swift; sourceTree = "<group>"; };
  1126. 2CB997C42A052449003C41AC /* EmojiAvatarPickerViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = EmojiAvatarPickerViewController.xib; sourceTree = "<group>"; };
  1127. 2CBD0D592C8770A40013C089 /* UIImageExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIImageExtension.swift; sourceTree = "<group>"; };
  1128. 2CBF82AC1FC888FC00636459 /* NCPushNotification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCPushNotification.h; sourceTree = "<group>"; };
  1129. 2CBF82AD1FC888FC00636459 /* NCPushNotification.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCPushNotification.m; sourceTree = "<group>"; };
  1130. 2CBF82B01FCC7DBA00636459 /* CCCertificate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCertificate.h; sourceTree = "<group>"; };
  1131. 2CBF82B11FCC7DBA00636459 /* CCCertificate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCertificate.m; sourceTree = "<group>"; };
  1132. 2CC0014F24A1F0E900A20167 /* NotificationServiceExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = NotificationServiceExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1133. 2CC0015124A1F0E900A20167 /* NotificationService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NotificationService.h; sourceTree = "<group>"; };
  1134. 2CC0015224A1F0E900A20167 /* NotificationService.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NotificationService.m; sourceTree = "<group>"; };
  1135. 2CC0015424A1F0E900A20167 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1136. 2CC0015B24A1F1D700A20167 /* NotificationServiceExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = NotificationServiceExtension.entitlements; sourceTree = "<group>"; };
  1137. 2CC007B220D7AE990096D91F /* ResultMultiSelectionTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResultMultiSelectionTableViewController.h; sourceTree = "<group>"; };
  1138. 2CC007B320D7AE990096D91F /* ResultMultiSelectionTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ResultMultiSelectionTableViewController.m; sourceTree = "<group>"; };
  1139. 2CC007C420D90AE50096D91F /* RoomNameTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RoomNameTableViewCell.xib; sourceTree = "<group>"; };
  1140. 2CC007CC20E50B0A0096D91F /* MessageBodyTextView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MessageBodyTextView.h; sourceTree = "<group>"; };
  1141. 2CC007CD20E50B0A0096D91F /* MessageBodyTextView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MessageBodyTextView.m; sourceTree = "<group>"; };
  1142. 2CC1C38029C0945600C8436B /* DRCellSlideGestureRecognizer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DRCellSlideGestureRecognizer.m; sourceTree = "<group>"; };
  1143. 2CC1C38129C0945600C8436B /* DRCellSlideAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DRCellSlideAction.h; sourceTree = "<group>"; };
  1144. 2CC1C38229C0945600C8436B /* DRCellSlideActionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DRCellSlideActionView.h; sourceTree = "<group>"; };
  1145. 2CC1C38329C0945600C8436B /* DRCellSlideGestureRecognizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DRCellSlideGestureRecognizer.h; sourceTree = "<group>"; };
  1146. 2CC1C38429C0945700C8436B /* DRCellSlideAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DRCellSlideAction.m; sourceTree = "<group>"; };
  1147. 2CC1C38529C0945700C8436B /* DRCellSlideActionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DRCellSlideActionView.m; sourceTree = "<group>"; };
  1148. 2CC1FF4228147F10009F7288 /* RoomSharedItemsTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RoomSharedItemsTableViewController.swift; sourceTree = "<group>"; };
  1149. 2CC1FF4328147F10009F7288 /* RoomSharedItemsTableViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RoomSharedItemsTableViewController.xib; sourceTree = "<group>"; };
  1150. 2CC1FF4628183958009F7288 /* NCDeckCardParameter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCDeckCardParameter.h; sourceTree = "<group>"; };
  1151. 2CC1FF4728183958009F7288 /* NCDeckCardParameter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCDeckCardParameter.m; sourceTree = "<group>"; };
  1152. 2CC32E8C27F4540E00BB8C39 /* ReactionsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReactionsView.swift; sourceTree = "<group>"; };
  1153. 2CC32E9027F45AE000BB8C39 /* ReactionsViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReactionsViewCell.swift; sourceTree = "<group>"; };
  1154. 2CC32E9127F45AE000BB8C39 /* ReactionsViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ReactionsViewCell.xib; sourceTree = "<group>"; };
  1155. 2CC32E9627F5D9BD00BB8C39 /* NCChatReaction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCChatReaction.h; sourceTree = "<group>"; };
  1156. 2CC32E9727F5D9BD00BB8C39 /* NCChatReaction.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCChatReaction.m; sourceTree = "<group>"; };
  1157. 2CC7158820B837140045C789 /* PlaceholderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PlaceholderView.xib; sourceTree = "<group>"; };
  1158. 2CC7158A20B8394A0045C789 /* PlaceholderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlaceholderView.h; sourceTree = "<group>"; };
  1159. 2CC7158B20B8394A0045C789 /* PlaceholderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PlaceholderView.m; sourceTree = "<group>"; };
  1160. 2CC7159220C54D080045C789 /* ChatTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatTableViewCell.h; sourceTree = "<group>"; };
  1161. 2CC7159320C54D080045C789 /* ChatTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatTableViewCell.m; sourceTree = "<group>"; };
  1162. 2CD4F6B62C11C80600ED594F /* ContactsSearchResultTableViewContoller.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactsSearchResultTableViewContoller.swift; sourceTree = "<group>"; };
  1163. 2CD5F3222142781A006B71BF /* NCExternalSignalingController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCExternalSignalingController.h; sourceTree = "<group>"; };
  1164. 2CD5F3232142781A006B71BF /* NCExternalSignalingController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCExternalSignalingController.m; sourceTree = "<group>"; };
  1165. 2CD80F472A4304AD00919057 /* OpenConversationsTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenConversationsTableViewController.swift; sourceTree = "<group>"; };
  1166. 2CEA990828B8B5780029216A /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = de; path = de.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
  1167. 2CEDA87E26EF91460044552B /* NextcloudTalk-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NextcloudTalk-Bridging-Header.h"; sourceTree = "<group>"; };
  1168. 2CEDA88B26F492610044552B /* NSMutableAttributedString+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSMutableAttributedString+Extensions.swift"; sourceTree = "<group>"; };
  1169. 2CF8AD3D2A0010FB00A4D3E6 /* MessageTranslationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageTranslationViewController.swift; sourceTree = "<group>"; };
  1170. 2CF8AD3E2A0010FB00A4D3E6 /* MessageTranslationViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MessageTranslationViewController.xib; sourceTree = "<group>"; };
  1171. 2CF9CBFB26025F64002246EF /* TextInputTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TextInputTableViewCell.xib; sourceTree = "<group>"; };
  1172. 342600BABD1AD1FCA48B5E59 /* Pods-NextcloudTalkTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NextcloudTalkTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-NextcloudTalkTests/Pods-NextcloudTalkTests.debug.xcconfig"; sourceTree = "<group>"; };
  1173. 4202C63030F0FFBB1C16D75E /* Pods-NextcloudTalk.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NextcloudTalk.debug.xcconfig"; path = "Pods/Target Support Files/Pods-NextcloudTalk/Pods-NextcloudTalk.debug.xcconfig"; sourceTree = "<group>"; };
  1174. 4D4C7BF2F97F47B0D9094618 /* Pods-NextcloudTalk.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NextcloudTalk.release.xcconfig"; path = "Pods/Target Support Files/Pods-NextcloudTalk/Pods-NextcloudTalk.release.xcconfig"; sourceTree = "<group>"; };
  1175. 4F7C31E9D74F550EAF89931B /* libPods-NextcloudTalk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NextcloudTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  1176. 584BF273DF09DE4D5EE0DA0F /* Pods-ShareExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ShareExtension.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ShareExtension/Pods-ShareExtension.debug.xcconfig"; sourceTree = "<group>"; };
  1177. 684807120F4439797973DF73 /* libPods-ShareExtension.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ShareExtension.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  1178. 7005E22D6C2896927FC3AEEC /* libPods-NextcloudTalkTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NextcloudTalkTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  1179. 807E30752A83A90F00089D28 /* UserStatusOptionsSwiftUI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserStatusOptionsSwiftUI.swift; sourceTree = "<group>"; };
  1180. 80832B752A822E5100195A97 /* UserStatusSwiftUIView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserStatusSwiftUIView.swift; sourceTree = "<group>"; };
  1181. 80832B772A823D0700195A97 /* UserStatusMessageSwiftUIView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserStatusMessageSwiftUIView.swift; sourceTree = "<group>"; };
  1182. 82CD0527E04B844CAD762ADE /* Pods-BroadcastUploadExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BroadcastUploadExtension.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BroadcastUploadExtension/Pods-BroadcastUploadExtension.debug.xcconfig"; sourceTree = "<group>"; };
  1183. 95D756208A81284B975853EC /* Pods-ShareExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ShareExtension.release.xcconfig"; path = "Pods/Target Support Files/Pods-ShareExtension/Pods-ShareExtension.release.xcconfig"; sourceTree = "<group>"; };
  1184. 9A3D305FCD7BF7E727A62F35 /* libPods-BroadcastUploadExtension.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BroadcastUploadExtension.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  1185. 9B81BB7A4920C391CC2CACFD /* libPods-NotificationServiceExtension.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NotificationServiceExtension.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  1186. A8F95DE6635ABC1E64CA8E4A /* Pods-BroadcastUploadExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BroadcastUploadExtension.release.xcconfig"; path = "Pods/Target Support Files/Pods-BroadcastUploadExtension/Pods-BroadcastUploadExtension.release.xcconfig"; sourceTree = "<group>"; };
  1187. B7874918820589BF8FD69BED /* Pods-NextcloudTalkTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NextcloudTalkTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-NextcloudTalkTests/Pods-NextcloudTalkTests.release.xcconfig"; sourceTree = "<group>"; };
  1188. D6DF51D976DC0F681FF83F7B /* Pods-NotificationServiceExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NotificationServiceExtension.debug.xcconfig"; path = "Pods/Target Support Files/Pods-NotificationServiceExtension/Pods-NotificationServiceExtension.debug.xcconfig"; sourceTree = "<group>"; };
  1189. D86091EC1125C3057B9A299B /* Pods-NotificationServiceExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NotificationServiceExtension.release.xcconfig"; path = "Pods/Target Support Files/Pods-NotificationServiceExtension/Pods-NotificationServiceExtension.release.xcconfig"; sourceTree = "<group>"; };
  1190. DA1AEFC2270F1FA90088E519 /* DateLabelCustom.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateLabelCustom.swift; sourceTree = "<group>"; };
  1191. DA66582A27B6992F00B46B11 /* UserProfileTableViewController+AvatarSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserProfileTableViewController+AvatarSetup.swift"; sourceTree = "<group>"; };
  1192. DA66582C27B6A73800B46B11 /* UserProfileTableViewController+DelegateMethods.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserProfileTableViewController+DelegateMethods.swift"; sourceTree = "<group>"; };
  1193. DA66582E27B6B19C00B46B11 /* UserProfileTableViewController+Actions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserProfileTableViewController+Actions.swift"; sourceTree = "<group>"; };
  1194. DA66583027B6B24E00B46B11 /* UserProfileTableViewController+Utils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserProfileTableViewController+Utils.swift"; sourceTree = "<group>"; };
  1195. DA75580E278EEA1000A48A1B /* SettingsTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsTableViewController.swift; sourceTree = "<group>"; };
  1196. DA755810278EF3EF00A48A1B /* UserSettingsTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserSettingsTableViewCell.swift; sourceTree = "<group>"; };
  1197. DA8801A127A2DA00009EF248 /* UserProfileTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserProfileTableViewController.swift; sourceTree = "<group>"; };
  1198. DA8801A327AC52AC009EF248 /* TextInputTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextInputTableViewCell.swift; sourceTree = "<group>"; };
  1199. /* End PBXFileReference section */
  1200. /* Begin PBXFrameworksBuildPhase section */
  1201. 1F6D8C2D2B2E3756004376B8 /* Frameworks */ = {
  1202. isa = PBXFrameworksBuildPhase;
  1203. buildActionMask = 2147483647;
  1204. files = (
  1205. 1F759C0E2B63B9BA000534AB /* WebRTC in Frameworks */,
  1206. 1F759C092B63B9A7000534AB /* SDWebImage in Frameworks */,
  1207. 1F759C1A2B63B9D9000534AB /* CDMarkdownKit in Frameworks */,
  1208. 1F759C0B2B63B9A7000534AB /* SDWebImageSVGKitPlugin in Frameworks */,
  1209. 1F759C102B63B9D9000534AB /* OpenSSL in Frameworks */,
  1210. 1F759C142B63B9D9000534AB /* QRCodeReader in Frameworks */,
  1211. 1F759C342B63CBAA000534AB /* Realm in Frameworks */,
  1212. 1F759C162B63B9D9000534AB /* NextcloudKit in Frameworks */,
  1213. 1F759C182B63B9D9000534AB /* SwiftyAttributes in Frameworks */,
  1214. 1F759C1C2B63B9D9000534AB /* TOCropViewController in Frameworks */,
  1215. 1F759C1E2B63B9D9000534AB /* SwiftUIIntrospect in Frameworks */,
  1216. 4890175925A0D7FC2EC76CC0 /* libPods-NextcloudTalkTests.a in Frameworks */,
  1217. );
  1218. runOnlyForDeploymentPostprocessing = 0;
  1219. };
  1220. 1FD8AD872A3A162100787C16 /* Frameworks */ = {
  1221. isa = PBXFrameworksBuildPhase;
  1222. buildActionMask = 2147483647;
  1223. files = (
  1224. );
  1225. runOnlyForDeploymentPostprocessing = 0;
  1226. };
  1227. 1FF2FD582AB99CCB000C9905 /* Frameworks */ = {
  1228. isa = PBXFrameworksBuildPhase;
  1229. buildActionMask = 2147483647;
  1230. files = (
  1231. 1F759C322B63CBA5000534AB /* Realm in Frameworks */,
  1232. 1F77A6002AB9A50D007B6037 /* NextcloudKit in Frameworks */,
  1233. 1F77A60C2AB9A5BE007B6037 /* CDMarkdownKit in Frameworks */,
  1234. 1F77A5EF2AB9A41E007B6037 /* SDWebImage in Frameworks */,
  1235. 5EE5ACC02CF372AD004D7EDB /* ReplayKit.framework in Frameworks */,
  1236. 1FF1361A2BFBC841006A6101 /* SwiftyAttributes in Frameworks */,
  1237. 847EFC7236336B67A1A89358 /* libPods-BroadcastUploadExtension.a in Frameworks */,
  1238. 1F77A5F12AB9A423007B6037 /* SDWebImageSVGKitPlugin in Frameworks */,
  1239. );
  1240. runOnlyForDeploymentPostprocessing = 0;
  1241. };
  1242. 2C05747A1EDD9E8E00D9E7F2 /* Frameworks */ = {
  1243. isa = PBXFrameworksBuildPhase;
  1244. buildActionMask = 2147483647;
  1245. files = (
  1246. 2CA1CCCA1F17C503002FE6A2 /* AudioToolbox.framework in Frameworks */,
  1247. 2CCCD21D2835088F00F076CE /* OpenSSL in Frameworks */,
  1248. 1FCE3D532C9B5918009C68A9 /* SwiftyGif in Frameworks */,
  1249. 1F90EFC725FE4BE700F3FA55 /* IntentsUI.framework in Frameworks */,
  1250. 2CA1CC971F016117002FE6A2 /* Security.framework in Frameworks */,
  1251. 1F45A1212A01D8BA005FE87D /* SDWebImageSVGKitPlugin in Frameworks */,
  1252. 1F628CBA2842BAAF0083A425 /* QRCodeReader in Frameworks */,
  1253. 1FAB2E7D2AC99326001214EB /* TOCropViewController in Frameworks */,
  1254. 2C90E5CF1EDF23A00093D85A /* WebKit.framework in Frameworks */,
  1255. 2C90E5691EDDE13A0093D85A /* UIKit.framework in Frameworks */,
  1256. 80CDF8C42A8E098900CB57AE /* SwiftUIIntrospect in Frameworks */,
  1257. 2C90E5671EDDE1340093D85A /* CoreGraphics.framework in Frameworks */,
  1258. 1F45A1162A01D6EC005FE87D /* SDWebImage in Frameworks */,
  1259. 2C90E5641EDDE0FB0093D85A /* Foundation.framework in Frameworks */,
  1260. 1F468E7628DCC6C60099597B /* Dynamic in Frameworks */,
  1261. 1F759C2C2B63CB93000534AB /* Realm in Frameworks */,
  1262. 1FAB2E882ACD44D0001214EB /* WebRTC in Frameworks */,
  1263. 1F0ECBF52A68274400921E90 /* CDMarkdownKit in Frameworks */,
  1264. 1F66B72F29FABD01003FB168 /* SwiftyAttributes in Frameworks */,
  1265. 1F7AE07829142CA1009F72AD /* NextcloudKit in Frameworks */,
  1266. 9993261EDAC77481FF4EF58A /* libPods-NextcloudTalk.a in Frameworks */,
  1267. );
  1268. runOnlyForDeploymentPostprocessing = 0;
  1269. };
  1270. 2C62AFA024C08845007E460A /* Frameworks */ = {
  1271. isa = PBXFrameworksBuildPhase;
  1272. buildActionMask = 2147483647;
  1273. files = (
  1274. 1F7AE07C29142E6A009F72AD /* NextcloudKit in Frameworks */,
  1275. 1FAB2E7F2AC99367001214EB /* TOCropViewController in Frameworks */,
  1276. 1F0ECBF92A68277C00921E90 /* CDMarkdownKit in Frameworks */,
  1277. 8789AE73BFCAA413B43319C0 /* libPods-ShareExtension.a in Frameworks */,
  1278. 1F759C302B63CBA0000534AB /* Realm in Frameworks */,
  1279. 1F45A11A2A01D70E005FE87D /* SDWebImage in Frameworks */,
  1280. 5EE5ACBB2CF371E7004D7EDB /* AudioToolbox.framework in Frameworks */,
  1281. 1F45A1252A01D8F7005FE87D /* SDWebImageSVGKitPlugin in Frameworks */,
  1282. 5EE5ACBE2CF371E9004D7EDB /* IntentsUI.framework in Frameworks */,
  1283. 1F35F8F52AEEDA9800044BDA /* SwiftyAttributes in Frameworks */,
  1284. );
  1285. runOnlyForDeploymentPostprocessing = 0;
  1286. };
  1287. 2CC0014C24A1F0E900A20167 /* Frameworks */ = {
  1288. isa = PBXFrameworksBuildPhase;
  1289. buildActionMask = 2147483647;
  1290. files = (
  1291. 1F759C2E2B63CB9A000534AB /* Realm in Frameworks */,
  1292. 1F45A1232A01D8F1005FE87D /* SDWebImageSVGKitPlugin in Frameworks */,
  1293. 1F0ECBF72A68277000921E90 /* CDMarkdownKit in Frameworks */,
  1294. 1F7AE07A29142E62009F72AD /* NextcloudKit in Frameworks */,
  1295. 1F7AE07D29158878009F72AD /* IntentsUI.framework in Frameworks */,
  1296. 1FF1361C2BFBC86A006A6101 /* SwiftyAttributes in Frameworks */,
  1297. 3FCA62550CD1442D28E8A7C6 /* libPods-NotificationServiceExtension.a in Frameworks */,
  1298. 1F45A11E2A01D719005FE87D /* SDWebImage in Frameworks */,
  1299. );
  1300. runOnlyForDeploymentPostprocessing = 0;
  1301. };
  1302. /* End PBXFrameworksBuildPhase section */
  1303. /* Begin PBXGroup section */
  1304. 1F1B0F3A2BE0476C003FD766 /* Media Viewer */ = {
  1305. isa = PBXGroup;
  1306. children = (
  1307. 1F1B0F2B2BDBB3AC003FD766 /* NCMediaViewerViewController.swift */,
  1308. 1F1B0F2F2BDBC9D6003FD766 /* NCMediaViewerPageViewController.swift */,
  1309. 1F1B0F492BE047D5003FD766 /* OneWayPanGestureRecognizer.swift */,
  1310. 1F1B0F412BE047CE003FD766 /* CustomPresentable.swift */,
  1311. 1F1B0F3F2BE047CD003FD766 /* InteractionControlling.swift */,
  1312. 1F1B0F3E2BE047CD003FD766 /* ModalPresentationController.swift */,
  1313. 1F1B0F3C2BE047CD003FD766 /* ModalTransitionAnimator.swift */,
  1314. 1F1B0F3D2BE047CD003FD766 /* ModalTransitionManager.swift */,
  1315. 1F1B0F402BE047CE003FD766 /* StandardInteractionController.swift */,
  1316. 1F1B0F3B2BE047CD003FD766 /* UIViewController+Transitions.swift */,
  1317. 1F1B0F4B2BE18FF3003FD766 /* CustomPresentableNavigationController.swift */,
  1318. );
  1319. name = "Media Viewer";
  1320. sourceTree = "<group>";
  1321. };
  1322. 1F46CE2528E05ABB00E7D88E /* Reactions */ = {
  1323. isa = PBXGroup;
  1324. children = (
  1325. 2CC32E8C27F4540E00BB8C39 /* ReactionsView.swift */,
  1326. 2CC32E9027F45AE000BB8C39 /* ReactionsViewCell.swift */,
  1327. 2CC32E9127F45AE000BB8C39 /* ReactionsViewCell.xib */,
  1328. 2C44B4D027FF05A000AD1C86 /* ReactionsSummaryView.swift */,
  1329. );
  1330. name = Reactions;
  1331. sourceTree = "<group>";
  1332. };
  1333. 1F46CE2628E05AC100E7D88E /* Polls */ = {
  1334. isa = PBXGroup;
  1335. children = (
  1336. 2C57CD8328C2255000B22E03 /* PollCreationViewController.swift */,
  1337. 2C5BFBF528902E0300E75118 /* PollFooterView.swift */,
  1338. 2C5BFBF728902E3700E75118 /* PollFooterView.xib */,
  1339. 2C4747E82CB67177002828F2 /* PollMessageView.swift */,
  1340. 2C4747E12CB58FD2002828F2 /* PollMessageView.xib */,
  1341. 2C5BFBFD2891C3DF00E75118 /* PollResultsDetailsViewController.swift */,
  1342. 2C5BFBF92891598900E75118 /* PollResultTableViewCell.swift */,
  1343. 2C5BFBFA2891598900E75118 /* PollResultTableViewCell.xib */,
  1344. 2C5BFBEE288A947800E75118 /* PollVotingView.swift */,
  1345. );
  1346. name = Polls;
  1347. sourceTree = "<group>";
  1348. };
  1349. 1F46CE2728E05ACF00E7D88E /* References */ = {
  1350. isa = PBXGroup;
  1351. children = (
  1352. 1FDE7C9928DE14A200CB718E /* ReferenceView.swift */,
  1353. 1FDE7C9B28DE14B000CB718E /* ReferenceView.xib */,
  1354. 1F46CE2828E05B3200E7D88E /* ReferenceDefaultView.swift */,
  1355. 1F46CE2A28E05B3C00E7D88E /* ReferenceDefaultView.xib */,
  1356. 1FCE3D562C9C4D18009C68A9 /* ReferenceGiphyView.swift */,
  1357. 1FCE3D582C9C4D21009C68A9 /* ReferenceGiphyView.xib */,
  1358. 1F24B5A128E0648600654457 /* ReferenceGithubView.swift */,
  1359. 1F24B5A328E0649200654457 /* ReferenceGithubView.xib */,
  1360. 1FFF41612C70937B00162F4D /* ReferenceZammadView.swift */,
  1361. 1FFF41632C70938700162F4D /* ReferenceZammadView.xib */,
  1362. 1FEC459D2A02BCB900A636AA /* ReferenceGithubPermalinkView.swift */,
  1363. 1FEC459B2A02BCAE00A636AA /* ReferenceGithubPermalinkView.xib */,
  1364. 1FE0C56D2A0531270083576A /* ReferenceTalkView.swift */,
  1365. 1FE0C56B2A0531200083576A /* ReferenceTalkView.xib */,
  1366. 1FEC45A22A02F92700A636AA /* GithubPermalinkViewController.swift */,
  1367. 1FEC45A42A02F92B00A636AA /* GithubPermalinkViewController.xib */,
  1368. 1F98DF9B28E7484700E05174 /* ReferenceDeckView.swift */,
  1369. 1F98DF9D28E7485000E05174 /* ReferenceDeckView.xib */,
  1370. );
  1371. name = References;
  1372. sourceTree = "<group>";
  1373. };
  1374. 1F6D8C312B2E3756004376B8 /* NextcloudTalkTests */ = {
  1375. isa = PBXGroup;
  1376. children = (
  1377. 1F6D8C452B2F27A3004376B8 /* Common */,
  1378. 1F6D8C462B2F27BB004376B8 /* UI */,
  1379. 1F6D8C3A2B2F236D004376B8 /* Integration */,
  1380. 1F6D8C3B2B2F237F004376B8 /* Unit */,
  1381. );
  1382. path = NextcloudTalkTests;
  1383. sourceTree = "<group>";
  1384. };
  1385. 1F6D8C3A2B2F236D004376B8 /* Integration */ = {
  1386. isa = PBXGroup;
  1387. children = (
  1388. 1F6D8C422B2F26EE004376B8 /* Helpers.swift */,
  1389. 1F6D8C4A2B2F5B61004376B8 /* TestBase.swift */,
  1390. 1F6D8C322B2E3756004376B8 /* IntegrationRoomTest.swift */,
  1391. 1F6629F92C17700E001C6C0E /* IntegrationRoomsManagerTest.swift */,
  1392. 1F6D8C4C2B2F8FE5004376B8 /* IntegrationChatTest.swift */,
  1393. );
  1394. path = Integration;
  1395. sourceTree = "<group>";
  1396. };
  1397. 1F6D8C3B2B2F237F004376B8 /* Unit */ = {
  1398. isa = PBXGroup;
  1399. children = (
  1400. 1F8AAC602C5962BE004DA20A /* Chat */,
  1401. 1FBC3BE82B61BD09003909E0 /* TestBaseRealm.swift */,
  1402. 1FB7B9862BE441450093CE98 /* UIViewExtensions.swift */,
  1403. 1F5CDAE62B3B05110040ECC0 /* UnitColorGeneratorTest.swift */,
  1404. 1F1B0F242BD94A0D003FD766 /* UnitDarwinCenterTest.swift */,
  1405. 1F0B0A762BA26BE10073FF8D /* UnitMentionSuggestionTest.swift */,
  1406. 1FF4DAA72C08DE3A00C1B952 /* UnitNCRoomsManagerTest.swift */,
  1407. 1F1DF8402C63C25900E5EA86 /* UnitNCDatabaseManager.swift */,
  1408. 1F8AAC612C596308004DA20A /* UnitSignalingSettings.swift */,
  1409. );
  1410. path = Unit;
  1411. sourceTree = "<group>";
  1412. };
  1413. 1F6D8C452B2F27A3004376B8 /* Common */ = {
  1414. isa = PBXGroup;
  1415. children = (
  1416. 1F6D8C402B2F26D5004376B8 /* TestConstants.swift */,
  1417. );
  1418. path = Common;
  1419. sourceTree = "<group>";
  1420. };
  1421. 1F6D8C462B2F27BB004376B8 /* UI */ = {
  1422. isa = PBXGroup;
  1423. children = (
  1424. 1F6D8C3C2B2F23C4004376B8 /* Helpers.swift */,
  1425. 1F6D8C472B2F2F69004376B8 /* AAAALoginTest.swift */,
  1426. 1FD8AD8C2A3A162100787C16 /* UIRoomTest.swift */,
  1427. );
  1428. path = UI;
  1429. sourceTree = "<group>";
  1430. };
  1431. 1F77A60E2AB9B14D007B6037 /* Screensharing */ = {
  1432. isa = PBXGroup;
  1433. children = (
  1434. 1F77A6202AB9EB06007B6037 /* SocketConnection.h */,
  1435. 1F77A6212AB9EB06007B6037 /* SocketConnection.m */,
  1436. 1F77A61C2AB9B301007B6037 /* CapturerEventsDelegate.h */,
  1437. 1F77A6122AB9B161007B6037 /* ScreenCaptureController.h */,
  1438. 1F77A6112AB9B161007B6037 /* ScreenCaptureController.m */,
  1439. 1F77A6142AB9B161007B6037 /* ScreenCapturer.h */,
  1440. 1F77A6132AB9B161007B6037 /* ScreenCapturer.m */,
  1441. 1F77A6252ABA0CD9007B6037 /* NCScreensharingController.h */,
  1442. 1F77A6262ABA0CD9007B6037 /* NCScreensharingController.m */,
  1443. );
  1444. name = Screensharing;
  1445. sourceTree = "<group>";
  1446. };
  1447. 1F8AAC602C5962BE004DA20A /* Chat */ = {
  1448. isa = PBXGroup;
  1449. children = (
  1450. 1FB7B9882BE442400093CE98 /* UnitBaseChatTableViewCellTest.swift */,
  1451. 1FBC3BE42B61ACD5003909E0 /* UnitBaseChatViewControllerTest.swift */,
  1452. 1FB7B9842BE2EE020093CE98 /* UnitChatViewControllerTest.swift */,
  1453. 1FF4DAA52C08D81D00C1B952 /* UnitNCChatMessageTest.swift */,
  1454. );
  1455. path = Chat;
  1456. sourceTree = "<group>";
  1457. };
  1458. 1F90EFB925FE398B00F3FA55 /* Siri */ = {
  1459. isa = PBXGroup;
  1460. children = (
  1461. 1F90EFBA25FE39F800F3FA55 /* NCIntentController.h */,
  1462. 1F90EFBB25FE39F800F3FA55 /* NCIntentController.m */,
  1463. );
  1464. name = Siri;
  1465. sourceTree = "<group>";
  1466. };
  1467. 1FB78E242B6AE58100B0D69D /* Federation */ = {
  1468. isa = PBXGroup;
  1469. children = (
  1470. 1FADECD92B8227B1007AD94B /* FederationInvitationCell.xib */,
  1471. 1FADECD72B82269E007AD94B /* FederationInvitationCell.swift */,
  1472. 1FADECD52B821E24007AD94B /* FederationInvitationTableViewController.swift */,
  1473. 1FB78E252B6AE5A600B0D69D /* FederationInvitation.swift */,
  1474. );
  1475. name = Federation;
  1476. sourceTree = "<group>";
  1477. };
  1478. 1FB7B9932BF0DE4A0093CE98 /* Banned Actors */ = {
  1479. isa = PBXGroup;
  1480. children = (
  1481. 1FB7B99B2BF0DF360093CE98 /* BannedActorCell.xib */,
  1482. 1FB7B9992BF0DF290093CE98 /* BannedActorCell.swift */,
  1483. 1FB7B9942BF0DF1C0093CE98 /* BannedActorTableViewController.swift */,
  1484. 1FB7B98D2BF0CBA60093CE98 /* BannedActor.swift */,
  1485. );
  1486. name = "Banned Actors";
  1487. sourceTree = "<group>";
  1488. };
  1489. 1FF2FD5E2AB99CCB000C9905 /* BroadcastUploadExtension */ = {
  1490. isa = PBXGroup;
  1491. children = (
  1492. 1F77A61F2AB9D82B007B6037 /* BroadcastUploadExtension.entitlements */,
  1493. 1FF2FD7A2AB99E4D000C9905 /* Atomic.swift */,
  1494. 1FF2FD792AB99E4D000C9905 /* DarwinNotificationCenter.swift */,
  1495. 1F77A6232ABA0003007B6037 /* SampleHandler.swift */,
  1496. 1FF2FD7B2AB99E4D000C9905 /* SampleUploader.swift */,
  1497. 1FF2FD7D2AB99E4D000C9905 /* SocketConnection.swift */,
  1498. 1FF2FD612AB99CCB000C9905 /* Info.plist */,
  1499. );
  1500. path = BroadcastUploadExtension;
  1501. sourceTree = "<group>";
  1502. };
  1503. 2C0574741EDD9E8E00D9E7F2 = {
  1504. isa = PBXGroup;
  1505. children = (
  1506. 2CC0015024A1F0E900A20167 /* NotificationServiceExtension */,
  1507. 2C62AFA424C08845007E460A /* ShareExtension */,
  1508. 1FF2FD5E2AB99CCB000C9905 /* BroadcastUploadExtension */,
  1509. 1F6D8C312B2E3756004376B8 /* NextcloudTalkTests */,
  1510. 2C05747E1EDD9E8E00D9E7F2 /* Products */,
  1511. 2C05749C1EDDA01700D9E7F2 /* ThirdParty */,
  1512. 2C05747F1EDD9E8E00D9E7F2 /* NextcloudTalk */,
  1513. 2C90E5621EDDE0FB0093D85A /* Frameworks */,
  1514. 926177EBCFB97EA1273DEDB9 /* Pods */,
  1515. );
  1516. sourceTree = "<group>";
  1517. };
  1518. 2C05747E1EDD9E8E00D9E7F2 /* Products */ = {
  1519. isa = PBXGroup;
  1520. children = (
  1521. 2C05747D1EDD9E8E00D9E7F2 /* NextcloudTalk.app */,
  1522. 2CC0014F24A1F0E900A20167 /* NotificationServiceExtension.appex */,
  1523. 2C62AFA324C08845007E460A /* ShareExtension.appex */,
  1524. 1FD8AD8A2A3A162100787C16 /* NextcloudTalkUITests.xctest */,
  1525. 1FF2FD5B2AB99CCB000C9905 /* BroadcastUploadExtension.appex */,
  1526. 1F6D8C302B2E3756004376B8 /* NextcloudTalkTests.xctest */,
  1527. );
  1528. name = Products;
  1529. sourceTree = "<group>";
  1530. };
  1531. 2C05747F1EDD9E8E00D9E7F2 /* NextcloudTalk */ = {
  1532. isa = PBXGroup;
  1533. children = (
  1534. 2C0574831EDD9E8E00D9E7F2 /* AppDelegate.h */,
  1535. 2C0574841EDD9E8E00D9E7F2 /* AppDelegate.m */,
  1536. 2C5521691F7D48480077E587 /* Calls */,
  1537. 2CF0679E208A2A430070A79B /* Chat */,
  1538. 2C5521671F7D47BA0077E587 /* Contacts */,
  1539. 2C40281622832EF90000DDFC /* Database */,
  1540. 1FB78E242B6AE58100B0D69D /* Federation */,
  1541. 2C8A2BCA221F096200DE6D2C /* File sharing */,
  1542. 2C5521681F7D481C0077E587 /* Login */,
  1543. 2CB6ACA72638489300D3D641 /* Maps */,
  1544. 1F1B0F3A2BE0476C003FD766 /* Media Viewer */,
  1545. 2C55216B1F7D48970077E587 /* Network */,
  1546. 2C9B0B99217F6E3400A4752C /* Notifications */,
  1547. 2C5521661F7D47A50077E587 /* Rooms */,
  1548. 1F77A60E2AB9B14D007B6037 /* Screensharing */,
  1549. 2CBF82B31FCC7DC100636459 /* Security */,
  1550. 2C55216A1F7D48850077E587 /* Settings */,
  1551. 1F90EFB925FE398B00F3FA55 /* Siri */,
  1552. 2C0574801EDD9E8E00D9E7F2 /* Supporting Files */,
  1553. 2C0633102046CCA60043481A /* User Interface */,
  1554. 2C78EF961F7E720A008AFA74 /* WebRTC */,
  1555. 2C6085C11FB1063700B36A6E /* NextcloudTalk.entitlements */,
  1556. 2CA1CCAB1F067F35002FE6A2 /* Images.xcassets */,
  1557. 2C0574941EDD9E8E00D9E7F2 /* Info.plist */,
  1558. 1FADECD42B7EACCB007AD94B /* PrivacyInfo.xcprivacy */,
  1559. 2C05748C1EDD9E8E00D9E7F2 /* Main.storyboard */,
  1560. 2C1D13A1253760EE00EC0533 /* LaunchScreen.xib */,
  1561. 2CB052A02BF2297500191349 /* connecting.mp3 */,
  1562. 2C7F47AC20289B9600081CC7 /* Localizable.strings */,
  1563. 2C330374255E6EBC00BDB4E4 /* InfoPlist.strings */,
  1564. 2C4446EE265D454200DF1DBC /* NotificationCenterNotifications.h */,
  1565. 2C4446EF265D454200DF1DBC /* NotificationCenterNotifications.m */,
  1566. 2CEDA87E26EF91460044552B /* NextcloudTalk-Bridging-Header.h */,
  1567. 1FDCC3EC29EC7DD400DEB39B /* NextcloudTalk-Bridging-Header-Extensions.h */,
  1568. 2C477C1828B79D980044DEB4 /* Localizable.stringsdict */,
  1569. 1FAB2EEF2AD1EAA3001214EB /* RLMSupport.swift */,
  1570. );
  1571. path = NextcloudTalk;
  1572. sourceTree = "<group>";
  1573. };
  1574. 2C0574801EDD9E8E00D9E7F2 /* Supporting Files */ = {
  1575. isa = PBXGroup;
  1576. children = (
  1577. 2C0574811EDD9E8E00D9E7F2 /* main.m */,
  1578. );
  1579. name = "Supporting Files";
  1580. sourceTree = "<group>";
  1581. };
  1582. 2C05749C1EDDA01700D9E7F2 /* ThirdParty */ = {
  1583. isa = PBXGroup;
  1584. children = (
  1585. 2CC1C37F29C0945600C8436B /* DRCellSlideGestureRecognizer */,
  1586. 2CB302F92264775E0053078A /* SlackTextViewController */,
  1587. 2C4D7D601F2F7C2C00FF4A0D /* AppRTC */,
  1588. );
  1589. name = ThirdParty;
  1590. sourceTree = "<group>";
  1591. };
  1592. 2C0633102046CCA60043481A /* User Interface */ = {
  1593. isa = PBXGroup;
  1594. children = (
  1595. 1F1B0F262BDA61C5003FD766 /* AllocationTracker.swift */,
  1596. 1F5813F628EB23EF00318FC3 /* NCSplitViewController.swift */,
  1597. 1F5813F728EB23EF00318FC3 /* NCSplitViewPlaceholderViewController.swift */,
  1598. 2C06330D2046CC8B0043481A /* NCUserInterfaceController.h */,
  1599. 2C06330E2046CC8B0043481A /* NCUserInterfaceController.m */,
  1600. 2C3780C1210F49DC003F9AE8 /* HeaderWithButton.h */,
  1601. 2C3780C2210F49DC003F9AE8 /* HeaderWithButton.m */,
  1602. 2C3780C4210F4A26003F9AE8 /* HeaderWithButton.xib */,
  1603. 2CC7158A20B8394A0045C789 /* PlaceholderView.h */,
  1604. 2CC7158B20B8394A0045C789 /* PlaceholderView.m */,
  1605. 2CC7158820B837140045C789 /* PlaceholderView.xib */,
  1606. 2C9200C12474262C0050084F /* UIBarButtonItem+Badge.h */,
  1607. 2C9200C22474262C0050084F /* UIBarButtonItem+Badge.m */,
  1608. 2C1EF36925505DCE007C9768 /* NCNavigationController.h */,
  1609. 2C1EF36A25505DCE007C9768 /* NCNavigationController.m */,
  1610. 1F3D3B21255F109E00230DAE /* BarButtonItemWithActivity.h */,
  1611. 1F3D3B20255F109E00230DAE /* BarButtonItemWithActivity.m */,
  1612. 2C36A048261487BC0026F04A /* DetailedOptionsSelectorTableViewController.h */,
  1613. 2C36A049261487BC0026F04A /* DetailedOptionsSelectorTableViewController.m */,
  1614. 2CEDA88B26F492610044552B /* NSMutableAttributedString+Extensions.swift */,
  1615. 1F61C76A285F65E1004D74D8 /* SimpleTableViewController.swift */,
  1616. 1FB6678E28CE381300D29F8D /* SubtitleTableViewCell.swift */,
  1617. 1F468E7728DCC7310099597B /* EmojiTextField.swift */,
  1618. 1F371A362A7B921A006CBFB3 /* DatePickerTextField.swift */,
  1619. 2C16A82B28E7284D00EDE523 /* NCButton.swift */,
  1620. 1F11FB7129C07B04001E21E7 /* NCZoomableView.swift */,
  1621. 1F8995B22970644C00CABA33 /* ColorGenerator.swift */,
  1622. 1F1C0D8829AFB89900D17C6D /* VLCKitVideoViewController.swift */,
  1623. 1F1C0D8629AFB88800D17C6D /* VLCKitVideoViewController.xib */,
  1624. 1F90DA0329E9A28E00E81E3D /* AvatarManager.swift */,
  1625. 1FDCC3D329EBF6E700DEB39B /* AvatarImageView.swift */,
  1626. 1FDCC3EF29ECB4CE00DEB39B /* AvatarButton.swift */,
  1627. 1F3C41A229EDF05700F58435 /* AvatarEditView.swift */,
  1628. 1F3C41A429EDF0B800F58435 /* AvatarEditView.xib */,
  1629. 2CB997C32A052449003C41AC /* EmojiAvatarPickerViewController.swift */,
  1630. 2CB997C42A052449003C41AC /* EmojiAvatarPickerViewController.xib */,
  1631. 1FAB2EED2AD1BC1B001214EB /* UIControlExtensions.swift */,
  1632. 1FDFC94C2BA50B9100670DF4 /* UIFontExtension.swift */,
  1633. 2CBD0D592C8770A40013C089 /* UIImageExtension.swift */,
  1634. 1F1B0F312BDC57E3003FD766 /* UIPageViewControllerExtension.swift */,
  1635. 1F1B0F352BDD8B9C003FD766 /* NCActivityIndicator.swift */,
  1636. );
  1637. name = "User Interface";
  1638. sourceTree = "<group>";
  1639. };
  1640. 2C40281622832EF90000DDFC /* Database */ = {
  1641. isa = PBXGroup;
  1642. children = (
  1643. 2C40281322832EED0000DDFC /* NCDatabaseManager.h */,
  1644. 2C40281422832EED0000DDFC /* NCDatabaseManager.m */,
  1645. 1FDB47F72C9C7E3F00D6F423 /* NCDatabaseManager.swift */,
  1646. 2C4446D12658147900DF1DBC /* TalkAccount.h */,
  1647. 2C4446D22658147900DF1DBC /* TalkAccount.m */,
  1648. 1FDB47F52C9C71CE00D6F423 /* TalkAccount.swift */,
  1649. 1F1B50452B90CDE600B0F2F4 /* TalkCapabilities.h */,
  1650. 1F1B50462B90CDF800B0F2F4 /* TalkCapabilities.m */,
  1651. 2C4446D6265814D100DF1DBC /* ServerCapabilities.h */,
  1652. 2C4446D7265814D100DF1DBC /* ServerCapabilities.m */,
  1653. 1F1B50422B9095C900B0F2F4 /* FederatedCapabilities.h */,
  1654. 1F1B50432B9095D100B0F2F4 /* FederatedCapabilities.m */,
  1655. 2C4446DB2658158000DF1DBC /* NCChatBlock.h */,
  1656. 2C4446DC2658158000DF1DBC /* NCChatBlock.m */,
  1657. 1FD9182828C55A73009092AB /* BGTaskHelper.swift */,
  1658. );
  1659. name = Database;
  1660. sourceTree = "<group>";
  1661. };
  1662. 2C4D7D601F2F7C2C00FF4A0D /* AppRTC */ = {
  1663. isa = PBXGroup;
  1664. children = (
  1665. 2C4D7D611F2F7C2C00FF4A0D /* ARDCaptureController.h */,
  1666. 2C4D7D621F2F7C2C00FF4A0D /* ARDCaptureController.m */,
  1667. 2C9E6CCC1F6F34F000399B7A /* ARDSDPUtils.h */,
  1668. 2C9E6CCD1F6F34F000399B7A /* ARDSDPUtils.m */,
  1669. 2C4D7D641F2F7DBC00FF4A0D /* ARDSettingsModel.h */,
  1670. 2C4D7D651F2F7DBC00FF4A0D /* ARDSettingsModel.m */,
  1671. 2C4D7D661F2F7DBC00FF4A0D /* ARDSettingsModel+Private.h */,
  1672. 2C4D7D671F2F7DBC00FF4A0D /* ARDSettingsStore.h */,
  1673. 2C4D7D681F2F7DBC00FF4A0D /* ARDSettingsStore.m */,
  1674. 2C4D7D741F30F7B600FF4A0D /* ARDUtilities.h */,
  1675. 2C4D7D751F30F7B600FF4A0D /* ARDUtilities.m */,
  1676. 2C4D7D6D1F309DA500FF4A0D /* RTCIceCandidate+JSON.h */,
  1677. 2C4D7D6E1F309DA500FF4A0D /* RTCIceCandidate+JSON.m */,
  1678. 2C4D7D6F1F309DA500FF4A0D /* RTCSessionDescription+JSON.h */,
  1679. 2C4D7D701F309DA500FF4A0D /* RTCSessionDescription+JSON.m */,
  1680. );
  1681. name = AppRTC;
  1682. path = ThirdParty/AppRTC;
  1683. sourceTree = "<group>";
  1684. };
  1685. 2C5521661F7D47A50077E587 /* Rooms */ = {
  1686. isa = PBXGroup;
  1687. children = (
  1688. 1FB7B9932BF0DE4A0093CE98 /* Banned Actors */,
  1689. 1FE7DE312BB459B10040EE12 /* RoomInvitationViewCell.xib */,
  1690. 1FE7DE2F2BB4598F0040EE12 /* RoomInvitationViewCell.swift */,
  1691. 2C06BF6B20AEB0030031EB46 /* RoundedNumberView.h */,
  1692. 2C06BF6A20AEB0030031EB46 /* RoundedNumberView.m */,
  1693. 2CA1CCC11F166CC5002FE6A2 /* NCRoom.h */,
  1694. 2CA1CCC21F166CC5002FE6A2 /* NCRoom.m */,
  1695. 1FF1360E2BFB4F8C006A6101 /* NCRoom.swift */,
  1696. 2CA1CCA21F025F64002FE6A2 /* RoomsTableViewController.h */,
  1697. 2CA1CCA31F025F64002FE6A2 /* RoomsTableViewController.m */,
  1698. 1FF4DA9A2C032AAC00C1B952 /* RoomTableViewCell.swift */,
  1699. 2C98F77C216231D3001A6A73 /* RoomTableViewCell.xib */,
  1700. 2C06BF5B20A89F510031EB46 /* NCRoomsManager.h */,
  1701. 2C06BF5C20A89F510031EB46 /* NCRoomsManager.m */,
  1702. 1FD6F83B2B825069004048AB /* NCRoomsManagerExtensions.swift */,
  1703. 1FF4DA9F2C03351E00C1B952 /* RoomNameTableViewCell.swift */,
  1704. 2CC007C420D90AE50096D91F /* RoomNameTableViewCell.xib */,
  1705. 1FF4DAA12C0338D000C1B952 /* RoomDescriptionTableViewCell.swift */,
  1706. 2C4CDCCB269618230023F403 /* RoomDescriptionTableViewCell.xib */,
  1707. 2C440D0E20EA4A770005F9BB /* RoomInfoTableViewController.h */,
  1708. 2C440D0F20EA4A770005F9BB /* RoomInfoTableViewController.m */,
  1709. 2C440D1020EA4A770005F9BB /* RoomInfoTableViewController.xib */,
  1710. 2C3780BB2107209C003F9AE8 /* NCRoomParticipant.h */,
  1711. 2C3780BC2107209C003F9AE8 /* NCRoomParticipants.m */,
  1712. 2C98F77721622445001A6A73 /* RoomSearchTableViewController.h */,
  1713. 2C98F77821622445001A6A73 /* RoomSearchTableViewController.m */,
  1714. 2CC1FF4228147F10009F7288 /* RoomSharedItemsTableViewController.swift */,
  1715. 2CC1FF4328147F10009F7288 /* RoomSharedItemsTableViewController.xib */,
  1716. 1F3C419E29EDAC7D00F58435 /* RoomAvatarInfoTableViewController.swift */,
  1717. 1F3C41A029EDAC8800F58435 /* RoomAvatarInfoTableViewController.xib */,
  1718. 2CD80F472A4304AD00919057 /* OpenConversationsTableViewController.swift */,
  1719. 2C2D7A162B8C9C0000642373 /* RoomCreationTableViewController.swift */,
  1720. 2C2145672BF6B8E900470C0C /* NewRoomTableViewController.swift */,
  1721. );
  1722. name = Rooms;
  1723. sourceTree = "<group>";
  1724. };
  1725. 2C5521671F7D47BA0077E587 /* Contacts */ = {
  1726. isa = PBXGroup;
  1727. children = (
  1728. 2CA1CCD31F1E664C002FE6A2 /* ContactsTableViewCell.h */,
  1729. 2CA1CCD41F1E664C002FE6A2 /* ContactsTableViewCell.m */,
  1730. 2CA1CCD51F1E664C002FE6A2 /* ContactsTableViewCell.xib */,
  1731. 2CA1CCCB1F181741002FE6A2 /* NCUser.h */,
  1732. 2CA1CCCC1F181741002FE6A2 /* NCUser.m */,
  1733. 2CA1CCCE1F1E1779002FE6A2 /* SearchTableViewController.h */,
  1734. 2CA1CCCF1F1E1779002FE6A2 /* SearchTableViewController.m */,
  1735. 2C7A123F2017872600864818 /* AddParticipantsTableViewController.h */,
  1736. 2C7A12402017872600864818 /* AddParticipantsTableViewController.m */,
  1737. 2C7A12412017872600864818 /* AddParticipantsTableViewController.xib */,
  1738. 2CC007B220D7AE990096D91F /* ResultMultiSelectionTableViewController.h */,
  1739. 2CC007B320D7AE990096D91F /* ResultMultiSelectionTableViewController.m */,
  1740. 2C1ABDCC257E939600AEDFB6 /* NCContact.h */,
  1741. 2C1ABDCD257E939600AEDFB6 /* NCContact.m */,
  1742. 2C1ABDC4257A7CF000AEDFB6 /* NCContactsManager.h */,
  1743. 2C1ABDC5257A7CF000AEDFB6 /* NCContactsManager.m */,
  1744. 2C1ABDE3257F883400AEDFB6 /* ABContact.h */,
  1745. 2C1ABDE4257F883400AEDFB6 /* ABContact.m */,
  1746. 2CD4F6B62C11C80600ED594F /* ContactsSearchResultTableViewContoller.swift */,
  1747. );
  1748. name = Contacts;
  1749. sourceTree = "<group>";
  1750. };
  1751. 2C5521681F7D481C0077E587 /* Login */ = {
  1752. isa = PBXGroup;
  1753. children = (
  1754. 2C90E5D01EE80C870093D85A /* AuthenticationViewController.h */,
  1755. 2C90E5D11EE80C870093D85A /* AuthenticationViewController.m */,
  1756. 2C0574A11EDDA2E300D9E7F2 /* LoginViewController.h */,
  1757. 2C0574A21EDDA2E300D9E7F2 /* LoginViewController.m */,
  1758. 2C0574A31EDDA2E300D9E7F2 /* LoginViewController.xib */,
  1759. 1FA20C89284001D80062B4F3 /* DebounceWebView.swift */,
  1760. 1FB52E752842C75E00AC741B /* QRCodeLoginController.swift */,
  1761. );
  1762. name = Login;
  1763. sourceTree = "<group>";
  1764. };
  1765. 2C5521691F7D48480077E587 /* Calls */ = {
  1766. isa = PBXGroup;
  1767. children = (
  1768. 2C78EFA21F86FF4A008AFA74 /* CallParticipantViewCell.h */,
  1769. 2C78EFA31F86FF4A008AFA74 /* CallParticipantViewCell.m */,
  1770. 2C78EFA41F86FF4A008AFA74 /* CallParticipantViewCell.xib */,
  1771. 2C78EF9D1F828C41008AFA74 /* CallViewController.h */,
  1772. 2C78EF9E1F828C41008AFA74 /* CallViewController.m */,
  1773. 2C78EF9F1F828C41008AFA74 /* CallViewController.xib */,
  1774. 2C78EF9A1F826B22008AFA74 /* NCCallController.h */,
  1775. 2C78EF9B1F826B22008AFA74 /* NCCallController.m */,
  1776. 2C8CDD0421C2EDE8004E2997 /* AvatarBackgroundImageView.h */,
  1777. 2C8CDD0521C2EDE8004E2997 /* AvatarBackgroundImageView.m */,
  1778. 2C4987BB21E640E20060AC27 /* CallKitManager.h */,
  1779. 2C4987BC21E640E20060AC27 /* CallKitManager.m */,
  1780. 2C4DE9F021F732B40096940D /* NCAudioController.h */,
  1781. 2C4DE9F121F732B40096940D /* NCAudioController.m */,
  1782. 2C4446FA265D5BEF00DF1DBC /* CallConstants.h */,
  1783. 1FA732FB2966CBB7003D2103 /* CallFlowLayout.swift */,
  1784. 2C84BCCB29EEB9C6001BA6DA /* CallReactionView.swift */,
  1785. 2C84BCCD29EEDCE8001BA6DA /* CallReactionView.xib */,
  1786. 1FE94733293CE55600D6584C /* NCCameraController.swift */,
  1787. );
  1788. name = Calls;
  1789. sourceTree = "<group>";
  1790. };
  1791. 2C55216A1F7D48850077E587 /* Settings */ = {
  1792. isa = PBXGroup;
  1793. children = (
  1794. 2C2A788C2359CC8800EEB797 /* NCAppBranding.h */,
  1795. 2C2A788D2359CC8800EEB797 /* NCAppBranding.m */,
  1796. 2CA1CC931F014EF9002FE6A2 /* NCSettingsController.h */,
  1797. 2CA1CC941F014EF9002FE6A2 /* NCSettingsController.m */,
  1798. 1FDDB0E42AFD046600FBAFB7 /* NCUtils.swift */,
  1799. DA75580E278EEA1000A48A1B /* SettingsTableViewController.swift */,
  1800. 1F61C766285E35A6004D74D8 /* DiagnosticsTableViewController.swift */,
  1801. 1F7625E42901B0DB00834869 /* CallsFromOldAccountViewController.swift */,
  1802. 1F7625E62901B0E800834869 /* CallsFromOldAccountViewController.xib */,
  1803. 2C7A1235200E0A5700864818 /* UserSettingsTableViewCell.xib */,
  1804. DA755810278EF3EF00A48A1B /* UserSettingsTableViewCell.swift */,
  1805. 2C78E9E125120DE500E3D4CA /* NCUserStatus.h */,
  1806. 2C78E9E225120DE500E3D4CA /* NCUserStatus.m */,
  1807. 1FD6F83D2B87B712004048AB /* NCUserStatusExtensions.swift */,
  1808. 807E30752A83A90F00089D28 /* UserStatusOptionsSwiftUI.swift */,
  1809. 80832B752A822E5100195A97 /* UserStatusSwiftUIView.swift */,
  1810. 80832B772A823D0700195A97 /* UserStatusMessageSwiftUIView.swift */,
  1811. DA8801A127A2DA00009EF248 /* UserProfileTableViewController.swift */,
  1812. DA66582A27B6992F00B46B11 /* UserProfileTableViewController+AvatarSetup.swift */,
  1813. DA66582C27B6A73800B46B11 /* UserProfileTableViewController+DelegateMethods.swift */,
  1814. DA66582E27B6B19C00B46B11 /* UserProfileTableViewController+Actions.swift */,
  1815. DA66583027B6B24E00B46B11 /* UserProfileTableViewController+Utils.swift */,
  1816. DA8801A327AC52AC009EF248 /* TextInputTableViewCell.swift */,
  1817. 2CF9CBFB26025F64002246EF /* TextInputTableViewCell.xib */,
  1818. 2C4446EA265D25BA00DF1DBC /* NCKeyChainController.h */,
  1819. 2C4446EB265D25BA00DF1DBC /* NCKeyChainController.m */,
  1820. 2C444701265D641300DF1DBC /* NCUserDefaults.h */,
  1821. 2C444702265D641300DF1DBC /* NCUserDefaults.m */,
  1822. );
  1823. name = Settings;
  1824. sourceTree = "<group>";
  1825. };
  1826. 2C55216B1F7D48970077E587 /* Network */ = {
  1827. isa = PBXGroup;
  1828. children = (
  1829. 2CA1CCA81F02D1A4002FE6A2 /* NCAPIController.h */,
  1830. 2CA1CCA91F02D1A4002FE6A2 /* NCAPIController.m */,
  1831. 1FB78E1E2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift */,
  1832. 2CA1CC8F1F014354002FE6A2 /* NCConnectionController.h */,
  1833. 2CA1CC901F014354002FE6A2 /* NCConnectionController.m */,
  1834. 1FF4DA862C02626D00C1B952 /* NCBaseSessionManager.swift */,
  1835. 1FF4DA812C025DB900C1B952 /* NCAPISessionManager.swift */,
  1836. 1FF4DA8B2C0263A200C1B952 /* NCPushProxySessionManager.swift */,
  1837. 1FF4DA902C02677C00C1B952 /* NCImageSessionManager.swift */,
  1838. 2C5BFBE928772A9A00E75118 /* NCUnifiedSearchController.swift */,
  1839. 1FF4DA952C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift */,
  1840. 1FF4DAA92C0A114900C1B952 /* OcsResponse.swift */,
  1841. );
  1842. name = Network;
  1843. sourceTree = "<group>";
  1844. };
  1845. 2C62AFA424C08845007E460A /* ShareExtension */ = {
  1846. isa = PBXGroup;
  1847. children = (
  1848. 2C1ABD8325769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.h */,
  1849. 2C1ABD8025769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.m */,
  1850. 2C1ABD8425769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.xib */,
  1851. 2C1ABD8125769E7D00AEDFB6 /* ShareItem.h */,
  1852. 2C1ABD8525769E7D00AEDFB6 /* ShareItem.m */,
  1853. 2C1ABD7F25769E7C00AEDFB6 /* ShareItemController.h */,
  1854. 2C1ABD8225769E7D00AEDFB6 /* ShareItemController.m */,
  1855. 2C3195BB24C1F58A0066F221 /* ShareExtension.entitlements */,
  1856. 2C62AFAB24C08845007E460A /* Info.plist */,
  1857. 2C62AFB524C1A449007E460A /* Share.storyboard */,
  1858. 2C62AFB724C1A4E6007E460A /* ShareViewController.h */,
  1859. 2C62AFB824C1A4E6007E460A /* ShareViewController.m */,
  1860. 2C3195BF24C5E2100066F221 /* ShareTableViewCell.h */,
  1861. 2C3195C024C5E2100066F221 /* ShareTableViewCell.m */,
  1862. 2C3195C124C5E2100066F221 /* ShareTableViewCell.xib */,
  1863. 1F35F8DF2AEEB9DE00044BDA /* ShareConfirmationViewController.swift */,
  1864. 1FDDB0D82AF440DD00FBAFB7 /* BoundsChangedFlowLayout.swift */,
  1865. );
  1866. path = ShareExtension;
  1867. sourceTree = "<group>";
  1868. };
  1869. 2C6DEAB2243CCC7F00AE8437 /* Chat cells */ = {
  1870. isa = PBXGroup;
  1871. children = (
  1872. 1F4DD3EA2571C688007DC98E /* EmojiUtils.swift */,
  1873. 1F1B50332B8E069800B0F2F4 /* BaseChatTableViewCell.swift */,
  1874. 1F1B50372B8E070100B0F2F4 /* BaseChatTableViewCell.xib */,
  1875. 1F1B503D2B8FB12100B0F2F4 /* BaseChatTableViewCell+Message.swift */,
  1876. 1F1B50392B8F9E1300B0F2F4 /* BaseChatTableViewCell+File.swift */,
  1877. 2C21446D2BB5B54D005A6537 /* BaseChatTableViewCell+Location.swift */,
  1878. 2C04248F2CA32D45004772F6 /* BaseChatTableViewCell+Audio.swift */,
  1879. 2C4747E52CB6710F002828F2 /* BaseChatTableViewCell+Poll.swift */,
  1880. 2CC7159220C54D080045C789 /* ChatTableViewCell.h */,
  1881. 2CC7159320C54D080045C789 /* ChatTableViewCell.m */,
  1882. 1F35F9022AEEDEE800044BDA /* AutoCompletionTableViewCell.h */,
  1883. 1F35F9032AEEDF0E00044BDA /* AutoCompletionTableViewCell.m */,
  1884. 2C604BD7211988A700D34DCD /* SystemMessageTableViewCell.h */,
  1885. 2C604BD8211988A700D34DCD /* SystemMessageTableViewCell.m */,
  1886. 2C8E2A19232174C20022BFC9 /* MessageSeparatorTableViewCell.h */,
  1887. 2C8E2A1A232174C20022BFC9 /* MessageSeparatorTableViewCell.m */,
  1888. 1F0A1D432A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift */,
  1889. 1F5683CE2BA7980C0023E151 /* FilePreviewImageView.swift */,
  1890. );
  1891. name = "Chat cells";
  1892. sourceTree = "<group>";
  1893. };
  1894. 2C6DEAB3243CCCCA00AE8437 /* Chat views */ = {
  1895. isa = PBXGroup;
  1896. children = (
  1897. 1F46CE2728E05ACF00E7D88E /* References */,
  1898. 1F46CE2628E05AC100E7D88E /* Polls */,
  1899. 1F46CE2528E05ABB00E7D88E /* Reactions */,
  1900. 2C06BF6520AC647A0031EB46 /* DateHeaderView.h */,
  1901. 2C06BF6620AC647A0031EB46 /* DateHeaderView.m */,
  1902. 2C06BF6320AC64370031EB46 /* DateHeaderView.xib */,
  1903. DA1AEFC2270F1FA90088E519 /* DateLabelCustom.swift */,
  1904. 2CC007CC20E50B0A0096D91F /* MessageBodyTextView.h */,
  1905. 2CC007CD20E50B0A0096D91F /* MessageBodyTextView.m */,
  1906. 2C7381542106136000CDB8DB /* NCChatTitleView.h */,
  1907. 2C7381552106136000CDB8DB /* NCChatTitleView.m */,
  1908. 2C738157210613A200CDB8DB /* NCChatTitleView.xib */,
  1909. 2CA15549208F2E5700CE8EF0 /* NCMessageTextView.h */,
  1910. 2CA1554A208F2E5700CE8EF0 /* NCMessageTextView.m */,
  1911. 2C6E7447238C1A0800AE396C /* QuotedMessageView.h */,
  1912. 2C6E7448238C1A0800AE396C /* QuotedMessageView.m */,
  1913. 2C6E74442386D33200AE396C /* ReplyMessageView.h */,
  1914. 2C6E74452386D33200AE396C /* ReplyMessageView.m */,
  1915. 2CA52AC92670D02800619610 /* VoiceMessageRecordingView.h */,
  1916. 2CA52ACA2670D02800619610 /* VoiceMessageRecordingView.m */,
  1917. 2CA52ACC2670D07900619610 /* VoiceMessageRecordingView.xib */,
  1918. 1F66B71E29FA703B003FB168 /* TypingIndicatorView.swift */,
  1919. 1F66B72029FA7089003FB168 /* TypingIndicatorView.xib */,
  1920. 2C0424992CA33681004772F6 /* AudioPlayerView.swift */,
  1921. 2C0424962CA335C4004772F6 /* AudioPlayerView.xib */,
  1922. );
  1923. name = "Chat views";
  1924. sourceTree = "<group>";
  1925. };
  1926. 2C78EF961F7E720A008AFA74 /* WebRTC */ = {
  1927. isa = PBXGroup;
  1928. children = (
  1929. 2C78EF931F7E70EB008AFA74 /* NCPeerConnection.h */,
  1930. 2C78EF941F7E70EB008AFA74 /* NCPeerConnection.m */,
  1931. 2C78EF971F80F81E008AFA74 /* NCSignalingController.h */,
  1932. 2C78EF981F80F81E008AFA74 /* NCSignalingController.m */,
  1933. 2C2E64231F3462AF00D39CE8 /* NCSignalingMessage.h */,
  1934. 2C2E64241F3462AF00D39CE8 /* NCSignalingMessage.m */,
  1935. 2CD5F3222142781A006B71BF /* NCExternalSignalingController.h */,
  1936. 2CD5F3232142781A006B71BF /* NCExternalSignalingController.m */,
  1937. 2C69323B2923ECAA00017AD2 /* WSMessage.h */,
  1938. 2C69323C2923ECAA00017AD2 /* WSMessage.m */,
  1939. 1F1DF83B2C5C17AF00E5EA86 /* TalkActor.swift */,
  1940. 1F1DF8422C64006E00E5EA86 /* SignalingParticipant.swift */,
  1941. 1F8AAC312C518759004DA20A /* SignalingSettings.swift */,
  1942. 1F8AAC362C519577004DA20A /* TurnServer.swift */,
  1943. 1F8AAC3B2C519689004DA20A /* StunServer.swift */,
  1944. 1F8995B42973547700CABA33 /* WebRTCCommon.swift */,
  1945. );
  1946. name = WebRTC;
  1947. sourceTree = "<group>";
  1948. };
  1949. 2C8A2BCA221F096200DE6D2C /* File sharing */ = {
  1950. isa = PBXGroup;
  1951. children = (
  1952. 1FF4DA7D2C0237D000C1B952 /* DirectoryTableViewCell.swift */,
  1953. 2C8A2BCD221FEEFE00DE6D2C /* DirectoryTableViewCell.xib */,
  1954. 2C8A2BC7221F094F00DE6D2C /* DirectoryTableViewController.h */,
  1955. 2C8A2BC8221F094F00DE6D2C /* DirectoryTableViewController.m */,
  1956. );
  1957. name = "File sharing";
  1958. sourceTree = "<group>";
  1959. };
  1960. 2C90E5621EDDE0FB0093D85A /* Frameworks */ = {
  1961. isa = PBXGroup;
  1962. children = (
  1963. 1FDDB0E82AFE8F5C00FBAFB7 /* MobileCoreServices.framework */,
  1964. 1F90EFC225FE489B00F3FA55 /* IntentsUI.framework */,
  1965. 2CA1CCC91F17C503002FE6A2 /* AudioToolbox.framework */,
  1966. 2CA1CC961F016117002FE6A2 /* Security.framework */,
  1967. 2C90E5CE1EDF23A00093D85A /* WebKit.framework */,
  1968. 2C90E5681EDDE13A0093D85A /* UIKit.framework */,
  1969. 2C90E5661EDDE1340093D85A /* CoreGraphics.framework */,
  1970. 2C90E5631EDDE0FB0093D85A /* Foundation.framework */,
  1971. 9B81BB7A4920C391CC2CACFD /* libPods-NotificationServiceExtension.a */,
  1972. 684807120F4439797973DF73 /* libPods-ShareExtension.a */,
  1973. 4F7C31E9D74F550EAF89931B /* libPods-NextcloudTalk.a */,
  1974. 1FF2FD5C2AB99CCB000C9905 /* ReplayKit.framework */,
  1975. 9A3D305FCD7BF7E727A62F35 /* libPods-BroadcastUploadExtension.a */,
  1976. 7005E22D6C2896927FC3AEEC /* libPods-NextcloudTalkTests.a */,
  1977. );
  1978. name = Frameworks;
  1979. sourceTree = "<group>";
  1980. };
  1981. 2C9B0B99217F6E3400A4752C /* Notifications */ = {
  1982. isa = PBXGroup;
  1983. children = (
  1984. 1FA38C8F29A4B3C6008871B8 /* NCNotificationAction.swift */,
  1985. 2C9B0B9A217F756B00A4752C /* NCNotification.h */,
  1986. 2C9B0B9B217F756B00A4752C /* NCNotification.m */,
  1987. 2CBF82AC1FC888FC00636459 /* NCPushNotification.h */,
  1988. 2CBF82AD1FC888FC00636459 /* NCPushNotification.m */,
  1989. 2C9B0B96217F6DBA00A4752C /* NCNotificationController.h */,
  1990. 2C9B0B97217F6DBA00A4752C /* NCNotificationController.m */,
  1991. 2C4446F1265D51A600DF1DBC /* NCPushNotificationsUtils.h */,
  1992. 2C4446F2265D51A600DF1DBC /* NCPushNotificationsUtils.m */,
  1993. );
  1994. name = Notifications;
  1995. sourceTree = "<group>";
  1996. };
  1997. 2CB302F92264775E0053078A /* SlackTextViewController */ = {
  1998. isa = PBXGroup;
  1999. children = (
  2000. 2CB3039B2264775E0053078A /* Source */,
  2001. );
  2002. name = SlackTextViewController;
  2003. path = ThirdParty/SlackTextViewController;
  2004. sourceTree = "<group>";
  2005. };
  2006. 2CB3039B2264775E0053078A /* Source */ = {
  2007. isa = PBXGroup;
  2008. children = (
  2009. 2CB3039C2264775E0053078A /* SLKInputAccessoryView.h */,
  2010. 2CB3039D2264775E0053078A /* SLKInputAccessoryView.m */,
  2011. 2CB3039E2264775E0053078A /* SLKTextInput+Implementation.m */,
  2012. 2CB3039F2264775E0053078A /* SLKTextInput.h */,
  2013. 2CB303A02264775E0053078A /* SLKTextInputbar.h */,
  2014. 2CB303A12264775E0053078A /* SLKTextInputbar.m */,
  2015. 2CB303A22264775E0053078A /* SLKTextView+SLKAdditions.h */,
  2016. 2CB303A32264775E0053078A /* SLKTextView+SLKAdditions.m */,
  2017. 2CB303A42264775E0053078A /* SLKTextView.h */,
  2018. 2CB303A52264775E0053078A /* SLKTextView.m */,
  2019. 2CB303A62264775E0053078A /* SLKTextViewController.h */,
  2020. 2CB303A72264775E0053078A /* SLKTextViewController.m */,
  2021. 2CB303A82264775E0053078A /* SLKVisibleViewProtocol.h */,
  2022. 2CB303AB2264775E0053078A /* SLKUIConstants.h */,
  2023. 2CB303AC2264775E0053078A /* UIResponder+SLKAdditions.h */,
  2024. 2CB303AD2264775E0053078A /* UIResponder+SLKAdditions.m */,
  2025. 2CB303AE2264775E0053078A /* UIScrollView+SLKAdditions.h */,
  2026. 2CB303AF2264775E0053078A /* UIScrollView+SLKAdditions.m */,
  2027. 2CB303B02264775E0053078A /* UIView+SLKAdditions.h */,
  2028. 2CB303B12264775E0053078A /* UIView+SLKAdditions.m */,
  2029. 1F66B72729FA936E003FB168 /* SLKDefaultReplyView.h */,
  2030. 1F66B72829FA936E003FB168 /* SLKDefaultReplyView.m */,
  2031. 1F66B72A29FA9414003FB168 /* SLKDefaultTypingIndicatorView.h */,
  2032. 1F66B72B29FA9414003FB168 /* SLKDefaultTypingIndicatorView.m */,
  2033. );
  2034. path = Source;
  2035. sourceTree = "<group>";
  2036. };
  2037. 2CB6ACA72638489300D3D641 /* Maps */ = {
  2038. isa = PBXGroup;
  2039. children = (
  2040. 2CB6ACB926385A3800D3D641 /* ShareLocationViewController.h */,
  2041. 2CB6ACBA26385A3800D3D641 /* ShareLocationViewController.m */,
  2042. 2CB6ACBB26385A3800D3D641 /* ShareLocationViewController.xib */,
  2043. 2CB6ACC826401D5100D3D641 /* GeoLocationRichObject.h */,
  2044. 2CB6ACC926401D5100D3D641 /* GeoLocationRichObject.m */,
  2045. 2CB6ACE62641954700D3D641 /* MapViewController.h */,
  2046. 2CB6ACE72641954700D3D641 /* MapViewController.m */,
  2047. 2CB6ACE82641954700D3D641 /* MapViewController.xib */,
  2048. );
  2049. name = Maps;
  2050. sourceTree = "<group>";
  2051. };
  2052. 2CBF82B31FCC7DC100636459 /* Security */ = {
  2053. isa = PBXGroup;
  2054. children = (
  2055. 2CBF82B01FCC7DBA00636459 /* CCCertificate.h */,
  2056. 2CBF82B11FCC7DBA00636459 /* CCCertificate.m */,
  2057. );
  2058. name = Security;
  2059. sourceTree = "<group>";
  2060. };
  2061. 2CC0015024A1F0E900A20167 /* NotificationServiceExtension */ = {
  2062. isa = PBXGroup;
  2063. children = (
  2064. 2CC0015B24A1F1D700A20167 /* NotificationServiceExtension.entitlements */,
  2065. 2CC0015124A1F0E900A20167 /* NotificationService.h */,
  2066. 2CC0015224A1F0E900A20167 /* NotificationService.m */,
  2067. 2CC0015424A1F0E900A20167 /* Info.plist */,
  2068. );
  2069. path = NotificationServiceExtension;
  2070. sourceTree = "<group>";
  2071. };
  2072. 2CC1C37F29C0945600C8436B /* DRCellSlideGestureRecognizer */ = {
  2073. isa = PBXGroup;
  2074. children = (
  2075. 2CC1C38029C0945600C8436B /* DRCellSlideGestureRecognizer.m */,
  2076. 2CC1C38129C0945600C8436B /* DRCellSlideAction.h */,
  2077. 2CC1C38229C0945600C8436B /* DRCellSlideActionView.h */,
  2078. 2CC1C38329C0945600C8436B /* DRCellSlideGestureRecognizer.h */,
  2079. 2CC1C38429C0945700C8436B /* DRCellSlideAction.m */,
  2080. 2CC1C38529C0945700C8436B /* DRCellSlideActionView.m */,
  2081. );
  2082. name = DRCellSlideGestureRecognizer;
  2083. path = ThirdParty/DRCellSlideGestureRecognizer/DRCellSlideGestureRecognizer;
  2084. sourceTree = "<group>";
  2085. };
  2086. 2CF0679E208A2A430070A79B /* Chat */ = {
  2087. isa = PBXGroup;
  2088. children = (
  2089. 2C6DEAB2243CCC7F00AE8437 /* Chat cells */,
  2090. 2C6DEAB3243CCCCA00AE8437 /* Chat views */,
  2091. 2CA1553F208E350300CE8EF0 /* NCChatMessage.h */,
  2092. 2CA15540208E350300CE8EF0 /* NCChatMessage.m */,
  2093. 1FF136142BFB74C3006A6101 /* NCChatMessage.swift */,
  2094. 2CC32E9627F5D9BD00BB8C39 /* NCChatReaction.h */,
  2095. 2CC32E9727F5D9BD00BB8C39 /* NCChatReaction.m */,
  2096. 2C42ADB220B58E6300296DEA /* NCChatController.h */,
  2097. 2C42ADB320B58E6300296DEA /* NCChatController.m */,
  2098. 1FEDE3C5257D439500853F79 /* NCChatFileController.h */,
  2099. 1FEDE3C4257D439500853F79 /* NCChatFileController.m */,
  2100. 1FCE3D542C9C189D009C68A9 /* NCChatFileControllerWrapper.swift */,
  2101. 1FF4DA7F2C023FF300C1B952 /* NCChatFileStatus.swift */,
  2102. 2C5BFBF0288A97D800E75118 /* NCPoll.h */,
  2103. 2C5BFBF1288A97D800E75118 /* NCPoll.m */,
  2104. 2C43BA7421309A1000B3068A /* NCMessageParameter.h */,
  2105. 2C43BA7521309A1000B3068A /* NCMessageParameter.m */,
  2106. 1FEDE3CD257D43AB00853F79 /* NCMessageFileParameter.h */,
  2107. 1FEDE3CC257D43AB00853F79 /* NCMessageFileParameter.m */,
  2108. 2CB6ACD82641483800D3D641 /* NCMessageLocationParameter.h */,
  2109. 2CB6ACD92641483800D3D641 /* NCMessageLocationParameter.m */,
  2110. 2CC1FF4628183958009F7288 /* NCDeckCardParameter.h */,
  2111. 2CC1FF4728183958009F7288 /* NCDeckCardParameter.m */,
  2112. 1F785DDC2707865F00AC4B40 /* VoiceMessageTranscribeViewController.h */,
  2113. 1F785DDA2707865F00AC4B40 /* VoiceMessageTranscribeViewController.m */,
  2114. 1F785DDB2707865F00AC4B40 /* VoiceMessageTranscribeViewController.xib */,
  2115. 2CF8AD3D2A0010FB00A4D3E6 /* MessageTranslationViewController.swift */,
  2116. 2CF8AD3E2A0010FB00A4D3E6 /* MessageTranslationViewController.xib */,
  2117. 1F5A24322ADA77DA009939FE /* InputbarViewController.swift */,
  2118. 1FAB2E822AC9EC3F001214EB /* BaseChatViewController.swift */,
  2119. 1FAB2E842ACB482B001214EB /* ChatViewController.swift */,
  2120. 1F35F8FA2AEEDBC600044BDA /* ChatViewControllerExtension.swift */,
  2121. 2C4230F62B207AB00013E1FA /* ContextChatViewController.swift */,
  2122. 1F0B0A712BA264540073FF8D /* MentionSuggestion.swift */,
  2123. );
  2124. name = Chat;
  2125. sourceTree = "<group>";
  2126. };
  2127. 926177EBCFB97EA1273DEDB9 /* Pods */ = {
  2128. isa = PBXGroup;
  2129. children = (
  2130. D6DF51D976DC0F681FF83F7B /* Pods-NotificationServiceExtension.debug.xcconfig */,
  2131. D86091EC1125C3057B9A299B /* Pods-NotificationServiceExtension.release.xcconfig */,
  2132. 584BF273DF09DE4D5EE0DA0F /* Pods-ShareExtension.debug.xcconfig */,
  2133. 95D756208A81284B975853EC /* Pods-ShareExtension.release.xcconfig */,
  2134. 4202C63030F0FFBB1C16D75E /* Pods-NextcloudTalk.debug.xcconfig */,
  2135. 4D4C7BF2F97F47B0D9094618 /* Pods-NextcloudTalk.release.xcconfig */,
  2136. 82CD0527E04B844CAD762ADE /* Pods-BroadcastUploadExtension.debug.xcconfig */,
  2137. A8F95DE6635ABC1E64CA8E4A /* Pods-BroadcastUploadExtension.release.xcconfig */,
  2138. 342600BABD1AD1FCA48B5E59 /* Pods-NextcloudTalkTests.debug.xcconfig */,
  2139. B7874918820589BF8FD69BED /* Pods-NextcloudTalkTests.release.xcconfig */,
  2140. );
  2141. name = Pods;
  2142. sourceTree = "<group>";
  2143. };
  2144. /* End PBXGroup section */
  2145. /* Begin PBXNativeTarget section */
  2146. 1F6D8C2F2B2E3756004376B8 /* NextcloudTalkTests */ = {
  2147. isa = PBXNativeTarget;
  2148. buildConfigurationList = 1F6D8C362B2E3756004376B8 /* Build configuration list for PBXNativeTarget "NextcloudTalkTests" */;
  2149. buildPhases = (
  2150. 3A811BF7A761836E61C82B80 /* [CP] Check Pods Manifest.lock */,
  2151. 1F6D8C2C2B2E3756004376B8 /* Sources */,
  2152. 1F6D8C2D2B2E3756004376B8 /* Frameworks */,
  2153. 1F6D8C2E2B2E3756004376B8 /* Resources */,
  2154. );
  2155. buildRules = (
  2156. );
  2157. dependencies = (
  2158. 1F6D8C352B2E3756004376B8 /* PBXTargetDependency */,
  2159. );
  2160. name = NextcloudTalkTests;
  2161. packageProductDependencies = (
  2162. 1F759C082B63B9A7000534AB /* SDWebImage */,
  2163. 1F759C0A2B63B9A7000534AB /* SDWebImageSVGKitPlugin */,
  2164. 1F759C0D2B63B9BA000534AB /* WebRTC */,
  2165. 1F759C0F2B63B9D9000534AB /* OpenSSL */,
  2166. 1F759C132B63B9D9000534AB /* QRCodeReader */,
  2167. 1F759C152B63B9D9000534AB /* NextcloudKit */,
  2168. 1F759C172B63B9D9000534AB /* SwiftyAttributes */,
  2169. 1F759C192B63B9D9000534AB /* CDMarkdownKit */,
  2170. 1F759C1B2B63B9D9000534AB /* TOCropViewController */,
  2171. 1F759C1D2B63B9D9000534AB /* SwiftUIIntrospect */,
  2172. 1F759C332B63CBAA000534AB /* Realm */,
  2173. );
  2174. productName = NextcloudTalkTests;
  2175. productReference = 1F6D8C302B2E3756004376B8 /* NextcloudTalkTests.xctest */;
  2176. productType = "com.apple.product-type.bundle.unit-test";
  2177. };
  2178. 1FD8AD892A3A162100787C16 /* NextcloudTalkUITests */ = {
  2179. isa = PBXNativeTarget;
  2180. buildConfigurationList = 1FD8AD922A3A162100787C16 /* Build configuration list for PBXNativeTarget "NextcloudTalkUITests" */;
  2181. buildPhases = (
  2182. 1FD8AD862A3A162100787C16 /* Sources */,
  2183. 1FD8AD872A3A162100787C16 /* Frameworks */,
  2184. 1FD8AD882A3A162100787C16 /* Resources */,
  2185. );
  2186. buildRules = (
  2187. );
  2188. dependencies = (
  2189. 1FD8AD912A3A162100787C16 /* PBXTargetDependency */,
  2190. );
  2191. name = NextcloudTalkUITests;
  2192. productName = NextcloudTalkUITests;
  2193. productReference = 1FD8AD8A2A3A162100787C16 /* NextcloudTalkUITests.xctest */;
  2194. productType = "com.apple.product-type.bundle.ui-testing";
  2195. };
  2196. 1FF2FD5A2AB99CCB000C9905 /* BroadcastUploadExtension */ = {
  2197. isa = PBXNativeTarget;
  2198. buildConfigurationList = 1FF2FD782AB99CCC000C9905 /* Build configuration list for PBXNativeTarget "BroadcastUploadExtension" */;
  2199. buildPhases = (
  2200. CBF95D503F715CE6BE80B113 /* [CP] Check Pods Manifest.lock */,
  2201. 1FF2FD572AB99CCB000C9905 /* Sources */,
  2202. 1FF2FD582AB99CCB000C9905 /* Frameworks */,
  2203. 1FF2FD592AB99CCB000C9905 /* Resources */,
  2204. );
  2205. buildRules = (
  2206. );
  2207. dependencies = (
  2208. );
  2209. name = BroadcastUploadExtension;
  2210. packageProductDependencies = (
  2211. 1F77A5EE2AB9A41E007B6037 /* SDWebImage */,
  2212. 1F77A5F02AB9A423007B6037 /* SDWebImageSVGKitPlugin */,
  2213. 1F77A5FF2AB9A50D007B6037 /* NextcloudKit */,
  2214. 1F77A60B2AB9A5BE007B6037 /* CDMarkdownKit */,
  2215. 1F759C312B63CBA5000534AB /* Realm */,
  2216. 1FF136192BFBC841006A6101 /* SwiftyAttributes */,
  2217. );
  2218. productName = BroadcastUploadExtension;
  2219. productReference = 1FF2FD5B2AB99CCB000C9905 /* BroadcastUploadExtension.appex */;
  2220. productType = "com.apple.product-type.app-extension";
  2221. };
  2222. 2C05747C1EDD9E8E00D9E7F2 /* NextcloudTalk */ = {
  2223. isa = PBXNativeTarget;
  2224. buildConfigurationList = 2C0574971EDD9E8E00D9E7F2 /* Build configuration list for PBXNativeTarget "NextcloudTalk" */;
  2225. buildPhases = (
  2226. 902A7A3EC0BDCC947AEF3EBF /* [CP] Check Pods Manifest.lock */,
  2227. 2C0574791EDD9E8E00D9E7F2 /* Sources */,
  2228. 2C05747A1EDD9E8E00D9E7F2 /* Frameworks */,
  2229. 2C05747B1EDD9E8E00D9E7F2 /* Resources */,
  2230. A3C686B1B84C4462F93441AB /* [CP] Copy Pods Resources */,
  2231. 2C8035721F950BA800501B5C /* ShellScript */,
  2232. 2C5E72BC27957FCA004ED7FB /* ShellScript */,
  2233. C21100AE204AFC213989DA96 /* [CP] Embed Pods Frameworks */,
  2234. 5EE5ACC62CF48BCA004D7EDB /* Embed Foundation Extensions */,
  2235. );
  2236. buildRules = (
  2237. );
  2238. dependencies = (
  2239. 5EE5ACC52CF48BCA004D7EDB /* PBXTargetDependency */,
  2240. 5EE5ACC92CF48BDA004D7EDB /* PBXTargetDependency */,
  2241. 5EE5ACCC2CF48BDF004D7EDB /* PBXTargetDependency */,
  2242. );
  2243. name = NextcloudTalk;
  2244. packageProductDependencies = (
  2245. 2CCCD21C2835088F00F076CE /* OpenSSL */,
  2246. 1F468E7528DCC6C60099597B /* Dynamic */,
  2247. 1F628CB92842BAAF0083A425 /* QRCodeReader */,
  2248. 1F7AE07729142CA1009F72AD /* NextcloudKit */,
  2249. 1F66B72E29FABD01003FB168 /* SwiftyAttributes */,
  2250. 1F45A1152A01D6EC005FE87D /* SDWebImage */,
  2251. 1F45A1202A01D8BA005FE87D /* SDWebImageSVGKitPlugin */,
  2252. 1F0ECBF42A68274400921E90 /* CDMarkdownKit */,
  2253. 1FAB2E7C2AC99326001214EB /* TOCropViewController */,
  2254. 1FAB2E872ACD44D0001214EB /* WebRTC */,
  2255. 80CDF8C32A8E098900CB57AE /* SwiftUIIntrospect */,
  2256. 1F759C2B2B63CB93000534AB /* Realm */,
  2257. 1FCE3D522C9B5918009C68A9 /* SwiftyGif */,
  2258. );
  2259. productName = NextcloudTalk;
  2260. productReference = 2C05747D1EDD9E8E00D9E7F2 /* NextcloudTalk.app */;
  2261. productType = "com.apple.product-type.application";
  2262. };
  2263. 2C62AFA224C08845007E460A /* ShareExtension */ = {
  2264. isa = PBXNativeTarget;
  2265. buildConfigurationList = 2C62AFB124C08845007E460A /* Build configuration list for PBXNativeTarget "ShareExtension" */;
  2266. buildPhases = (
  2267. 25F3EB565BD21EF2FF15F197 /* [CP] Check Pods Manifest.lock */,
  2268. 2C62AF9F24C08845007E460A /* Sources */,
  2269. 2C62AFA024C08845007E460A /* Frameworks */,
  2270. 2C62AFA124C08845007E460A /* Resources */,
  2271. );
  2272. buildRules = (
  2273. );
  2274. dependencies = (
  2275. );
  2276. name = ShareExtension;
  2277. packageProductDependencies = (
  2278. 1F7AE07B29142E6A009F72AD /* NextcloudKit */,
  2279. 1F45A1192A01D70E005FE87D /* SDWebImage */,
  2280. 1F45A1242A01D8F7005FE87D /* SDWebImageSVGKitPlugin */,
  2281. 1F0ECBF82A68277C00921E90 /* CDMarkdownKit */,
  2282. 1FAB2E7E2AC99367001214EB /* TOCropViewController */,
  2283. 1F35F8F42AEEDA9800044BDA /* SwiftyAttributes */,
  2284. 1F759C2F2B63CBA0000534AB /* Realm */,
  2285. );
  2286. productName = ShareExtension;
  2287. productReference = 2C62AFA324C08845007E460A /* ShareExtension.appex */;
  2288. productType = "com.apple.product-type.app-extension";
  2289. };
  2290. 2CC0014E24A1F0E900A20167 /* NotificationServiceExtension */ = {
  2291. isa = PBXNativeTarget;
  2292. buildConfigurationList = 2CC0015A24A1F0E900A20167 /* Build configuration list for PBXNativeTarget "NotificationServiceExtension" */;
  2293. buildPhases = (
  2294. E75968B5C5288222BC8FCA99 /* [CP] Check Pods Manifest.lock */,
  2295. 2CC0014B24A1F0E900A20167 /* Sources */,
  2296. 2CC0014C24A1F0E900A20167 /* Frameworks */,
  2297. 2CC0014D24A1F0E900A20167 /* Resources */,
  2298. );
  2299. buildRules = (
  2300. );
  2301. dependencies = (
  2302. );
  2303. name = NotificationServiceExtension;
  2304. packageProductDependencies = (
  2305. 1F7AE07929142E62009F72AD /* NextcloudKit */,
  2306. 1F45A11D2A01D719005FE87D /* SDWebImage */,
  2307. 1F45A1222A01D8F1005FE87D /* SDWebImageSVGKitPlugin */,
  2308. 1F0ECBF62A68277000921E90 /* CDMarkdownKit */,
  2309. 1F759C2D2B63CB9A000534AB /* Realm */,
  2310. 1FF1361B2BFBC86A006A6101 /* SwiftyAttributes */,
  2311. );
  2312. productName = NotificationServiceExtension;
  2313. productReference = 2CC0014F24A1F0E900A20167 /* NotificationServiceExtension.appex */;
  2314. productType = "com.apple.product-type.app-extension";
  2315. };
  2316. /* End PBXNativeTarget section */
  2317. /* Begin PBXProject section */
  2318. 2C0574751EDD9E8E00D9E7F2 /* Project object */ = {
  2319. isa = PBXProject;
  2320. attributes = {
  2321. LastSwiftUpdateCheck = 1510;
  2322. LastUpgradeCheck = 1320;
  2323. ORGANIZATIONNAME = "";
  2324. TargetAttributes = {
  2325. 1F6D8C2F2B2E3756004376B8 = {
  2326. CreatedOnToolsVersion = 15.1;
  2327. LastSwiftMigration = 1520;
  2328. TestTargetID = 2C05747C1EDD9E8E00D9E7F2;
  2329. };
  2330. 1FD8AD892A3A162100787C16 = {
  2331. CreatedOnToolsVersion = 14.3;
  2332. TestTargetID = 2C05747C1EDD9E8E00D9E7F2;
  2333. };
  2334. 1FF2FD5A2AB99CCB000C9905 = {
  2335. CreatedOnToolsVersion = 14.3.1;
  2336. };
  2337. 2C05747C1EDD9E8E00D9E7F2 = {
  2338. CreatedOnToolsVersion = 8.3.2;
  2339. LastSwiftMigration = 1220;
  2340. ProvisioningStyle = Automatic;
  2341. SystemCapabilities = {
  2342. com.apple.ApplicationGroups.iOS = {
  2343. enabled = 1;
  2344. };
  2345. com.apple.BackgroundModes = {
  2346. enabled = 1;
  2347. };
  2348. com.apple.Keychain = {
  2349. enabled = 0;
  2350. };
  2351. com.apple.Push = {
  2352. enabled = 1;
  2353. };
  2354. };
  2355. };
  2356. 2C62AFA224C08845007E460A = {
  2357. CreatedOnToolsVersion = 11.5;
  2358. LastSwiftMigration = 1220;
  2359. ProvisioningStyle = Automatic;
  2360. };
  2361. 2CC0014E24A1F0E900A20167 = {
  2362. CreatedOnToolsVersion = 11.5;
  2363. LastSwiftMigration = 1220;
  2364. ProvisioningStyle = Automatic;
  2365. };
  2366. };
  2367. };
  2368. buildConfigurationList = 2C0574781EDD9E8E00D9E7F2 /* Build configuration list for PBXProject "NextcloudTalk" */;
  2369. compatibilityVersion = "Xcode 3.2";
  2370. developmentRegion = English;
  2371. hasScannedForEncodings = 0;
  2372. knownRegions = (
  2373. English,
  2374. en,
  2375. Base,
  2376. es,
  2377. de,
  2378. it,
  2379. tr,
  2380. sl,
  2381. hr,
  2382. pl,
  2383. "pt-BR",
  2384. nl,
  2385. fr,
  2386. el,
  2387. "zh-Hans",
  2388. gl,
  2389. cs,
  2390. hu,
  2391. ko,
  2392. eu,
  2393. ja,
  2394. ar,
  2395. "nb-NO",
  2396. ga,
  2397. sv,
  2398. sr,
  2399. );
  2400. mainGroup = 2C0574741EDD9E8E00D9E7F2;
  2401. packageReferences = (
  2402. 2CCCD21B2835088F00F076CE /* XCRemoteSwiftPackageReference "OpenSSL" */,
  2403. 1F468E7428DCC6C60099597B /* XCRemoteSwiftPackageReference "Dynamic" */,
  2404. 1F628CB82842BAAF0083A425 /* XCRemoteSwiftPackageReference "QRCodeReader" */,
  2405. 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */,
  2406. 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */,
  2407. 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */,
  2408. 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */,
  2409. 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */,
  2410. 1FAB2E7B2AC99326001214EB /* XCRemoteSwiftPackageReference "TOCropViewController" */,
  2411. 1FAB2E862ACD44CF001214EB /* XCRemoteSwiftPackageReference "talk-clients-webrtc" */,
  2412. 80CDF8C22A8E098900CB57AE /* XCRemoteSwiftPackageReference "swiftui-introspect" */,
  2413. 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */,
  2414. 1FCE3D512C9B5918009C68A9 /* XCRemoteSwiftPackageReference "SwiftyGif" */,
  2415. );
  2416. productRefGroup = 2C05747E1EDD9E8E00D9E7F2 /* Products */;
  2417. projectDirPath = "";
  2418. projectRoot = "";
  2419. targets = (
  2420. 2C05747C1EDD9E8E00D9E7F2 /* NextcloudTalk */,
  2421. 2CC0014E24A1F0E900A20167 /* NotificationServiceExtension */,
  2422. 2C62AFA224C08845007E460A /* ShareExtension */,
  2423. 1FF2FD5A2AB99CCB000C9905 /* BroadcastUploadExtension */,
  2424. 1FD8AD892A3A162100787C16 /* NextcloudTalkUITests */,
  2425. 1F6D8C2F2B2E3756004376B8 /* NextcloudTalkTests */,
  2426. );
  2427. };
  2428. /* End PBXProject section */
  2429. /* Begin PBXResourcesBuildPhase section */
  2430. 1F6D8C2E2B2E3756004376B8 /* Resources */ = {
  2431. isa = PBXResourcesBuildPhase;
  2432. buildActionMask = 2147483647;
  2433. files = (
  2434. );
  2435. runOnlyForDeploymentPostprocessing = 0;
  2436. };
  2437. 1FD8AD882A3A162100787C16 /* Resources */ = {
  2438. isa = PBXResourcesBuildPhase;
  2439. buildActionMask = 2147483647;
  2440. files = (
  2441. );
  2442. runOnlyForDeploymentPostprocessing = 0;
  2443. };
  2444. 1FF2FD592AB99CCB000C9905 /* Resources */ = {
  2445. isa = PBXResourcesBuildPhase;
  2446. buildActionMask = 2147483647;
  2447. files = (
  2448. 1FE7DE332BBC8FA00040EE12 /* PrivacyInfo.xcprivacy in Resources */,
  2449. );
  2450. runOnlyForDeploymentPostprocessing = 0;
  2451. };
  2452. 2C05747B1EDD9E8E00D9E7F2 /* Resources */ = {
  2453. isa = PBXResourcesBuildPhase;
  2454. buildActionMask = 2147483647;
  2455. files = (
  2456. 2CB052A12BF2297500191349 /* connecting.mp3 in Resources */,
  2457. 2C84BCCE29EEDCE8001BA6DA /* CallReactionView.xib in Resources */,
  2458. 2CC32E9327F45AE000BB8C39 /* ReactionsViewCell.xib in Resources */,
  2459. 2C330372255E6EBC00BDB4E4 /* InfoPlist.strings in Resources */,
  2460. 2C78EFA11F828C41008AFA74 /* CallViewController.xib in Resources */,
  2461. 2C3780C5210F4A26003F9AE8 /* HeaderWithButton.xib in Resources */,
  2462. 1FCE3D592C9C4D21009C68A9 /* ReferenceGiphyView.xib in Resources */,
  2463. 2C7F47AA20289B9600081CC7 /* Localizable.strings in Resources */,
  2464. 2CB997C62A052449003C41AC /* EmojiAvatarPickerViewController.xib in Resources */,
  2465. 2C0574A51EDDA2E300D9E7F2 /* LoginViewController.xib in Resources */,
  2466. 1F46CE2B28E05B3C00E7D88E /* ReferenceDefaultView.xib in Resources */,
  2467. 1F98DF9E28E7485000E05174 /* ReferenceDeckView.xib in Resources */,
  2468. 1F66B72129FA7089003FB168 /* TypingIndicatorView.xib in Resources */,
  2469. 2C738158210613A200CDB8DB /* NCChatTitleView.xib in Resources */,
  2470. 2CA52ACD2670D07900619610 /* VoiceMessageRecordingView.xib in Resources */,
  2471. 2C8A2BCF221FEEFE00DE6D2C /* DirectoryTableViewCell.xib in Resources */,
  2472. 2CC007C620D90AE50096D91F /* RoomNameTableViewCell.xib in Resources */,
  2473. 2C78EFA61F86FF4A008AFA74 /* CallParticipantViewCell.xib in Resources */,
  2474. 2C98F77D216231D3001A6A73 /* RoomTableViewCell.xib in Resources */,
  2475. 1F7625E72901B0E800834869 /* CallsFromOldAccountViewController.xib in Resources */,
  2476. 2CF9CBFF26025F65002246EF /* TextInputTableViewCell.xib in Resources */,
  2477. 1F24B5A428E0649200654457 /* ReferenceGithubView.xib in Resources */,
  2478. 2C0424982CA335C4004772F6 /* AudioPlayerView.xib in Resources */,
  2479. 2CC1FF4528147F11009F7288 /* RoomSharedItemsTableViewController.xib in Resources */,
  2480. 2C06BF6420AC64370031EB46 /* DateHeaderView.xib in Resources */,
  2481. 2C440D1220EA4A770005F9BB /* RoomInfoTableViewController.xib in Resources */,
  2482. 2C7A1237200E0A5700864818 /* UserSettingsTableViewCell.xib in Resources */,
  2483. 2C1D13A3253760EE00EC0533 /* LaunchScreen.xib in Resources */,
  2484. 1FB7B99C2BF0DF360093CE98 /* BannedActorCell.xib in Resources */,
  2485. 2C4747E22CB58FD2002828F2 /* PollMessageView.xib in Resources */,
  2486. 2CA1CCAC1F067F35002FE6A2 /* Images.xcassets in Resources */,
  2487. 2CA1CCD71F1E664C002FE6A2 /* ContactsTableViewCell.xib in Resources */,
  2488. 2C05748E1EDD9E8E00D9E7F2 /* Main.storyboard in Resources */,
  2489. 1F785DDE2707865F00AC4B40 /* VoiceMessageTranscribeViewController.xib in Resources */,
  2490. 2C4CDCCD269618240023F403 /* RoomDescriptionTableViewCell.xib in Resources */,
  2491. 1FFF41642C70938700162F4D /* ReferenceZammadView.xib in Resources */,
  2492. 2CB6ACBF26385A3800D3D641 /* ShareLocationViewController.xib in Resources */,
  2493. 2C5BFBFC2891598A00E75118 /* PollResultTableViewCell.xib in Resources */,
  2494. 1FADECDA2B8227B1007AD94B /* FederationInvitationCell.xib in Resources */,
  2495. 1FEC459C2A02BCAE00A636AA /* ReferenceGithubPermalinkView.xib in Resources */,
  2496. 1FE0C56C2A0531200083576A /* ReferenceTalkView.xib in Resources */,
  2497. 1F1B50382B8E070100B0F2F4 /* BaseChatTableViewCell.xib in Resources */,
  2498. 2C5BFBF828902E3700E75118 /* PollFooterView.xib in Resources */,
  2499. 1FDE7C9C28DE14B000CB718E /* ReferenceView.xib in Resources */,
  2500. 2C444707265E59B500DF1DBC /* ShareConfirmationCollectionViewCell.xib in Resources */,
  2501. 2CC7158920B837140045C789 /* PlaceholderView.xib in Resources */,
  2502. 1F1C0D8729AFB88800D17C6D /* VLCKitVideoViewController.xib in Resources */,
  2503. 2CF8AD402A0010FB00A4D3E6 /* MessageTranslationViewController.xib in Resources */,
  2504. 1FE7DE362BBC8FA10040EE12 /* PrivacyInfo.xcprivacy in Resources */,
  2505. 2C477C1628B79D980044DEB4 /* Localizable.stringsdict in Resources */,
  2506. 2CB6ACEC2641954700D3D641 /* MapViewController.xib in Resources */,
  2507. 1FE7DE322BB459B10040EE12 /* RoomInvitationViewCell.xib in Resources */,
  2508. 2C4CDCD226A84E550023F403 /* ShareTableViewCell.xib in Resources */,
  2509. 1FEC45A52A02F92B00A636AA /* GithubPermalinkViewController.xib in Resources */,
  2510. 2C7A12432017872600864818 /* AddParticipantsTableViewController.xib in Resources */,
  2511. 1F3C41A129EDAC8800F58435 /* RoomAvatarInfoTableViewController.xib in Resources */,
  2512. 1F3C41A529EDF0B800F58435 /* AvatarEditView.xib in Resources */,
  2513. );
  2514. runOnlyForDeploymentPostprocessing = 0;
  2515. };
  2516. 2C62AFA124C08845007E460A /* Resources */ = {
  2517. isa = PBXResourcesBuildPhase;
  2518. buildActionMask = 2147483647;
  2519. files = (
  2520. 1F35F8E42AEEBBE500044BDA /* NCChatTitleView.xib in Resources */,
  2521. 2C3195BC24C599130066F221 /* PlaceholderView.xib in Resources */,
  2522. 2C1ABD8825769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.xib in Resources */,
  2523. 2C3195C324C5E2100066F221 /* ShareTableViewCell.xib in Resources */,
  2524. 2C3195BE24C5A7410066F221 /* Images.xcassets in Resources */,
  2525. 1F59446625B8EDF5002AD65F /* Localizable.strings in Resources */,
  2526. 2CB6ACEE2641954700D3D641 /* MapViewController.xib in Resources */,
  2527. 2C62AFB624C1A449007E460A /* Share.storyboard in Resources */,
  2528. 1FE7DE342BBC8FA10040EE12 /* PrivacyInfo.xcprivacy in Resources */,
  2529. 1F35F8F22AEEC25E00044BDA /* TypingIndicatorView.xib in Resources */,
  2530. );
  2531. runOnlyForDeploymentPostprocessing = 0;
  2532. };
  2533. 2CC0014D24A1F0E900A20167 /* Resources */ = {
  2534. isa = PBXResourcesBuildPhase;
  2535. buildActionMask = 2147483647;
  2536. files = (
  2537. 1F53819129195FA4003DA6B7 /* Images.xcassets in Resources */,
  2538. 1F59446225B8EDF5002AD65F /* Localizable.strings in Resources */,
  2539. 1FE7DE352BBC8FA10040EE12 /* PrivacyInfo.xcprivacy in Resources */,
  2540. 2CB6ACED2641954700D3D641 /* MapViewController.xib in Resources */,
  2541. );
  2542. runOnlyForDeploymentPostprocessing = 0;
  2543. };
  2544. /* End PBXResourcesBuildPhase section */
  2545. /* Begin PBXShellScriptBuildPhase section */
  2546. 25F3EB565BD21EF2FF15F197 /* [CP] Check Pods Manifest.lock */ = {
  2547. isa = PBXShellScriptBuildPhase;
  2548. buildActionMask = 2147483647;
  2549. files = (
  2550. );
  2551. inputFileListPaths = (
  2552. );
  2553. inputPaths = (
  2554. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2555. "${PODS_ROOT}/Manifest.lock",
  2556. );
  2557. name = "[CP] Check Pods Manifest.lock";
  2558. outputFileListPaths = (
  2559. );
  2560. outputPaths = (
  2561. "$(DERIVED_FILE_DIR)/Pods-ShareExtension-checkManifestLockResult.txt",
  2562. );
  2563. runOnlyForDeploymentPostprocessing = 0;
  2564. shellPath = /bin/sh;
  2565. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  2566. showEnvVarsInLog = 0;
  2567. };
  2568. 2C5E72BC27957FCA004ED7FB /* ShellScript */ = {
  2569. isa = PBXShellScriptBuildPhase;
  2570. buildActionMask = 2147483647;
  2571. files = (
  2572. );
  2573. inputFileListPaths = (
  2574. );
  2575. inputPaths = (
  2576. );
  2577. outputFileListPaths = (
  2578. );
  2579. outputPaths = (
  2580. );
  2581. runOnlyForDeploymentPostprocessing = 0;
  2582. shellPath = /bin/sh;
  2583. shellScript = "if [ -z \"$CI\" ]; then\n export PATH=\"$PATH:/opt/homebrew/bin\"\n if which swiftlint >/dev/null; then\n swiftlint\n else\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\n fi\nfi\n";
  2584. };
  2585. 2C8035721F950BA800501B5C /* ShellScript */ = {
  2586. isa = PBXShellScriptBuildPhase;
  2587. buildActionMask = 2147483647;
  2588. files = (
  2589. );
  2590. inputPaths = (
  2591. );
  2592. outputPaths = (
  2593. );
  2594. runOnlyForDeploymentPostprocessing = 0;
  2595. shellPath = /bin/sh;
  2596. shellScript = "# See: https://stackoverflow.com/a/41416964\n\necho \"Target architectures: $ARCHS\"\n\nAPP_PATH=\"${TARGET_BUILD_DIR}/${WRAPPER_NAME}\"\n\nfind \"$APP_PATH\" -name '*.framework' -type d | while read -r FRAMEWORK\ndo\nFRAMEWORK_EXECUTABLE_NAME=$(defaults read \"$FRAMEWORK/Info.plist\" CFBundleExecutable)\nFRAMEWORK_EXECUTABLE_PATH=\"$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME\"\necho \"Executable is $FRAMEWORK_EXECUTABLE_PATH\"\necho $(lipo -info \"$FRAMEWORK_EXECUTABLE_PATH\")\n\nFRAMEWORK_TMP_PATH=\"$FRAMEWORK_EXECUTABLE_PATH-tmp\"\n\n# remove simulator's archs if location is not simulator's directory\ncase \"${TARGET_BUILD_DIR}\" in\n*\"iphonesimulator\")\n echo \"No need to remove archs\"\n ;;\n*)\n if $(lipo \"$FRAMEWORK_EXECUTABLE_PATH\" -verify_arch \"i386\") ; then\n lipo -output \"$FRAMEWORK_TMP_PATH\" -remove \"i386\" \"$FRAMEWORK_EXECUTABLE_PATH\"\n echo \"i386 architecture removed\"\n rm \"$FRAMEWORK_EXECUTABLE_PATH\"\n mv \"$FRAMEWORK_TMP_PATH\" \"$FRAMEWORK_EXECUTABLE_PATH\"\n fi\n if $(lipo \"$FRAMEWORK_EXECUTABLE_PATH\" -verify_arch \"x86_64\") ; then\n lipo -output \"$FRAMEWORK_TMP_PATH\" -remove \"x86_64\" \"$FRAMEWORK_EXECUTABLE_PATH\"\n echo \"x86_64 architecture removed\"\n rm \"$FRAMEWORK_EXECUTABLE_PATH\"\n mv \"$FRAMEWORK_TMP_PATH\" \"$FRAMEWORK_EXECUTABLE_PATH\"\n fi\n ;;\nesac\n\necho \"Completed for executable $FRAMEWORK_EXECUTABLE_PATH\"\necho $(lipo -info \"$FRAMEWORK_EXECUTABLE_PATH\")\n\ndone\n";
  2597. };
  2598. 3A811BF7A761836E61C82B80 /* [CP] Check Pods Manifest.lock */ = {
  2599. isa = PBXShellScriptBuildPhase;
  2600. buildActionMask = 2147483647;
  2601. files = (
  2602. );
  2603. inputFileListPaths = (
  2604. );
  2605. inputPaths = (
  2606. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2607. "${PODS_ROOT}/Manifest.lock",
  2608. );
  2609. name = "[CP] Check Pods Manifest.lock";
  2610. outputFileListPaths = (
  2611. );
  2612. outputPaths = (
  2613. "$(DERIVED_FILE_DIR)/Pods-NextcloudTalkTests-checkManifestLockResult.txt",
  2614. );
  2615. runOnlyForDeploymentPostprocessing = 0;
  2616. shellPath = /bin/sh;
  2617. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  2618. showEnvVarsInLog = 0;
  2619. };
  2620. 902A7A3EC0BDCC947AEF3EBF /* [CP] Check Pods Manifest.lock */ = {
  2621. isa = PBXShellScriptBuildPhase;
  2622. buildActionMask = 2147483647;
  2623. files = (
  2624. );
  2625. inputPaths = (
  2626. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2627. "${PODS_ROOT}/Manifest.lock",
  2628. );
  2629. name = "[CP] Check Pods Manifest.lock";
  2630. outputPaths = (
  2631. "$(DERIVED_FILE_DIR)/Pods-NextcloudTalk-checkManifestLockResult.txt",
  2632. );
  2633. runOnlyForDeploymentPostprocessing = 0;
  2634. shellPath = /bin/sh;
  2635. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  2636. showEnvVarsInLog = 0;
  2637. };
  2638. A3C686B1B84C4462F93441AB /* [CP] Copy Pods Resources */ = {
  2639. isa = PBXShellScriptBuildPhase;
  2640. buildActionMask = 2147483647;
  2641. files = (
  2642. );
  2643. inputPaths = (
  2644. "${PODS_ROOT}/Target Support Files/Pods-NextcloudTalk/Pods-NextcloudTalk-resources.sh",
  2645. "${PODS_ROOT}/DateTools/DateTools/DateTools/DateTools.bundle",
  2646. "${PODS_ROOT}/MaterialComponents/components/ActivityIndicator/src/MaterialActivityIndicator.bundle",
  2647. );
  2648. name = "[CP] Copy Pods Resources";
  2649. outputPaths = (
  2650. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/DateTools.bundle",
  2651. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialActivityIndicator.bundle",
  2652. );
  2653. runOnlyForDeploymentPostprocessing = 0;
  2654. shellPath = /bin/sh;
  2655. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NextcloudTalk/Pods-NextcloudTalk-resources.sh\"\n";
  2656. showEnvVarsInLog = 0;
  2657. };
  2658. C21100AE204AFC213989DA96 /* [CP] Embed Pods Frameworks */ = {
  2659. isa = PBXShellScriptBuildPhase;
  2660. buildActionMask = 2147483647;
  2661. files = (
  2662. );
  2663. inputPaths = (
  2664. "${PODS_ROOT}/Target Support Files/Pods-NextcloudTalk/Pods-NextcloudTalk-frameworks.sh",
  2665. "${PODS_XCFRAMEWORKS_BUILD_DIR}/MobileVLCKit/MobileVLCKit.framework/MobileVLCKit",
  2666. );
  2667. name = "[CP] Embed Pods Frameworks";
  2668. outputPaths = (
  2669. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MobileVLCKit.framework",
  2670. );
  2671. runOnlyForDeploymentPostprocessing = 0;
  2672. shellPath = /bin/sh;
  2673. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NextcloudTalk/Pods-NextcloudTalk-frameworks.sh\"\n";
  2674. showEnvVarsInLog = 0;
  2675. };
  2676. CBF95D503F715CE6BE80B113 /* [CP] Check Pods Manifest.lock */ = {
  2677. isa = PBXShellScriptBuildPhase;
  2678. buildActionMask = 2147483647;
  2679. files = (
  2680. );
  2681. inputFileListPaths = (
  2682. );
  2683. inputPaths = (
  2684. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2685. "${PODS_ROOT}/Manifest.lock",
  2686. );
  2687. name = "[CP] Check Pods Manifest.lock";
  2688. outputFileListPaths = (
  2689. );
  2690. outputPaths = (
  2691. "$(DERIVED_FILE_DIR)/Pods-BroadcastUploadExtension-checkManifestLockResult.txt",
  2692. );
  2693. runOnlyForDeploymentPostprocessing = 0;
  2694. shellPath = /bin/sh;
  2695. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  2696. showEnvVarsInLog = 0;
  2697. };
  2698. E75968B5C5288222BC8FCA99 /* [CP] Check Pods Manifest.lock */ = {
  2699. isa = PBXShellScriptBuildPhase;
  2700. buildActionMask = 2147483647;
  2701. files = (
  2702. );
  2703. inputFileListPaths = (
  2704. );
  2705. inputPaths = (
  2706. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2707. "${PODS_ROOT}/Manifest.lock",
  2708. );
  2709. name = "[CP] Check Pods Manifest.lock";
  2710. outputFileListPaths = (
  2711. );
  2712. outputPaths = (
  2713. "$(DERIVED_FILE_DIR)/Pods-NotificationServiceExtension-checkManifestLockResult.txt",
  2714. );
  2715. runOnlyForDeploymentPostprocessing = 0;
  2716. shellPath = /bin/sh;
  2717. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  2718. showEnvVarsInLog = 0;
  2719. };
  2720. /* End PBXShellScriptBuildPhase section */
  2721. /* Begin PBXSourcesBuildPhase section */
  2722. 1F6D8C2C2B2E3756004376B8 /* Sources */ = {
  2723. isa = PBXSourcesBuildPhase;
  2724. buildActionMask = 2147483647;
  2725. files = (
  2726. 1FF4DAA62C08D81D00C1B952 /* UnitNCChatMessageTest.swift in Sources */,
  2727. 1F6629FA2C17700E001C6C0E /* IntegrationRoomsManagerTest.swift in Sources */,
  2728. 1FB7B9852BE2EE020093CE98 /* UnitChatViewControllerTest.swift in Sources */,
  2729. 1F6D8C4B2B2F5B61004376B8 /* TestBase.swift in Sources */,
  2730. 1F6D8C332B2E3756004376B8 /* IntegrationRoomTest.swift in Sources */,
  2731. 1FBC3BE92B61BD09003909E0 /* TestBaseRealm.swift in Sources */,
  2732. 1F6D8C4D2B2F8FE5004376B8 /* IntegrationChatTest.swift in Sources */,
  2733. 1FB7B9892BE442400093CE98 /* UnitBaseChatTableViewCellTest.swift in Sources */,
  2734. 1F5CDAE72B3B05110040ECC0 /* UnitColorGeneratorTest.swift in Sources */,
  2735. 1F1DF8412C63C25900E5EA86 /* UnitNCDatabaseManager.swift in Sources */,
  2736. 1FF4DAA82C08DE3A00C1B952 /* UnitNCRoomsManagerTest.swift in Sources */,
  2737. 1F1B0F252BD94A0D003FD766 /* UnitDarwinCenterTest.swift in Sources */,
  2738. 1F6D8C412B2F26D5004376B8 /* TestConstants.swift in Sources */,
  2739. 1FB7B9872BE441450093CE98 /* UIViewExtensions.swift in Sources */,
  2740. 1FBC3BE52B61ACD5003909E0 /* UnitBaseChatViewControllerTest.swift in Sources */,
  2741. 1F8AAC622C596308004DA20A /* UnitSignalingSettings.swift in Sources */,
  2742. 1F0B0A772BA26BE10073FF8D /* UnitMentionSuggestionTest.swift in Sources */,
  2743. 1F6D8C432B2F26EE004376B8 /* Helpers.swift in Sources */,
  2744. );
  2745. runOnlyForDeploymentPostprocessing = 0;
  2746. };
  2747. 1FD8AD862A3A162100787C16 /* Sources */ = {
  2748. isa = PBXSourcesBuildPhase;
  2749. buildActionMask = 2147483647;
  2750. files = (
  2751. 1FD8AE6B2A3A216300787C16 /* UIRoomTest.swift in Sources */,
  2752. 1F6D8C3D2B2F23C4004376B8 /* Helpers.swift in Sources */,
  2753. 1F6D8C442B2F2791004376B8 /* TestConstants.swift in Sources */,
  2754. 1F6D8C492B2F2FB7004376B8 /* AAAALoginTest.swift in Sources */,
  2755. );
  2756. runOnlyForDeploymentPostprocessing = 0;
  2757. };
  2758. 1FF2FD572AB99CCB000C9905 /* Sources */ = {
  2759. isa = PBXSourcesBuildPhase;
  2760. buildActionMask = 2147483647;
  2761. files = (
  2762. 1F1B504B2B90CF0C00B0F2F4 /* FederatedCapabilities.m in Sources */,
  2763. 1F77A5F22AB9A436007B6037 /* EmojiUtils.swift in Sources */,
  2764. 1F77A5FA2AB9A4DF007B6037 /* NCMessageLocationParameter.m in Sources */,
  2765. 1F77A6022AB9A532007B6037 /* CCCertificate.m in Sources */,
  2766. 1F77A5EC2AB9A405007B6037 /* NCChatBlock.m in Sources */,
  2767. 1F77A5F42AB9A4B2007B6037 /* ABContact.m in Sources */,
  2768. 1F77A6012AB9A51D007B6037 /* NCNotificationAction.swift in Sources */,
  2769. 1F77A6242ABA0003007B6037 /* SampleHandler.swift in Sources */,
  2770. 1FB7B9902BF0CDF80093CE98 /* BannedActor.swift in Sources */,
  2771. 1F77A5F32AB9A43B007B6037 /* SwiftMarkdownObjCBridge.swift in Sources */,
  2772. 1FF4DA832C025DBF00C1B952 /* NCAPISessionManager.swift in Sources */,
  2773. 1FDFC9502BA50B9100670DF4 /* UIFontExtension.swift in Sources */,
  2774. 1F1DF8462C64006E00E5EA86 /* SignalingParticipant.swift in Sources */,
  2775. 1FF2FD832AB99F3B000C9905 /* NCAppBranding.m in Sources */,
  2776. 1F77A5F82AB9A4CD007B6037 /* NCDeckCardParameter.m in Sources */,
  2777. 1F77A5FD2AB9A4F3007B6037 /* ServerCapabilities.m in Sources */,
  2778. 1FF4DA892C0262BB00C1B952 /* NCBaseSessionManager.swift in Sources */,
  2779. 1F8AAC352C518B8B004DA20A /* SignalingSettings.swift in Sources */,
  2780. 1F77A6062AB9A581007B6037 /* NCKeyChainController.m in Sources */,
  2781. 1F0B0A732BA265300073FF8D /* MentionSuggestion.swift in Sources */,
  2782. 1F77A5FB2AB9A4E6007B6037 /* NCMessageParameter.m in Sources */,
  2783. 1F77A5F62AB9A4BF007B6037 /* NCChatReaction.m in Sources */,
  2784. 1FF4DA922C02677F00C1B952 /* NCImageSessionManager.swift in Sources */,
  2785. 1FB78E272B6AE8C900B0D69D /* FederationInvitation.swift in Sources */,
  2786. 1F77A5FE2AB9A4F9007B6037 /* TalkAccount.m in Sources */,
  2787. 1FF136132BFB6FCD006A6101 /* RLMSupport.swift in Sources */,
  2788. 1F77A5ED2AB9A408007B6037 /* NCChatMessage.m in Sources */,
  2789. 1F77A5EB2AB9A3EE007B6037 /* BGTaskHelper.swift in Sources */,
  2790. 1FF136182BFB74D0006A6101 /* NCChatMessage.swift in Sources */,
  2791. 1F77A5FC2AB9A4ED007B6037 /* NCRoom.m in Sources */,
  2792. 1F77A62E2ABAFCC0007B6037 /* DarwinNotificationCenter.swift in Sources */,
  2793. 1F77A60D2AB9A5CC007B6037 /* NCPoll.m in Sources */,
  2794. 1F77A6032AB9A56D007B6037 /* NotificationCenterNotifications.m in Sources */,
  2795. 1F77A60A2AB9A5AE007B6037 /* NCUser.m in Sources */,
  2796. 1F8AAC3F2C519689004DA20A /* StunServer.swift in Sources */,
  2797. 1FF4DA992C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */,
  2798. 1F1DF83F2C5C17AF00E5EA86 /* TalkActor.swift in Sources */,
  2799. 1F1B504A2B90CF0800B0F2F4 /* TalkCapabilities.m in Sources */,
  2800. 2C6955122B0CE1A10070F6E1 /* NCUtils.swift in Sources */,
  2801. 1FF4DA8D2C0264B100C1B952 /* NCPushProxySessionManager.swift in Sources */,
  2802. 1FF2FD802AB99E4D000C9905 /* SampleUploader.swift in Sources */,
  2803. 1F77A5F52AB9A4B9007B6037 /* NCAPIController.m in Sources */,
  2804. 1F77A5F92AB9A4D9007B6037 /* NCMessageFileParameter.m in Sources */,
  2805. 1FF2FD852AB99F51000C9905 /* NCUserStatus.m in Sources */,
  2806. 1F8AAC3A2C519577004DA20A /* TurnServer.swift in Sources */,
  2807. 1FB78E202B6ADBB600B0D69D /* NCAPIControllerExtensions.swift in Sources */,
  2808. 1FF136122BFB4F8C006A6101 /* NCRoom.swift in Sources */,
  2809. 1FF2FD7F2AB99E4D000C9905 /* Atomic.swift in Sources */,
  2810. 1F77A5F72AB9A4C5007B6037 /* NCContact.m in Sources */,
  2811. 1FF2FD822AB99E4D000C9905 /* SocketConnection.swift in Sources */,
  2812. 1F77A6082AB9A58D007B6037 /* NCRoomParticipants.m in Sources */,
  2813. 1FF4DAAD2C0A114900C1B952 /* OcsResponse.swift in Sources */,
  2814. 1FF2FD862AB99F5B000C9905 /* NCDatabaseManager.m in Sources */,
  2815. );
  2816. runOnlyForDeploymentPostprocessing = 0;
  2817. };
  2818. 2C0574791EDD9E8E00D9E7F2 /* Sources */ = {
  2819. isa = PBXSourcesBuildPhase;
  2820. buildActionMask = 2147483647;
  2821. files = (
  2822. 2C444703265D641300DF1DBC /* NCUserDefaults.m in Sources */,
  2823. 2C4747E92CB67177002828F2 /* PollMessageView.swift in Sources */,
  2824. 2CD80F482A4304AD00919057 /* OpenConversationsTableViewController.swift in Sources */,
  2825. 1FEC459E2A02BCB900A636AA /* ReferenceGithubPermalinkView.swift in Sources */,
  2826. 2CC1C38729C0945700C8436B /* DRCellSlideAction.m in Sources */,
  2827. 1FEDE3C6257D439500853F79 /* NCChatFileController.m in Sources */,
  2828. 1FEDE3CE257D43AB00853F79 /* NCMessageFileParameter.m in Sources */,
  2829. 2C4446DD2658158000DF1DBC /* NCChatBlock.m in Sources */,
  2830. 1FDCC3F029ECB4CE00DEB39B /* AvatarButton.swift in Sources */,
  2831. 2C06BF6720AC647A0031EB46 /* DateHeaderView.m in Sources */,
  2832. 2CB6ACDA2641483800D3D641 /* NCMessageLocationParameter.m in Sources */,
  2833. 1F61C767285E35A6004D74D8 /* DiagnosticsTableViewController.swift in Sources */,
  2834. 1F1B0F472BE047CE003FD766 /* StandardInteractionController.swift in Sources */,
  2835. 2CD5F3242142781A006B71BF /* NCExternalSignalingController.m in Sources */,
  2836. 2C0574851EDD9E8E00D9E7F2 /* AppDelegate.m in Sources */,
  2837. 2C4987BD21E640E20060AC27 /* CallKitManager.m in Sources */,
  2838. 1F1B0F4C2BE18FF3003FD766 /* CustomPresentableNavigationController.swift in Sources */,
  2839. 2C4446F3265D51A600DF1DBC /* NCPushNotificationsUtils.m in Sources */,
  2840. 2C0424902CA32D45004772F6 /* BaseChatTableViewCell+Audio.swift in Sources */,
  2841. 2C1ABDE5257F883400AEDFB6 /* ABContact.m in Sources */,
  2842. 2C5BFBEF288A947900E75118 /* PollVotingView.swift in Sources */,
  2843. 1FAB2EF02AD1EAA3001214EB /* RLMSupport.swift in Sources */,
  2844. 1F1B50342B8E069800B0F2F4 /* BaseChatTableViewCell.swift in Sources */,
  2845. 2C1EF36B25505DCE007C9768 /* NCNavigationController.m in Sources */,
  2846. DA755811278EF3EF00A48A1B /* UserSettingsTableViewCell.swift in Sources */,
  2847. 1FA38C9029A4B3C6008871B8 /* NCNotificationAction.swift in Sources */,
  2848. 2C44B4D127FF05A000AD1C86 /* ReactionsSummaryView.swift in Sources */,
  2849. 2CD4F6B72C11C80600ED594F /* ContactsSearchResultTableViewContoller.swift in Sources */,
  2850. 1FB7B99A2BF0DF290093CE98 /* BannedActorCell.swift in Sources */,
  2851. 1F35F8FB2AEEDBC600044BDA /* ChatViewControllerExtension.swift in Sources */,
  2852. 2CC007B420D7AE990096D91F /* ResultMultiSelectionTableViewController.m in Sources */,
  2853. 2CA1CCC31F166CC5002FE6A2 /* NCRoom.m in Sources */,
  2854. 2C06BF5D20A89F510031EB46 /* NCRoomsManager.m in Sources */,
  2855. 2CB6ACCA26401D5200D3D641 /* GeoLocationRichObject.m in Sources */,
  2856. 2C78EF9C1F826B22008AFA74 /* NCCallController.m in Sources */,
  2857. 1F1B50442B9095D100B0F2F4 /* FederatedCapabilities.m in Sources */,
  2858. 1FF4DAA22C0338D000C1B952 /* RoomDescriptionTableViewCell.swift in Sources */,
  2859. 2C5BFBF628902E0300E75118 /* PollFooterView.swift in Sources */,
  2860. 2C4D7D761F30F7B600FF4A0D /* ARDUtilities.m in Sources */,
  2861. 1FF4DA7E2C0237D000C1B952 /* DirectoryTableViewCell.swift in Sources */,
  2862. 2CB6ACE92641954700D3D641 /* MapViewController.m in Sources */,
  2863. 1FF1360F2BFB4F8C006A6101 /* NCRoom.swift in Sources */,
  2864. 1F8995B32970644C00CABA33 /* ColorGenerator.swift in Sources */,
  2865. 1F1B0F2C2BDBB3AC003FD766 /* NCMediaViewerViewController.swift in Sources */,
  2866. 1FB7B98E2BF0CBA60093CE98 /* BannedActor.swift in Sources */,
  2867. 1F1B503A2B8F9E1300B0F2F4 /* BaseChatTableViewCell+File.swift in Sources */,
  2868. 1F5813F928EB23EF00318FC3 /* NCSplitViewPlaceholderViewController.swift in Sources */,
  2869. 2CC32E9227F45AE000BB8C39 /* ReactionsViewCell.swift in Sources */,
  2870. 1F1B0F452BE047CE003FD766 /* ModalPresentationController.swift in Sources */,
  2871. 2CBF82AE1FC888FC00636459 /* NCPushNotification.m in Sources */,
  2872. 2CC7159420C54D080045C789 /* ChatTableViewCell.m in Sources */,
  2873. 1F8AAC322C518759004DA20A /* SignalingSettings.swift in Sources */,
  2874. 1F1B0F272BDA61C5003FD766 /* AllocationTracker.swift in Sources */,
  2875. 2CA1CCAA1F02D1A4002FE6A2 /* NCAPIController.m in Sources */,
  2876. 1F1B0F302BDBC9D6003FD766 /* NCMediaViewerPageViewController.swift in Sources */,
  2877. DA66582B27B6992F00B46B11 /* UserProfileTableViewController+AvatarSetup.swift in Sources */,
  2878. 2C69323D2923ECAA00017AD2 /* WSMessage.m in Sources */,
  2879. 2C3780C3210F49DC003F9AE8 /* HeaderWithButton.m in Sources */,
  2880. 1FB7B9952BF0DF1C0093CE98 /* BannedActorTableViewController.swift in Sources */,
  2881. 2C1ABDC6257A7CF000AEDFB6 /* NCContactsManager.m in Sources */,
  2882. 2C5BFBEA28772A9A00E75118 /* NCUnifiedSearchController.swift in Sources */,
  2883. 1F4DD3EB2571C688007DC98E /* EmojiUtils.swift in Sources */,
  2884. 2C4D7D731F309DA500FF4A0D /* RTCSessionDescription+JSON.m in Sources */,
  2885. 2CB3041C2264775E0053078A /* SLKTextView+SLKAdditions.m in Sources */,
  2886. 2C57CD8428C2255000B22E03 /* PollCreationViewController.swift in Sources */,
  2887. 1F77A6272ABA0CD9007B6037 /* NCScreensharingController.m in Sources */,
  2888. 2CEDA88C26F492610044552B /* NSMutableAttributedString+Extensions.swift in Sources */,
  2889. 2C5BFBFB2891598A00E75118 /* PollResultTableViewCell.swift in Sources */,
  2890. 1FA20C8A284001D80062B4F3 /* DebounceWebView.swift in Sources */,
  2891. 1F1B0F322BDC57E3003FD766 /* UIPageViewControllerExtension.swift in Sources */,
  2892. 2C4CDCD126A84E500023F403 /* ShareTableViewCell.m in Sources */,
  2893. 2C8CDD0621C2EDE8004E2997 /* AvatarBackgroundImageView.m in Sources */,
  2894. 2C9B0B9C217F756B00A4752C /* NCNotification.m in Sources */,
  2895. 2C2D7A172B8C9C0000642373 /* RoomCreationTableViewController.swift in Sources */,
  2896. 1F8995B52973547700CABA33 /* WebRTCCommon.swift in Sources */,
  2897. 1F8AAC3C2C519689004DA20A /* StunServer.swift in Sources */,
  2898. 2C2145682BF6B8E900470C0C /* NewRoomTableViewController.swift in Sources */,
  2899. 1F1B503E2B8FB12100B0F2F4 /* BaseChatTableViewCell+Message.swift in Sources */,
  2900. DA66583127B6B24E00B46B11 /* UserProfileTableViewController+Utils.swift in Sources */,
  2901. 1F1B0F422BE047CE003FD766 /* UIViewController+Transitions.swift in Sources */,
  2902. 1F90EFBC25FE39F800F3FA55 /* NCIntentController.m in Sources */,
  2903. 2C1ABD9925769F7500AEDFB6 /* ShareItem.m in Sources */,
  2904. 2C2E64251F3462AF00D39CE8 /* NCSignalingMessage.m in Sources */,
  2905. 2CA1554B208F2E5700CE8EF0 /* NCMessageTextView.m in Sources */,
  2906. 2C4D7D721F309DA500FF4A0D /* RTCIceCandidate+JSON.m in Sources */,
  2907. 1F77A62F2ABAFCEB007B6037 /* DarwinNotificationCenter.swift in Sources */,
  2908. 2C9E6CCE1F6F34F000399B7A /* ARDSDPUtils.m in Sources */,
  2909. 2C06330F2046CC8B0043481A /* NCUserInterfaceController.m in Sources */,
  2910. 2CB304222264775E0053078A /* UIView+SLKAdditions.m in Sources */,
  2911. 1F11FB7229C07B04001E21E7 /* NCZoomableView.swift in Sources */,
  2912. 2C4446F0265D454200DF1DBC /* NotificationCenterNotifications.m in Sources */,
  2913. 2C6955152B0CE1A30070F6E1 /* NCUtils.swift in Sources */,
  2914. 1FB78E1F2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift in Sources */,
  2915. 1F3D3B22255F109E00230DAE /* BarButtonItemWithActivity.m in Sources */,
  2916. 2C0574821EDD9E8E00D9E7F2 /* main.m in Sources */,
  2917. 1FDE7C9A28DE14A200CB718E /* ReferenceView.swift in Sources */,
  2918. 2CC32E9827F5D9BD00BB8C39 /* NCChatReaction.m in Sources */,
  2919. 2C40281522832EED0000DDFC /* NCDatabaseManager.m in Sources */,
  2920. 1F1B0F362BDD8B9C003FD766 /* NCActivityIndicator.swift in Sources */,
  2921. 1F3C419F29EDAC7D00F58435 /* RoomAvatarInfoTableViewController.swift in Sources */,
  2922. 1FF4DAAA2C0A114900C1B952 /* OcsResponse.swift in Sources */,
  2923. 1FAB2E852ACB482B001214EB /* ChatViewController.swift in Sources */,
  2924. 1F5813F828EB23EF00318FC3 /* NCSplitViewController.swift in Sources */,
  2925. 2C5BFBFE2891C3DF00E75118 /* PollResultsDetailsViewController.swift in Sources */,
  2926. 1F8AAC372C519577004DA20A /* TurnServer.swift in Sources */,
  2927. 2CA1CCA41F025F64002FE6A2 /* RoomsTableViewController.m in Sources */,
  2928. 2CB3041A2264775E0053078A /* SLKTextInput+Implementation.m in Sources */,
  2929. 2C90E5D31EE80C870093D85A /* AuthenticationViewController.m in Sources */,
  2930. 2C604BD9211988A700D34DCD /* SystemMessageTableViewCell.m in Sources */,
  2931. 1F1B50472B90CDF800B0F2F4 /* TalkCapabilities.m in Sources */,
  2932. 2CA1CCD01F1E1779002FE6A2 /* SearchTableViewController.m in Sources */,
  2933. 1F1C0D8929AFB89900D17C6D /* VLCKitVideoViewController.swift in Sources */,
  2934. 2C9B0B98217F6DBA00A4752C /* NCNotificationController.m in Sources */,
  2935. 2C36A04A261487BC0026F04A /* DetailedOptionsSelectorTableViewController.m in Sources */,
  2936. 2CA52ACB2670D02800619610 /* VoiceMessageRecordingView.m in Sources */,
  2937. 2C7381562106136000CDB8DB /* NCChatTitleView.m in Sources */,
  2938. 1FF4DA872C02626D00C1B952 /* NCBaseSessionManager.swift in Sources */,
  2939. 1FADECD62B821E24007AD94B /* FederationInvitationTableViewController.swift in Sources */,
  2940. 2C98F77921622445001A6A73 /* RoomSearchTableViewController.m in Sources */,
  2941. 2CB3041B2264775E0053078A /* SLKTextInputbar.m in Sources */,
  2942. 1F1B0F432BE047CE003FD766 /* ModalTransitionAnimator.swift in Sources */,
  2943. 2C78E9E325120DE600E3D4CA /* NCUserStatus.m in Sources */,
  2944. 2C0574A41EDDA2E300D9E7F2 /* LoginViewController.m in Sources */,
  2945. 2C78EFA51F86FF4A008AFA74 /* CallParticipantViewCell.m in Sources */,
  2946. 1F66B72C29FA9414003FB168 /* SLKDefaultTypingIndicatorView.m in Sources */,
  2947. 1F46CE2928E05B3200E7D88E /* ReferenceDefaultView.swift in Sources */,
  2948. 2C444706265E59B100DF1DBC /* ShareConfirmationCollectionViewCell.m in Sources */,
  2949. 1FCE3D552C9C189D009C68A9 /* NCChatFileControllerWrapper.swift in Sources */,
  2950. 2C78EF991F80F81E008AFA74 /* NCSignalingController.m in Sources */,
  2951. 1FDB47F82C9C7E3F00D6F423 /* NCDatabaseManager.swift in Sources */,
  2952. 2CB304202264775E0053078A /* UIResponder+SLKAdditions.m in Sources */,
  2953. 2C8E2A1B232174C20022BFC9 /* MessageSeparatorTableViewCell.m in Sources */,
  2954. 1FAB2EEE2AD1BC1B001214EB /* UIControlExtensions.swift in Sources */,
  2955. 1F7625E52901B0DB00834869 /* CallsFromOldAccountViewController.swift in Sources */,
  2956. 2CB3041E2264775E0053078A /* SLKTextViewController.m in Sources */,
  2957. 2CC007CE20E50B0A0096D91F /* MessageBodyTextView.m in Sources */,
  2958. 2CBF82B21FCC7DBA00636459 /* CCCertificate.m in Sources */,
  2959. 2CC1FF4828183958009F7288 /* NCDeckCardParameter.m in Sources */,
  2960. 2C3780BD2107209C003F9AE8 /* NCRoomParticipants.m in Sources */,
  2961. 1F5683CF2BA7980C0023E151 /* FilePreviewImageView.swift in Sources */,
  2962. 1F0B0A722BA264540073FF8D /* MentionSuggestion.swift in Sources */,
  2963. 2CA1CCCD1F181741002FE6A2 /* NCUser.m in Sources */,
  2964. 1F77A6162AB9B161007B6037 /* ScreenCaptureController.m in Sources */,
  2965. 2CF8AD3F2A0010FB00A4D3E6 /* MessageTranslationViewController.swift in Sources */,
  2966. 2C21446E2BB5B54D005A6537 /* BaseChatTableViewCell+Location.swift in Sources */,
  2967. 2C4230F72B207AB00013E1FA /* ContextChatViewController.swift in Sources */,
  2968. 2CBD0D5A2C8770A40013C089 /* UIImageExtension.swift in Sources */,
  2969. 1F90DA0429E9A28E00E81E3D /* AvatarManager.swift in Sources */,
  2970. 1F1DF8432C64006E00E5EA86 /* SignalingParticipant.swift in Sources */,
  2971. 2CC1FF4428147F11009F7288 /* RoomSharedItemsTableViewController.swift in Sources */,
  2972. 2CC1C38629C0945700C8436B /* DRCellSlideGestureRecognizer.m in Sources */,
  2973. 1FF4DA9B2C032AAC00C1B952 /* RoomTableViewCell.swift in Sources */,
  2974. 1FB52E762842C75E00AC741B /* QRCodeLoginController.swift in Sources */,
  2975. 1F5A24332ADA77DA009939FE /* InputbarViewController.swift in Sources */,
  2976. 807E30762A83A90F00089D28 /* UserStatusOptionsSwiftUI.swift in Sources */,
  2977. 2C4446D8265814D100DF1DBC /* ServerCapabilities.m in Sources */,
  2978. DA66582D27B6A73800B46B11 /* UserProfileTableViewController+DelegateMethods.swift in Sources */,
  2979. 1F371A372A7B921A006CBFB3 /* DatePickerTextField.swift in Sources */,
  2980. 1F1B0F482BE047CE003FD766 /* CustomPresentable.swift in Sources */,
  2981. 1FE0C56E2A0531270083576A /* ReferenceTalkView.swift in Sources */,
  2982. 1FE7DE302BB4598F0040EE12 /* RoomInvitationViewCell.swift in Sources */,
  2983. 1F77A6222AB9EB06007B6037 /* SocketConnection.m in Sources */,
  2984. 1FF136152BFB74C3006A6101 /* NCChatMessage.swift in Sources */,
  2985. 1FDB47F62C9C71CE00D6F423 /* TalkAccount.swift in Sources */,
  2986. 2CC1C38829C0945700C8436B /* DRCellSlideActionView.m in Sources */,
  2987. 1FA732FC2966CBB7003D2103 /* CallFlowLayout.swift in Sources */,
  2988. 2C78EF951F7E70EB008AFA74 /* NCPeerConnection.m in Sources */,
  2989. 2C06BF6C20AEB0030031EB46 /* RoundedNumberView.m in Sources */,
  2990. 2C78EFA01F828C41008AFA74 /* CallViewController.m in Sources */,
  2991. 1FDDB0DB2AF440E100FBAFB7 /* BoundsChangedFlowLayout.swift in Sources */,
  2992. DA1AEFC3270F1FA90088E519 /* DateLabelCustom.swift in Sources */,
  2993. 2C6E74462386D33200AE396C /* ReplyMessageView.m in Sources */,
  2994. DA8801A227A2DA00009EF248 /* UserProfileTableViewController.swift in Sources */,
  2995. 1F0A1D442A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift in Sources */,
  2996. 2C16A82C28E7284D00EDE523 /* NCButton.swift in Sources */,
  2997. DA75580F278EEA1000A48A1B /* SettingsTableViewController.swift in Sources */,
  2998. 1FF4DA962C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */,
  2999. 2CB3041D2264775E0053078A /* SLKTextView.m in Sources */,
  3000. 1F1B0F4A2BE047D5003FD766 /* OneWayPanGestureRecognizer.swift in Sources */,
  3001. 1FE94734293CE55600D6584C /* NCCameraController.swift in Sources */,
  3002. 2CB304212264775E0053078A /* UIScrollView+SLKAdditions.m in Sources */,
  3003. 2C4446D32658147900DF1DBC /* TalkAccount.m in Sources */,
  3004. 2CA1CCD61F1E664C002FE6A2 /* ContactsTableViewCell.m in Sources */,
  3005. 1F77A6172AB9B161007B6037 /* ScreenCapturer.m in Sources */,
  3006. 1FCE3D572C9C4D18009C68A9 /* ReferenceGiphyView.swift in Sources */,
  3007. 1FFF41622C70937B00162F4D /* ReferenceZammadView.swift in Sources */,
  3008. 1F98DF9C28E7484700E05174 /* ReferenceDeckView.swift in Sources */,
  3009. DA66582F27B6B19C00B46B11 /* UserProfileTableViewController+Actions.swift in Sources */,
  3010. 2C6E7449238C1A0800AE396C /* QuotedMessageView.m in Sources */,
  3011. 2C1ABDCE257E939600AEDFB6 /* NCContact.m in Sources */,
  3012. 2C7A12422017872600864818 /* AddParticipantsTableViewController.m in Sources */,
  3013. 2C84BCCC29EEB9C6001BA6DA /* CallReactionView.swift in Sources */,
  3014. 2C43BA7621309A1000B3068A /* NCMessageParameter.m in Sources */,
  3015. 2CC32E8D27F4540E00BB8C39 /* ReactionsView.swift in Sources */,
  3016. 2C4DE9F221F732B40096940D /* NCAudioController.m in Sources */,
  3017. 80832B782A823D0700195A97 /* UserStatusMessageSwiftUIView.swift in Sources */,
  3018. 2C8A2BC9221F094F00DE6D2C /* DirectoryTableViewController.m in Sources */,
  3019. 1FADECD82B82269E007AD94B /* FederationInvitationCell.swift in Sources */,
  3020. 1F61C76B285F65E1004D74D8 /* SimpleTableViewController.swift in Sources */,
  3021. 2CB997C52A052449003C41AC /* EmojiAvatarPickerViewController.swift in Sources */,
  3022. 1F1B0F442BE047CE003FD766 /* ModalTransitionManager.swift in Sources */,
  3023. 2C5BFBF2288A97D800E75118 /* NCPoll.m in Sources */,
  3024. 1F66B71F29FA703B003FB168 /* TypingIndicatorView.swift in Sources */,
  3025. 1F35F9042AEEDF0E00044BDA /* AutoCompletionTableViewCell.m in Sources */,
  3026. 2C42ADB420B58E6300296DEA /* NCChatController.m in Sources */,
  3027. 2C4CDCD026A84AEA0023F403 /* ShareViewController.m in Sources */,
  3028. 1FD9182928C55A73009092AB /* BGTaskHelper.swift in Sources */,
  3029. 1F66B72929FA936E003FB168 /* SLKDefaultReplyView.m in Sources */,
  3030. 1F785DDD2707865F00AC4B40 /* VoiceMessageTranscribeViewController.m in Sources */,
  3031. 2C4446EC265D25BA00DF1DBC /* NCKeyChainController.m in Sources */,
  3032. 1FD6F83C2B825069004048AB /* NCRoomsManagerExtensions.swift in Sources */,
  3033. 1FF4DA802C023FF300C1B952 /* NCChatFileStatus.swift in Sources */,
  3034. DA8801A427AC52AC009EF248 /* TextInputTableViewCell.swift in Sources */,
  3035. 2C2A788E2359CC8800EEB797 /* NCAppBranding.m in Sources */,
  3036. 1F3C41A329EDF05700F58435 /* AvatarEditView.swift in Sources */,
  3037. 2CA15541208E350300CE8EF0 /* NCChatMessage.m in Sources */,
  3038. 2CB304192264775E0053078A /* SLKInputAccessoryView.m in Sources */,
  3039. 2CA1CC911F014354002FE6A2 /* NCConnectionController.m in Sources */,
  3040. 1FB6678F28CE381300D29F8D /* SubtitleTableViewCell.swift in Sources */,
  3041. 1FF4DA912C02677C00C1B952 /* NCImageSessionManager.swift in Sources */,
  3042. 1F24B5A228E0648600654457 /* ReferenceGithubView.swift in Sources */,
  3043. 2C4D7D691F2F7DBC00FF4A0D /* ARDSettingsModel.m in Sources */,
  3044. 1FF4DA8C2C0263A200C1B952 /* NCPushProxySessionManager.swift in Sources */,
  3045. 2CB6ACBC26385A3800D3D641 /* ShareLocationViewController.m in Sources */,
  3046. 2C04249B2CA33681004772F6 /* AudioPlayerView.swift in Sources */,
  3047. 1F1B0F462BE047CE003FD766 /* InteractionControlling.swift in Sources */,
  3048. 1FDCC3D429EBF6E700DEB39B /* AvatarImageView.swift in Sources */,
  3049. 1FB78E262B6AE5A600B0D69D /* FederationInvitation.swift in Sources */,
  3050. 1FDFC94D2BA50B9100670DF4 /* UIFontExtension.swift in Sources */,
  3051. 1F468E7828DCC7310099597B /* EmojiTextField.swift in Sources */,
  3052. 80832B762A822E5100195A97 /* UserStatusSwiftUIView.swift in Sources */,
  3053. 1FF4DA822C025DB900C1B952 /* NCAPISessionManager.swift in Sources */,
  3054. 1F1DF83C2C5C17AF00E5EA86 /* TalkActor.swift in Sources */,
  3055. 2C4747E62CB6711F002828F2 /* BaseChatTableViewCell+Poll.swift in Sources */,
  3056. 2C444708265E59BC00DF1DBC /* ShareItemController.m in Sources */,
  3057. 2CA1CC951F014EF9002FE6A2 /* NCSettingsController.m in Sources */,
  3058. 2C440D1120EA4A770005F9BB /* RoomInfoTableViewController.m in Sources */,
  3059. 1FAB2E832AC9EC3F001214EB /* BaseChatViewController.swift in Sources */,
  3060. 2C4D7D631F2F7C2C00FF4A0D /* ARDCaptureController.m in Sources */,
  3061. 2C4D7D6A1F2F7DBC00FF4A0D /* ARDSettingsStore.m in Sources */,
  3062. 1F35F8E02AEEB9DE00044BDA /* ShareConfirmationViewController.swift in Sources */,
  3063. 1FF4DAA02C03351E00C1B952 /* RoomNameTableViewCell.swift in Sources */,
  3064. 2C9200C32474262C0050084F /* UIBarButtonItem+Badge.m in Sources */,
  3065. 1FD6F83E2B87B712004048AB /* NCUserStatusExtensions.swift in Sources */,
  3066. 1FEC45A32A02F92700A636AA /* GithubPermalinkViewController.swift in Sources */,
  3067. 2CC7158C20B8394A0045C789 /* PlaceholderView.m in Sources */,
  3068. );
  3069. runOnlyForDeploymentPostprocessing = 0;
  3070. };
  3071. 2C62AF9F24C08845007E460A /* Sources */ = {
  3072. isa = PBXSourcesBuildPhase;
  3073. buildActionMask = 2147483647;
  3074. files = (
  3075. 1F4DD3ED2571C688007DC98E /* EmojiUtils.swift in Sources */,
  3076. 1F35F8EB2AEEBC1100044BDA /* UIResponder+SLKAdditions.m in Sources */,
  3077. 2C62B02424C1BDCF007E460A /* NCAppBranding.m in Sources */,
  3078. 2C1ABD8625769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.m in Sources */,
  3079. 1F35F90B2AEEE76C00044BDA /* ReplyMessageView.m in Sources */,
  3080. 1F1C999E2909846400EACF02 /* BGTaskHelper.swift in Sources */,
  3081. 1F35F8F12AEEC25B00044BDA /* TypingIndicatorView.swift in Sources */,
  3082. 2C62AFFD24C1BDA5007E460A /* NCMessageParameter.m in Sources */,
  3083. 1F35F8EC2AEEBC1400044BDA /* UIScrollView+SLKAdditions.m in Sources */,
  3084. 1FF136172BFB74CF006A6101 /* NCChatMessage.swift in Sources */,
  3085. 1FF4DA8A2C0262BB00C1B952 /* NCBaseSessionManager.swift in Sources */,
  3086. 2C62B00C24C1BDC1007E460A /* NCNotification.m in Sources */,
  3087. 1F8AAC3E2C519689004DA20A /* StunServer.swift in Sources */,
  3088. 1F1C0D7F29A7F33600D17C6D /* NCNotificationAction.swift in Sources */,
  3089. 1F35F8E62AEEBC0300044BDA /* SLKTextInput+Implementation.m in Sources */,
  3090. 1FF4DA982C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */,
  3091. 1F35F8E72AEEBC0600044BDA /* SLKTextInputbar.m in Sources */,
  3092. 1F35F8E52AEEBC0100044BDA /* SLKInputAccessoryView.m in Sources */,
  3093. 1F35F8E92AEEBC0C00044BDA /* SLKTextView.m in Sources */,
  3094. 2C4446FC265D5C5800DF1DBC /* NCRoomParticipants.m in Sources */,
  3095. 2CB6ACDC2641483800D3D641 /* NCMessageLocationParameter.m in Sources */,
  3096. 1F35F8E82AEEBC0800044BDA /* SLKTextView+SLKAdditions.m in Sources */,
  3097. 1F35F9052AEEDF0E00044BDA /* AutoCompletionTableViewCell.m in Sources */,
  3098. 2C1ABD8925769E7D00AEDFB6 /* ShareItem.m in Sources */,
  3099. 1F35F90A2AEEE76A00044BDA /* QuotedMessageView.m in Sources */,
  3100. 2C62B02E24C1BDD7007E460A /* PlaceholderView.m in Sources */,
  3101. 2C62B01024C1BDC5007E460A /* NCRoom.m in Sources */,
  3102. 1FDCC3ED29EC7E6700DEB39B /* AvatarImageView.swift in Sources */,
  3103. 1F35F8E32AEEBBE000044BDA /* NCChatTitleView.m in Sources */,
  3104. 1FDCC3EE29EC7E8500DEB39B /* AvatarManager.swift in Sources */,
  3105. 1F0B0A742BA265310073FF8D /* MentionSuggestion.swift in Sources */,
  3106. 2C62B00D24C1BDC1007E460A /* NCPushNotification.m in Sources */,
  3107. 1F1B50492B90CF0800B0F2F4 /* TalkCapabilities.m in Sources */,
  3108. 1F1DF83E2C5C17AF00E5EA86 /* TalkActor.swift in Sources */,
  3109. 1FB7B9912BF0CDF80093CE98 /* BannedActor.swift in Sources */,
  3110. 2C62B01C24C1BDC9007E460A /* CCCertificate.m in Sources */,
  3111. 2C4446F9265D5A0700DF1DBC /* NotificationCenterNotifications.m in Sources */,
  3112. 1F35F8ED2AEEBC1600044BDA /* UIView+SLKAdditions.m in Sources */,
  3113. 2C1ABD8725769E7D00AEDFB6 /* ShareItemController.m in Sources */,
  3114. 1FDFC94F2BA50B9100670DF4 /* UIFontExtension.swift in Sources */,
  3115. 1F35F8EA2AEEBC0E00044BDA /* SLKTextViewController.m in Sources */,
  3116. 2C6955132B0CE1A20070F6E1 /* NCUtils.swift in Sources */,
  3117. 1F8AAC342C518B8A004DA20A /* SignalingSettings.swift in Sources */,
  3118. 2C62AFFF24C1BDAA007E460A /* NCUser.m in Sources */,
  3119. 1FAB2EF22AD1EAA3001214EB /* RLMSupport.swift in Sources */,
  3120. 1FB78E212B6ADBB700B0D69D /* NCAPIControllerExtensions.swift in Sources */,
  3121. 2C62B00724C1BDBD007E460A /* NCAPIController.m in Sources */,
  3122. 2C1ABDD0257E939600AEDFB6 /* NCContact.m in Sources */,
  3123. 2C4446FE265D5DFA00DF1DBC /* ABContact.m in Sources */,
  3124. 1F35F8EF2AEEBC1A00044BDA /* SLKDefaultReplyView.m in Sources */,
  3125. 1F35F8E22AEEBAF900044BDA /* InputbarViewController.swift in Sources */,
  3126. 1F35F8E12AEEB9DE00044BDA /* ShareConfirmationViewController.swift in Sources */,
  3127. 1F90EFBE25FE39F800F3FA55 /* NCIntentController.m in Sources */,
  3128. 1FF4DA842C025DC000C1B952 /* NCAPISessionManager.swift in Sources */,
  3129. 1F1DF8452C64006E00E5EA86 /* SignalingParticipant.swift in Sources */,
  3130. 2C3195C224C5E2100066F221 /* ShareTableViewCell.m in Sources */,
  3131. 2CC1FF4A2818395F009F7288 /* NCDeckCardParameter.m in Sources */,
  3132. 1FF136112BFB4F8C006A6101 /* NCRoom.swift in Sources */,
  3133. 2C4446DA265814D100DF1DBC /* ServerCapabilities.m in Sources */,
  3134. 1FF4DA932C02678000C1B952 /* NCImageSessionManager.swift in Sources */,
  3135. 2C444705265D641300DF1DBC /* NCUserDefaults.m in Sources */,
  3136. 1FF4DA8E2C0264B200C1B952 /* NCPushProxySessionManager.swift in Sources */,
  3137. 2C4446F5265D583200DF1DBC /* NCKeyChainController.m in Sources */,
  3138. 1FDDB0D92AF440DD00FBAFB7 /* BoundsChangedFlowLayout.swift in Sources */,
  3139. 2C62AFFA24C1BDA5007E460A /* NCChatMessage.m in Sources */,
  3140. 1FC940BA2A5F21FD00FFFADE /* SwiftMarkdownObjCBridge.swift in Sources */,
  3141. 2C4446D52658147900DF1DBC /* TalkAccount.m in Sources */,
  3142. 1F35F9062AEEE3C400044BDA /* NCMessageTextView.m in Sources */,
  3143. 2C1EF36D25505DCE007C9768 /* NCNavigationController.m in Sources */,
  3144. 1F35F8F02AEEBC1D00044BDA /* SLKDefaultTypingIndicatorView.m in Sources */,
  3145. 1F35F8FC2AEEDBC600044BDA /* ChatViewControllerExtension.swift in Sources */,
  3146. 1FEDE3D0257D43AB00853F79 /* NCMessageFileParameter.m in Sources */,
  3147. 2C62AFB924C1A4E6007E460A /* ShareViewController.m in Sources */,
  3148. 1F8AAC392C519577004DA20A /* TurnServer.swift in Sources */,
  3149. 1F35F8F32AEEC29A00044BDA /* AvatarButton.swift in Sources */,
  3150. 2C4446DF2658158000DF1DBC /* NCChatBlock.m in Sources */,
  3151. 1FF4DAAC2C0A114900C1B952 /* OcsResponse.swift in Sources */,
  3152. 1F1B504C2B90CF0C00B0F2F4 /* FederatedCapabilities.m in Sources */,
  3153. 1FB78E282B6AE8C900B0D69D /* FederationInvitation.swift in Sources */,
  3154. 2CC32E9A27F5DADB00BB8C39 /* NCChatReaction.m in Sources */,
  3155. 2C62AFBB24C1B7B1007E460A /* NCDatabaseManager.m in Sources */,
  3156. 2C5BFBF4288AA37F00E75118 /* NCPoll.m in Sources */,
  3157. 1F35F9072AEEE3EC00044BDA /* NCUserStatus.m in Sources */,
  3158. );
  3159. runOnlyForDeploymentPostprocessing = 0;
  3160. };
  3161. 2CC0014B24A1F0E900A20167 /* Sources */ = {
  3162. isa = PBXSourcesBuildPhase;
  3163. buildActionMask = 2147483647;
  3164. files = (
  3165. 2C1ABDCF257E939600AEDFB6 /* NCContact.m in Sources */,
  3166. 2CC001DC24A37AD400A20167 /* NCAppBranding.m in Sources */,
  3167. 2C4446D42658147900DF1DBC /* TalkAccount.m in Sources */,
  3168. 1FDCC3E329EC787400DEB39B /* AvatarManager.swift in Sources */,
  3169. 2CC0015324A1F0E900A20167 /* NotificationService.m in Sources */,
  3170. 1FF4DA852C025DC000C1B952 /* NCAPISessionManager.swift in Sources */,
  3171. 1FEDE3CF257D43AB00853F79 /* NCMessageFileParameter.m in Sources */,
  3172. 1FB78E222B6ADBB700B0D69D /* NCAPIControllerExtensions.swift in Sources */,
  3173. 1F1C999D2909846400EACF02 /* BGTaskHelper.swift in Sources */,
  3174. 1FAB2EF12AD1EAA3001214EB /* RLMSupport.swift in Sources */,
  3175. 1FDFC94E2BA50B9100670DF4 /* UIFontExtension.swift in Sources */,
  3176. 2C4446F4265D51A600DF1DBC /* NCPushNotificationsUtils.m in Sources */,
  3177. 1FA38C9129A4B3C6008871B8 /* NCNotificationAction.swift in Sources */,
  3178. 1F1DF83D2C5C17AF00E5EA86 /* TalkActor.swift in Sources */,
  3179. 1F1B504D2B90CF0C00B0F2F4 /* FederatedCapabilities.m in Sources */,
  3180. 2C4446DE2658158000DF1DBC /* NCChatBlock.m in Sources */,
  3181. 2C5BFBF3288AA37F00E75118 /* NCPoll.m in Sources */,
  3182. 2C4446D9265814D100DF1DBC /* ServerCapabilities.m in Sources */,
  3183. 2CC001CE24A37ACA00A20167 /* NCRoom.m in Sources */,
  3184. 1FF136162BFB74CF006A6101 /* NCChatMessage.swift in Sources */,
  3185. 1FB7B9922BF0CDF90093CE98 /* BannedActor.swift in Sources */,
  3186. 1F8AAC382C519577004DA20A /* TurnServer.swift in Sources */,
  3187. 2CC001C124A37AC500A20167 /* NCNotification.m in Sources */,
  3188. 2C4446FD265D5DFA00DF1DBC /* ABContact.m in Sources */,
  3189. 1F1DF8442C64006E00E5EA86 /* SignalingParticipant.swift in Sources */,
  3190. 1F8AAC3D2C519689004DA20A /* StunServer.swift in Sources */,
  3191. 2C4446F8265D5A0700DF1DBC /* NotificationCenterNotifications.m in Sources */,
  3192. 2C6955142B0CE1A20070F6E1 /* NCUtils.swift in Sources */,
  3193. 1FF4DA942C02678000C1B952 /* NCImageSessionManager.swift in Sources */,
  3194. 1F0B0A752BA265310073FF8D /* MentionSuggestion.swift in Sources */,
  3195. 1FC940B92A5F21FC00FFFADE /* SwiftMarkdownObjCBridge.swift in Sources */,
  3196. 1FF4DA882C0262BA00C1B952 /* NCBaseSessionManager.swift in Sources */,
  3197. 1F8AAC332C518B8A004DA20A /* SignalingSettings.swift in Sources */,
  3198. 2CB6ACDB2641483800D3D641 /* NCMessageLocationParameter.m in Sources */,
  3199. 2C4446FB265D5C5700DF1DBC /* NCRoomParticipants.m in Sources */,
  3200. 2CC1FF492818395E009F7288 /* NCDeckCardParameter.m in Sources */,
  3201. 2CC001C224A37AC500A20167 /* NCPushNotification.m in Sources */,
  3202. 1FF4DA972C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */,
  3203. 1FF4DAAB2C0A114900C1B952 /* OcsResponse.swift in Sources */,
  3204. 1F90EFBD25FE39F800F3FA55 /* NCIntentController.m in Sources */,
  3205. 2CC001DB24A37AD000A20167 /* CCCertificate.m in Sources */,
  3206. 1F4DD3EC2571C688007DC98E /* EmojiUtils.swift in Sources */,
  3207. 2C4446ED265D25BA00DF1DBC /* NCKeyChainController.m in Sources */,
  3208. 1F1B50482B90CF0800B0F2F4 /* TalkCapabilities.m in Sources */,
  3209. 2CC0016724A25BE100A20167 /* NCChatMessage.m in Sources */,
  3210. 1FF4DA8F2C0264B200C1B952 /* NCPushProxySessionManager.swift in Sources */,
  3211. 2CC0016324A25B7400A20167 /* NCDatabaseManager.m in Sources */,
  3212. 1FF136102BFB4F8C006A6101 /* NCRoom.swift in Sources */,
  3213. 2CC0016924A25C3400A20167 /* NCMessageParameter.m in Sources */,
  3214. 1FB78E292B6AE8CA00B0D69D /* FederationInvitation.swift in Sources */,
  3215. 2C444704265D641300DF1DBC /* NCUserDefaults.m in Sources */,
  3216. 2CC001B724A37A9A00A20167 /* NCUser.m in Sources */,
  3217. 2CC0016124A25B5500A20167 /* NCAPIController.m in Sources */,
  3218. 2CC32E9927F5DADA00BB8C39 /* NCChatReaction.m in Sources */,
  3219. );
  3220. runOnlyForDeploymentPostprocessing = 0;
  3221. };
  3222. /* End PBXSourcesBuildPhase section */
  3223. /* Begin PBXTargetDependency section */
  3224. 1F6D8C352B2E3756004376B8 /* PBXTargetDependency */ = {
  3225. isa = PBXTargetDependency;
  3226. target = 2C05747C1EDD9E8E00D9E7F2 /* NextcloudTalk */;
  3227. targetProxy = 1F6D8C342B2E3756004376B8 /* PBXContainerItemProxy */;
  3228. };
  3229. 1FD8AD912A3A162100787C16 /* PBXTargetDependency */ = {
  3230. isa = PBXTargetDependency;
  3231. target = 2C05747C1EDD9E8E00D9E7F2 /* NextcloudTalk */;
  3232. targetProxy = 1FD8AD902A3A162100787C16 /* PBXContainerItemProxy */;
  3233. };
  3234. 5EE5ACC52CF48BCA004D7EDB /* PBXTargetDependency */ = {
  3235. isa = PBXTargetDependency;
  3236. target = 1FF2FD5A2AB99CCB000C9905 /* BroadcastUploadExtension */;
  3237. targetProxy = 5EE5ACC42CF48BCA004D7EDB /* PBXContainerItemProxy */;
  3238. };
  3239. 5EE5ACC92CF48BDA004D7EDB /* PBXTargetDependency */ = {
  3240. isa = PBXTargetDependency;
  3241. target = 2CC0014E24A1F0E900A20167 /* NotificationServiceExtension */;
  3242. targetProxy = 5EE5ACC82CF48BDA004D7EDB /* PBXContainerItemProxy */;
  3243. };
  3244. 5EE5ACCC2CF48BDF004D7EDB /* PBXTargetDependency */ = {
  3245. isa = PBXTargetDependency;
  3246. target = 2C62AFA224C08845007E460A /* ShareExtension */;
  3247. targetProxy = 5EE5ACCB2CF48BDF004D7EDB /* PBXContainerItemProxy */;
  3248. };
  3249. /* End PBXTargetDependency section */
  3250. /* Begin PBXVariantGroup section */
  3251. 2C05748C1EDD9E8E00D9E7F2 /* Main.storyboard */ = {
  3252. isa = PBXVariantGroup;
  3253. children = (
  3254. 2C05748D1EDD9E8E00D9E7F2 /* Base */,
  3255. );
  3256. name = Main.storyboard;
  3257. sourceTree = "<group>";
  3258. };
  3259. 2C1D13A1253760EE00EC0533 /* LaunchScreen.xib */ = {
  3260. isa = PBXVariantGroup;
  3261. children = (
  3262. 2C1D13A2253760EE00EC0533 /* Base */,
  3263. );
  3264. name = LaunchScreen.xib;
  3265. sourceTree = "<group>";
  3266. };
  3267. 2C330374255E6EBC00BDB4E4 /* InfoPlist.strings */ = {
  3268. isa = PBXVariantGroup;
  3269. children = (
  3270. 2C330373255E6EBC00BDB4E4 /* en */,
  3271. 2CA80EDC256C1249006BA449 /* es */,
  3272. 2CA80EDE256C1296006BA449 /* de */,
  3273. 2CA80EE0256C12E7006BA449 /* it */,
  3274. 2C604A2B25E4556E00F23615 /* tr */,
  3275. 2C604A2D25E455AC00F23615 /* sl */,
  3276. 2C604A2F25E455C500F23615 /* hr */,
  3277. 2C604A3125E455D900F23615 /* pl */,
  3278. 2C604A3325E455ED00F23615 /* pt-BR */,
  3279. 2C604A3925E4568400F23615 /* nl */,
  3280. 2C604A3B25E4569300F23615 /* fr */,
  3281. 2C604A3D25E4569F00F23615 /* el */,
  3282. 2C604A4125E45A9400F23615 /* zh-Hans */,
  3283. 2C604A4325E45BAE00F23615 /* gl */,
  3284. 2C928BD3268A06BB00729332 /* cs */,
  3285. 2C928BD5268A0AAD00729332 /* hu */,
  3286. 2C928BD7268A0B2800729332 /* ko */,
  3287. 2C928BD9268A0BC000729332 /* eu */,
  3288. 2C4CDCD426AF16650023F403 /* ar */,
  3289. 1F21A0622C77863500ED8C0C /* nb-NO */,
  3290. 1F21A0652C77865D00ED8C0C /* ga */,
  3291. 1F21A06A2C77868000ED8C0C /* sv */,
  3292. 1F21A06B2C77869600ED8C0C /* sr */,
  3293. );
  3294. name = InfoPlist.strings;
  3295. sourceTree = "<group>";
  3296. };
  3297. 2C477C1828B79D980044DEB4 /* Localizable.stringsdict */ = {
  3298. isa = PBXVariantGroup;
  3299. children = (
  3300. 2C477C1728B79D980044DEB4 /* en */,
  3301. 2CEA990828B8B5780029216A /* de */,
  3302. 2CB2B24D28BCB9D900A9D606 /* cs */,
  3303. 2CB2B24E28BCB9E800A9D606 /* hu */,
  3304. 2CB2B24F28BCBABC00A9D606 /* pl */,
  3305. 2CB2B25128BF957100A9D606 /* tr */,
  3306. 2C57CD8228C204C600B22E03 /* es */,
  3307. 2C57CD8528CB3FAF00B22E03 /* eu */,
  3308. 2C67905128D35BEB00762744 /* sl */,
  3309. 1F21A0642C77863500ED8C0C /* nb-NO */,
  3310. 1F21A0662C77865D00ED8C0C /* ga */,
  3311. 1F21A0682C77868000ED8C0C /* sv */,
  3312. 1F21A06D2C77869600ED8C0C /* sr */,
  3313. );
  3314. name = Localizable.stringsdict;
  3315. sourceTree = "<group>";
  3316. };
  3317. 2C7F47AC20289B9600081CC7 /* Localizable.strings */ = {
  3318. isa = PBXVariantGroup;
  3319. children = (
  3320. 2C7F47AB20289B9600081CC7 /* en */,
  3321. 2CA80EDB256C1249006BA449 /* es */,
  3322. 2CA80EDD256C1296006BA449 /* de */,
  3323. 2CA80EDF256C12E7006BA449 /* it */,
  3324. 2C604A2A25E4556E00F23615 /* tr */,
  3325. 2C604A2C25E455AC00F23615 /* sl */,
  3326. 2C604A2E25E455C500F23615 /* hr */,
  3327. 2C604A3025E455D900F23615 /* pl */,
  3328. 2C604A3225E455ED00F23615 /* pt-BR */,
  3329. 2C604A3825E4568400F23615 /* nl */,
  3330. 2C604A3A25E4569300F23615 /* fr */,
  3331. 2C604A3C25E4569F00F23615 /* el */,
  3332. 2C604A4025E45A9400F23615 /* zh-Hans */,
  3333. 2C604A4225E45BAE00F23615 /* gl */,
  3334. 2C928BD2268A06BB00729332 /* cs */,
  3335. 2C928BD4268A0AAD00729332 /* hu */,
  3336. 2C928BD6268A0B2800729332 /* ko */,
  3337. 2C928BD8268A0BC000729332 /* eu */,
  3338. 2C928BDA268A103600729332 /* ja */,
  3339. 2C4CDCD326AF16650023F403 /* ar */,
  3340. 1F21A0632C77863500ED8C0C /* nb-NO */,
  3341. 1F21A0672C77865D00ED8C0C /* ga */,
  3342. 1F21A0692C77868000ED8C0C /* sv */,
  3343. 1F21A06C2C77869600ED8C0C /* sr */,
  3344. );
  3345. name = Localizable.strings;
  3346. sourceTree = "<group>";
  3347. };
  3348. /* End PBXVariantGroup section */
  3349. /* Begin XCBuildConfiguration section */
  3350. 1F6D8C372B2E3756004376B8 /* Debug */ = {
  3351. isa = XCBuildConfiguration;
  3352. baseConfigurationReference = 342600BABD1AD1FCA48B5E59 /* Pods-NextcloudTalkTests.debug.xcconfig */;
  3353. buildSettings = {
  3354. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  3355. BUNDLE_LOADER = "$(TEST_HOST)";
  3356. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3357. CLANG_ENABLE_MODULES = YES;
  3358. CLANG_ENABLE_OBJC_WEAK = YES;
  3359. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3360. CODE_SIGN_STYLE = Automatic;
  3361. CURRENT_PROJECT_VERSION = 1;
  3362. DEVELOPMENT_TEAM = L8PXSNYX82;
  3363. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  3364. GCC_C_LANGUAGE_STANDARD = gnu17;
  3365. GENERATE_INFOPLIST_FILE = YES;
  3366. HEADER_SEARCH_PATHS = (
  3367. "$(inherited)",
  3368. "\"${PODS_ROOT}/Headers/Public\"",
  3369. "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
  3370. "\"${PODS_ROOT}/Headers/Public/DateTools\"",
  3371. "\"${PODS_ROOT}/Headers/Public/GoogleToolboxForMac\"",
  3372. "\"${PODS_ROOT}/Headers/Public/GoogleWebRTC\"",
  3373. "\"${PODS_ROOT}/Headers/Public/Protobuf\"",
  3374. "\"${PODS_ROOT}/Headers/Public/nanopb\"",
  3375. "\"$(PROJECT_DIR)/ThirdParty\"/**",
  3376. );
  3377. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  3378. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  3379. MARKETING_VERSION = 1.0;
  3380. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3381. MTL_FAST_MATH = YES;
  3382. PRODUCT_BUNDLE_IDENTIFIER = com.nextcloud.Talk.NextcloudTalkTests;
  3383. PRODUCT_NAME = "$(TARGET_NAME)";
  3384. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  3385. SWIFT_EMIT_LOC_STRINGS = NO;
  3386. SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header.h";
  3387. SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
  3388. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3389. SWIFT_VERSION = 5.0;
  3390. TARGETED_DEVICE_FAMILY = "1,2";
  3391. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NextcloudTalk.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/NextcloudTalk";
  3392. };
  3393. name = Debug;
  3394. };
  3395. 1F6D8C382B2E3756004376B8 /* Release */ = {
  3396. isa = XCBuildConfiguration;
  3397. baseConfigurationReference = B7874918820589BF8FD69BED /* Pods-NextcloudTalkTests.release.xcconfig */;
  3398. buildSettings = {
  3399. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  3400. BUNDLE_LOADER = "$(TEST_HOST)";
  3401. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3402. CLANG_ENABLE_MODULES = YES;
  3403. CLANG_ENABLE_OBJC_WEAK = YES;
  3404. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3405. CODE_SIGN_STYLE = Automatic;
  3406. CURRENT_PROJECT_VERSION = 1;
  3407. DEVELOPMENT_TEAM = L8PXSNYX82;
  3408. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  3409. GCC_C_LANGUAGE_STANDARD = gnu17;
  3410. GENERATE_INFOPLIST_FILE = YES;
  3411. HEADER_SEARCH_PATHS = (
  3412. "$(inherited)",
  3413. "\"${PODS_ROOT}/Headers/Public\"",
  3414. "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
  3415. "\"${PODS_ROOT}/Headers/Public/DateTools\"",
  3416. "\"${PODS_ROOT}/Headers/Public/GoogleToolboxForMac\"",
  3417. "\"${PODS_ROOT}/Headers/Public/GoogleWebRTC\"",
  3418. "\"${PODS_ROOT}/Headers/Public/Protobuf\"",
  3419. "\"${PODS_ROOT}/Headers/Public/nanopb\"",
  3420. "\"$(PROJECT_DIR)/ThirdParty\"/**",
  3421. );
  3422. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  3423. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  3424. MARKETING_VERSION = 1.0;
  3425. MTL_FAST_MATH = YES;
  3426. PRODUCT_BUNDLE_IDENTIFIER = com.nextcloud.Talk.NextcloudTalkTests;
  3427. PRODUCT_NAME = "$(TARGET_NAME)";
  3428. SWIFT_EMIT_LOC_STRINGS = NO;
  3429. SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header.h";
  3430. SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
  3431. SWIFT_VERSION = 5.0;
  3432. TARGETED_DEVICE_FAMILY = "1,2";
  3433. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NextcloudTalk.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/NextcloudTalk";
  3434. };
  3435. name = Release;
  3436. };
  3437. 1FD8AD932A3A162100787C16 /* Debug */ = {
  3438. isa = XCBuildConfiguration;
  3439. buildSettings = {
  3440. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3441. CLANG_ENABLE_OBJC_WEAK = YES;
  3442. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3443. CODE_SIGN_STYLE = Automatic;
  3444. CURRENT_PROJECT_VERSION = 1;
  3445. DEVELOPMENT_TEAM = L8PXSNYX82;
  3446. GCC_C_LANGUAGE_STANDARD = gnu11;
  3447. GENERATE_INFOPLIST_FILE = YES;
  3448. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  3449. MARKETING_VERSION = 1.0;
  3450. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3451. MTL_FAST_MATH = YES;
  3452. PRODUCT_BUNDLE_IDENTIFIER = com.sharix.rooms.NextcloudTalkUITests;
  3453. PRODUCT_NAME = "$(TARGET_NAME)";
  3454. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  3455. SUPPORTS_MACCATALYST = NO;
  3456. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
  3457. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  3458. SWIFT_EMIT_LOC_STRINGS = NO;
  3459. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3460. SWIFT_VERSION = 5.0;
  3461. TARGETED_DEVICE_FAMILY = "1,2";
  3462. TEST_TARGET_NAME = NextcloudTalk;
  3463. };
  3464. name = Debug;
  3465. };
  3466. 1FD8AD942A3A162100787C16 /* Release */ = {
  3467. isa = XCBuildConfiguration;
  3468. buildSettings = {
  3469. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3470. CLANG_ENABLE_OBJC_WEAK = YES;
  3471. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3472. CODE_SIGN_STYLE = Automatic;
  3473. CURRENT_PROJECT_VERSION = 1;
  3474. DEVELOPMENT_TEAM = L8PXSNYX82;
  3475. GCC_C_LANGUAGE_STANDARD = gnu11;
  3476. GENERATE_INFOPLIST_FILE = YES;
  3477. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  3478. MARKETING_VERSION = 1.0;
  3479. MTL_FAST_MATH = YES;
  3480. PRODUCT_BUNDLE_IDENTIFIER = com.sharix.rooms.NextcloudTalkUITests;
  3481. PRODUCT_NAME = "$(TARGET_NAME)";
  3482. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  3483. SUPPORTS_MACCATALYST = NO;
  3484. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
  3485. SWIFT_EMIT_LOC_STRINGS = NO;
  3486. SWIFT_OPTIMIZATION_LEVEL = "-O";
  3487. SWIFT_VERSION = 5.0;
  3488. TARGETED_DEVICE_FAMILY = "1,2";
  3489. TEST_TARGET_NAME = NextcloudTalk;
  3490. };
  3491. name = Release;
  3492. };
  3493. 1FF2FD732AB99CCB000C9905 /* Debug */ = {
  3494. isa = XCBuildConfiguration;
  3495. baseConfigurationReference = 82CD0527E04B844CAD762ADE /* Pods-BroadcastUploadExtension.debug.xcconfig */;
  3496. buildSettings = {
  3497. BUILD_LIBRARY_FOR_DISTRIBUTION = NO;
  3498. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3499. CLANG_ENABLE_OBJC_WEAK = YES;
  3500. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3501. CODE_SIGN_ENTITLEMENTS = BroadcastUploadExtension/BroadcastUploadExtension.entitlements;
  3502. CODE_SIGN_IDENTITY = "iPhone Developer";
  3503. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3504. CODE_SIGN_STYLE = Automatic;
  3505. CURRENT_PROJECT_VERSION = 1;
  3506. DEVELOPMENT_TEAM = L8PXSNYX82;
  3507. GCC_C_LANGUAGE_STANDARD = gnu11;
  3508. GCC_PREPROCESSOR_DEFINITIONS = (
  3509. "$(inherited)",
  3510. "COCOAPODS=1",
  3511. "APP_EXTENSION=1",
  3512. );
  3513. GENERATE_INFOPLIST_FILE = YES;
  3514. INFOPLIST_FILE = BroadcastUploadExtension/Info.plist;
  3515. INFOPLIST_KEY_CFBundleDisplayName = "Nextcloud Talk";
  3516. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  3517. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  3518. LD_RUNPATH_SEARCH_PATHS = (
  3519. "$(inherited)",
  3520. "@executable_path/Frameworks",
  3521. "@executable_path/../../Frameworks",
  3522. );
  3523. MARKETING_VERSION = 1.0;
  3524. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3525. MTL_FAST_MATH = YES;
  3526. ONLY_ACTIVE_ARCH = YES;
  3527. PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms.BroadcastUploadExtension;
  3528. PRODUCT_NAME = "$(TARGET_NAME)";
  3529. SKIP_INSTALL = YES;
  3530. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  3531. SUPPORTS_MACCATALYST = NO;
  3532. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  3533. SWIFT_ACTIVE_COMPILATION_CONDITIONS = APP_EXTENSION;
  3534. SWIFT_EMIT_LOC_STRINGS = YES;
  3535. SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header-Extensions.h";
  3536. SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
  3537. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3538. SWIFT_VERSION = 5.0;
  3539. TARGETED_DEVICE_FAMILY = "1,2";
  3540. };
  3541. name = Debug;
  3542. };
  3543. 1FF2FD742AB99CCB000C9905 /* Release */ = {
  3544. isa = XCBuildConfiguration;
  3545. baseConfigurationReference = A8F95DE6635ABC1E64CA8E4A /* Pods-BroadcastUploadExtension.release.xcconfig */;
  3546. buildSettings = {
  3547. BUILD_LIBRARY_FOR_DISTRIBUTION = NO;
  3548. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3549. CLANG_ENABLE_OBJC_WEAK = YES;
  3550. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3551. CODE_SIGN_ENTITLEMENTS = BroadcastUploadExtension/BroadcastUploadExtension.entitlements;
  3552. CODE_SIGN_IDENTITY = "iPhone Distribution: Nextcloud GmbH (NKUJUXUJ3B)";
  3553. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3554. CODE_SIGN_STYLE = Automatic;
  3555. CURRENT_PROJECT_VERSION = 1;
  3556. DEVELOPMENT_TEAM = L8PXSNYX82;
  3557. GCC_C_LANGUAGE_STANDARD = gnu11;
  3558. GCC_PREPROCESSOR_DEFINITIONS = (
  3559. "$(inherited)",
  3560. "COCOAPODS=1",
  3561. "APP_EXTENSION=1",
  3562. );
  3563. GENERATE_INFOPLIST_FILE = YES;
  3564. INFOPLIST_FILE = BroadcastUploadExtension/Info.plist;
  3565. INFOPLIST_KEY_CFBundleDisplayName = "Nextcloud Talk";
  3566. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  3567. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  3568. LD_RUNPATH_SEARCH_PATHS = (
  3569. "$(inherited)",
  3570. "@executable_path/Frameworks",
  3571. "@executable_path/../../Frameworks",
  3572. );
  3573. MARKETING_VERSION = 1.0;
  3574. MTL_FAST_MATH = YES;
  3575. ONLY_ACTIVE_ARCH = NO;
  3576. PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms.BroadcastUploadExtension;
  3577. PRODUCT_NAME = "$(TARGET_NAME)";
  3578. SKIP_INSTALL = YES;
  3579. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  3580. SUPPORTS_MACCATALYST = NO;
  3581. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  3582. SWIFT_ACTIVE_COMPILATION_CONDITIONS = APP_EXTENSION;
  3583. SWIFT_EMIT_LOC_STRINGS = YES;
  3584. SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header-Extensions.h";
  3585. SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
  3586. SWIFT_OPTIMIZATION_LEVEL = "-O";
  3587. SWIFT_VERSION = 5.0;
  3588. TARGETED_DEVICE_FAMILY = "1,2";
  3589. };
  3590. name = Release;
  3591. };
  3592. 2C0574951EDD9E8E00D9E7F2 /* Debug */ = {
  3593. isa = XCBuildConfiguration;
  3594. buildSettings = {
  3595. ALWAYS_SEARCH_USER_PATHS = NO;
  3596. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3597. CLANG_ANALYZER_NONNULL = YES;
  3598. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3599. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  3600. CLANG_CXX_LIBRARY = "libc++";
  3601. CLANG_ENABLE_MODULES = YES;
  3602. CLANG_ENABLE_OBJC_ARC = YES;
  3603. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3604. CLANG_WARN_BOOL_CONVERSION = YES;
  3605. CLANG_WARN_COMMA = YES;
  3606. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3607. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3608. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3609. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3610. CLANG_WARN_EMPTY_BODY = YES;
  3611. CLANG_WARN_ENUM_CONVERSION = YES;
  3612. CLANG_WARN_INFINITE_RECURSION = YES;
  3613. CLANG_WARN_INT_CONVERSION = YES;
  3614. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3615. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3616. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3617. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3618. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3619. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3620. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3621. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3622. CLANG_WARN_UNREACHABLE_CODE = YES;
  3623. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3624. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3625. COPY_PHASE_STRIP = NO;
  3626. DEBUG_INFORMATION_FORMAT = dwarf;
  3627. DEFINES_MODULE = YES;
  3628. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3629. ENABLE_TESTABILITY = YES;
  3630. GCC_C_LANGUAGE_STANDARD = gnu99;
  3631. GCC_DYNAMIC_NO_PIC = NO;
  3632. GCC_NO_COMMON_BLOCKS = YES;
  3633. GCC_OPTIMIZATION_LEVEL = 0;
  3634. GCC_PREPROCESSOR_DEFINITIONS = (
  3635. "DEBUG=1",
  3636. "$(inherited)",
  3637. );
  3638. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3639. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3640. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3641. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3642. GCC_WARN_UNUSED_FUNCTION = YES;
  3643. GCC_WARN_UNUSED_VARIABLE = YES;
  3644. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  3645. MTL_ENABLE_DEBUG_INFO = YES;
  3646. ONLY_ACTIVE_ARCH = YES;
  3647. SDKROOT = iphoneos;
  3648. TARGETED_DEVICE_FAMILY = "1,2";
  3649. };
  3650. name = Debug;
  3651. };
  3652. 2C0574961EDD9E8E00D9E7F2 /* Release */ = {
  3653. isa = XCBuildConfiguration;
  3654. buildSettings = {
  3655. ALWAYS_SEARCH_USER_PATHS = NO;
  3656. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3657. CLANG_ANALYZER_NONNULL = YES;
  3658. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3659. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  3660. CLANG_CXX_LIBRARY = "libc++";
  3661. CLANG_ENABLE_MODULES = YES;
  3662. CLANG_ENABLE_OBJC_ARC = YES;
  3663. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3664. CLANG_WARN_BOOL_CONVERSION = YES;
  3665. CLANG_WARN_COMMA = YES;
  3666. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3667. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3668. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3669. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3670. CLANG_WARN_EMPTY_BODY = YES;
  3671. CLANG_WARN_ENUM_CONVERSION = YES;
  3672. CLANG_WARN_INFINITE_RECURSION = YES;
  3673. CLANG_WARN_INT_CONVERSION = YES;
  3674. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3675. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3676. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3677. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3678. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3679. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3680. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3681. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3682. CLANG_WARN_UNREACHABLE_CODE = YES;
  3683. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3684. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3685. COPY_PHASE_STRIP = NO;
  3686. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3687. DEFINES_MODULE = YES;
  3688. ENABLE_NS_ASSERTIONS = NO;
  3689. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3690. GCC_C_LANGUAGE_STANDARD = gnu99;
  3691. GCC_NO_COMMON_BLOCKS = YES;
  3692. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3693. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3694. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3695. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3696. GCC_WARN_UNUSED_FUNCTION = YES;
  3697. GCC_WARN_UNUSED_VARIABLE = YES;
  3698. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  3699. MTL_ENABLE_DEBUG_INFO = NO;
  3700. SDKROOT = iphoneos;
  3701. SWIFT_COMPILATION_MODE = wholemodule;
  3702. TARGETED_DEVICE_FAMILY = "1,2";
  3703. VALIDATE_PRODUCT = YES;
  3704. };
  3705. name = Release;
  3706. };
  3707. 2C0574981EDD9E8E00D9E7F2 /* Debug */ = {
  3708. isa = XCBuildConfiguration;
  3709. baseConfigurationReference = 4202C63030F0FFBB1C16D75E /* Pods-NextcloudTalk.debug.xcconfig */;
  3710. buildSettings = {
  3711. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3712. CLANG_ENABLE_MODULES = YES;
  3713. CODE_SIGN_ENTITLEMENTS = NextcloudTalk/NextcloudTalk.entitlements;
  3714. CODE_SIGN_IDENTITY = "iPhone Developer";
  3715. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3716. CODE_SIGN_STYLE = Automatic;
  3717. CURRENT_PROJECT_VERSION = 1;
  3718. DEFINES_MODULE = YES;
  3719. DEVELOPMENT_TEAM = L8PXSNYX82;
  3720. ENABLE_BITCODE = NO;
  3721. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  3722. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  3723. HEADER_SEARCH_PATHS = (
  3724. "$(inherited)",
  3725. "\"${PODS_ROOT}/Headers/Public\"",
  3726. "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
  3727. "\"${PODS_ROOT}/Headers/Public/DateTools\"",
  3728. "\"${PODS_ROOT}/Headers/Public/GoogleToolboxForMac\"",
  3729. "\"${PODS_ROOT}/Headers/Public/GoogleWebRTC\"",
  3730. "\"${PODS_ROOT}/Headers/Public/Protobuf\"",
  3731. "\"${PODS_ROOT}/Headers/Public/nanopb\"",
  3732. "\"$(PROJECT_DIR)/ThirdParty\"/**",
  3733. );
  3734. "HEADER_SEARCH_PATHS[arch=*]" = (
  3735. "$(inherited)",
  3736. "\"${PODS_ROOT}/Headers/Public\"",
  3737. "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
  3738. "\"${PODS_ROOT}/Headers/Public/DateTools\"",
  3739. "\"${PODS_ROOT}/Headers/Public/GoogleToolboxForMac\"",
  3740. "\"${PODS_ROOT}/Headers/Public/GoogleWebRTC\"",
  3741. "\"${PODS_ROOT}/Headers/Public/Protobuf\"",
  3742. "\"${PODS_ROOT}/Headers/Public/nanopb\"",
  3743. "\"$(PROJECT_DIR)/ThirdParty\"/**",
  3744. );
  3745. INFOPLIST_FILE = NextcloudTalk/Info.plist;
  3746. INFOPLIST_KEY_CFBundleDisplayName = "SX Rooms";
  3747. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  3748. LD_RUNPATH_SEARCH_PATHS = (
  3749. "$(inherited)",
  3750. "@executable_path/Frameworks",
  3751. );
  3752. LIBRARY_SEARCH_PATHS = "$(inherited)";
  3753. MARKETING_VERSION = 20.0.5;
  3754. PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms;
  3755. PRODUCT_NAME = "$(TARGET_NAME)";
  3756. PROVISIONING_PROFILE_SPECIFIER = "";
  3757. SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header.h";
  3758. SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
  3759. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3760. SWIFT_VERSION = 5.0;
  3761. };
  3762. name = Debug;
  3763. };
  3764. 2C0574991EDD9E8E00D9E7F2 /* Release */ = {
  3765. isa = XCBuildConfiguration;
  3766. baseConfigurationReference = 4D4C7BF2F97F47B0D9094618 /* Pods-NextcloudTalk.release.xcconfig */;
  3767. buildSettings = {
  3768. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3769. CLANG_ENABLE_MODULES = YES;
  3770. CODE_SIGN_ENTITLEMENTS = NextcloudTalk/NextcloudTalk.entitlements;
  3771. CODE_SIGN_IDENTITY = "iPhone Distribution: Nextcloud GmbH (NKUJUXUJ3B)";
  3772. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3773. CODE_SIGN_STYLE = Automatic;
  3774. CURRENT_PROJECT_VERSION = 1;
  3775. DEFINES_MODULE = YES;
  3776. DEVELOPMENT_TEAM = L8PXSNYX82;
  3777. ENABLE_BITCODE = NO;
  3778. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  3779. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  3780. HEADER_SEARCH_PATHS = (
  3781. "$(inherited)",
  3782. "\"${PODS_ROOT}/Headers/Public\"",
  3783. "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
  3784. "\"${PODS_ROOT}/Headers/Public/DateTools\"",
  3785. "\"${PODS_ROOT}/Headers/Public/GoogleToolboxForMac\"",
  3786. "\"${PODS_ROOT}/Headers/Public/GoogleWebRTC\"",
  3787. "\"${PODS_ROOT}/Headers/Public/Protobuf\"",
  3788. "\"${PODS_ROOT}/Headers/Public/nanopb\"",
  3789. "\"$(PROJECT_DIR)/ThirdParty\"/**",
  3790. );
  3791. INFOPLIST_FILE = NextcloudTalk/Info.plist;
  3792. INFOPLIST_KEY_CFBundleDisplayName = "SX Rooms";
  3793. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  3794. LD_RUNPATH_SEARCH_PATHS = (
  3795. "$(inherited)",
  3796. "@executable_path/Frameworks",
  3797. );
  3798. LIBRARY_SEARCH_PATHS = "$(inherited)";
  3799. MARKETING_VERSION = 20.0.5;
  3800. PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms;
  3801. PRODUCT_NAME = "SX Rooms";
  3802. PROVISIONING_PROFILE_SPECIFIER = "";
  3803. SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header.h";
  3804. SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
  3805. SWIFT_VERSION = 5.0;
  3806. };
  3807. name = Release;
  3808. };
  3809. 2C62AFAF24C08845007E460A /* Debug */ = {
  3810. isa = XCBuildConfiguration;
  3811. baseConfigurationReference = 584BF273DF09DE4D5EE0DA0F /* Pods-ShareExtension.debug.xcconfig */;
  3812. buildSettings = {
  3813. APPLICATION_EXTENSION_API_ONLY = YES;
  3814. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3815. CLANG_ENABLE_MODULES = YES;
  3816. CLANG_ENABLE_OBJC_WEAK = YES;
  3817. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3818. CLANG_WARN_COMMA = YES;
  3819. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3820. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3821. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3822. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3823. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3824. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3825. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3826. CODE_SIGN_ENTITLEMENTS = ShareExtension/ShareExtension.entitlements;
  3827. CODE_SIGN_IDENTITY = "iPhone Developer";
  3828. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3829. CODE_SIGN_STYLE = Automatic;
  3830. CURRENT_PROJECT_VERSION = 1;
  3831. DEFINES_MODULE = YES;
  3832. DEVELOPMENT_TEAM = L8PXSNYX82;
  3833. ENABLE_BITCODE = NO;
  3834. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  3835. GCC_C_LANGUAGE_STANDARD = gnu11;
  3836. GCC_PREPROCESSOR_DEFINITIONS = (
  3837. "$(inherited)",
  3838. "APP_EXTENSION=1",
  3839. );
  3840. HEADER_SEARCH_PATHS = (
  3841. "$(inherited)",
  3842. "\"${PODS_ROOT}/Headers/Public\"",
  3843. "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
  3844. "\"${PODS_ROOT}/Headers/Public/AFViewShaker\"",
  3845. "\"${PODS_ROOT}/Headers/Public/BKPasscodeView\"",
  3846. "\"${PODS_ROOT}/Headers/Public/DBImageColorPicker\"",
  3847. "\"${PODS_ROOT}/Headers/Public/DateTools\"",
  3848. "\"${PODS_ROOT}/Headers/Public/JDStatusBarNotification\"",
  3849. "\"${PODS_ROOT}/Headers/Public/MDFInternationalization\"",
  3850. "\"${PODS_ROOT}/Headers/Public/MaterialComponents\"",
  3851. "\"${PODS_ROOT}/Headers/Public/MotionAnimator\"",
  3852. "\"${PODS_ROOT}/Headers/Public/MotionInterchange\"",
  3853. "\"${PODS_ROOT}/Headers/Public/PulsingHalo\"",
  3854. "\"${PODS_ROOT}/Headers/Public/Realm\"",
  3855. "\"${PODS_ROOT}/Headers/Public/SocketRocket\"",
  3856. "\"${PODS_ROOT}/Headers/Public/Toast\"",
  3857. "\"${PODS_ROOT}/Headers/Public/UICKeyChainStore\"",
  3858. "\"$(PROJECT_DIR)/ThirdParty\"/**",
  3859. );
  3860. INFOPLIST_FILE = ShareExtension/Info.plist;
  3861. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  3862. LD_RUNPATH_SEARCH_PATHS = (
  3863. "$(inherited)",
  3864. "@executable_path/Frameworks",
  3865. "@executable_path/../../Frameworks",
  3866. );
  3867. LIBRARY_SEARCH_PATHS = (
  3868. "$(inherited)",
  3869. "\"${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking\"",
  3870. "\"${PODS_CONFIGURATION_BUILD_DIR}/AFViewShaker\"",
  3871. "\"${PODS_CONFIGURATION_BUILD_DIR}/BKPasscodeView\"",
  3872. "\"${PODS_CONFIGURATION_BUILD_DIR}/DBImageColorPicker\"",
  3873. "\"${PODS_CONFIGURATION_BUILD_DIR}/DateTools\"",
  3874. "\"${PODS_CONFIGURATION_BUILD_DIR}/JDStatusBarNotification\"",
  3875. "\"${PODS_CONFIGURATION_BUILD_DIR}/MDFInternationalization\"",
  3876. "\"${PODS_CONFIGURATION_BUILD_DIR}/MaterialComponents\"",
  3877. "\"${PODS_CONFIGURATION_BUILD_DIR}/MotionAnimator\"",
  3878. "\"${PODS_CONFIGURATION_BUILD_DIR}/MotionInterchange\"",
  3879. "\"${PODS_CONFIGURATION_BUILD_DIR}/PulsingHalo\"",
  3880. "\"${PODS_CONFIGURATION_BUILD_DIR}/Realm\"",
  3881. "\"${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket\"",
  3882. "\"${PODS_CONFIGURATION_BUILD_DIR}/Toast\"",
  3883. "\"${PODS_CONFIGURATION_BUILD_DIR}/UICKeyChainStore\"",
  3884. "\"${PODS_ROOT}/Realm/core\"",
  3885. );
  3886. MARKETING_VERSION = 20.0.5;
  3887. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3888. MTL_FAST_MATH = YES;
  3889. ONLY_ACTIVE_ARCH = YES;
  3890. PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms.ShareExtension;
  3891. PRODUCT_NAME = ShareExtension;
  3892. SKIP_INSTALL = YES;
  3893. SWIFT_ACTIVE_COMPILATION_CONDITIONS = APP_EXTENSION;
  3894. SWIFT_INSTALL_OBJC_HEADER = YES;
  3895. SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header-Extensions.h";
  3896. SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
  3897. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3898. SWIFT_VERSION = 5.0;
  3899. TARGETED_DEVICE_FAMILY = "1,2";
  3900. };
  3901. name = Debug;
  3902. };
  3903. 2C62AFB024C08845007E460A /* Release */ = {
  3904. isa = XCBuildConfiguration;
  3905. baseConfigurationReference = 95D756208A81284B975853EC /* Pods-ShareExtension.release.xcconfig */;
  3906. buildSettings = {
  3907. APPLICATION_EXTENSION_API_ONLY = YES;
  3908. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3909. CLANG_ENABLE_MODULES = YES;
  3910. CLANG_ENABLE_OBJC_WEAK = YES;
  3911. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3912. CLANG_WARN_COMMA = YES;
  3913. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3914. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3915. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3916. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3917. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3918. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3919. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3920. CODE_SIGN_ENTITLEMENTS = ShareExtension/ShareExtension.entitlements;
  3921. CODE_SIGN_IDENTITY = "iPhone Distribution: Nextcloud GmbH (NKUJUXUJ3B)";
  3922. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3923. CODE_SIGN_STYLE = Automatic;
  3924. CURRENT_PROJECT_VERSION = 1;
  3925. DEFINES_MODULE = YES;
  3926. DEVELOPMENT_TEAM = L8PXSNYX82;
  3927. ENABLE_BITCODE = NO;
  3928. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  3929. GCC_C_LANGUAGE_STANDARD = gnu11;
  3930. GCC_PREPROCESSOR_DEFINITIONS = (
  3931. "$(inherited)",
  3932. "APP_EXTENSION=1",
  3933. );
  3934. HEADER_SEARCH_PATHS = (
  3935. "$(inherited)",
  3936. "\"${PODS_ROOT}/Headers/Public\"",
  3937. "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
  3938. "\"${PODS_ROOT}/Headers/Public/AFViewShaker\"",
  3939. "\"${PODS_ROOT}/Headers/Public/BKPasscodeView\"",
  3940. "\"${PODS_ROOT}/Headers/Public/DBImageColorPicker\"",
  3941. "\"${PODS_ROOT}/Headers/Public/DateTools\"",
  3942. "\"${PODS_ROOT}/Headers/Public/JDStatusBarNotification\"",
  3943. "\"${PODS_ROOT}/Headers/Public/MDFInternationalization\"",
  3944. "\"${PODS_ROOT}/Headers/Public/MaterialComponents\"",
  3945. "\"${PODS_ROOT}/Headers/Public/MotionAnimator\"",
  3946. "\"${PODS_ROOT}/Headers/Public/MotionInterchange\"",
  3947. "\"${PODS_ROOT}/Headers/Public/PulsingHalo\"",
  3948. "\"${PODS_ROOT}/Headers/Public/Realm\"",
  3949. "\"${PODS_ROOT}/Headers/Public/SocketRocket\"",
  3950. "\"${PODS_ROOT}/Headers/Public/Toast\"",
  3951. "\"${PODS_ROOT}/Headers/Public/UICKeyChainStore\"",
  3952. "\"$(PROJECT_DIR)/ThirdParty\"/**",
  3953. );
  3954. INFOPLIST_FILE = ShareExtension/Info.plist;
  3955. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  3956. LD_RUNPATH_SEARCH_PATHS = (
  3957. "$(inherited)",
  3958. "@executable_path/Frameworks",
  3959. "@executable_path/../../Frameworks",
  3960. );
  3961. LIBRARY_SEARCH_PATHS = (
  3962. "$(inherited)",
  3963. "\"${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking\"",
  3964. "\"${PODS_CONFIGURATION_BUILD_DIR}/AFViewShaker\"",
  3965. "\"${PODS_CONFIGURATION_BUILD_DIR}/BKPasscodeView\"",
  3966. "\"${PODS_CONFIGURATION_BUILD_DIR}/DBImageColorPicker\"",
  3967. "\"${PODS_CONFIGURATION_BUILD_DIR}/DateTools\"",
  3968. "\"${PODS_CONFIGURATION_BUILD_DIR}/JDStatusBarNotification\"",
  3969. "\"${PODS_CONFIGURATION_BUILD_DIR}/MDFInternationalization\"",
  3970. "\"${PODS_CONFIGURATION_BUILD_DIR}/MaterialComponents\"",
  3971. "\"${PODS_CONFIGURATION_BUILD_DIR}/MotionAnimator\"",
  3972. "\"${PODS_CONFIGURATION_BUILD_DIR}/MotionInterchange\"",
  3973. "\"${PODS_CONFIGURATION_BUILD_DIR}/PulsingHalo\"",
  3974. "\"${PODS_CONFIGURATION_BUILD_DIR}/Realm\"",
  3975. "\"${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket\"",
  3976. "\"${PODS_CONFIGURATION_BUILD_DIR}/Toast\"",
  3977. "\"${PODS_CONFIGURATION_BUILD_DIR}/UICKeyChainStore\"",
  3978. "\"${PODS_ROOT}/Realm/core\"",
  3979. );
  3980. MARKETING_VERSION = 20.0.5;
  3981. MTL_FAST_MATH = YES;
  3982. PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms.ShareExtension;
  3983. PRODUCT_NAME = ShareExtension;
  3984. SKIP_INSTALL = YES;
  3985. SWIFT_ACTIVE_COMPILATION_CONDITIONS = APP_EXTENSION;
  3986. SWIFT_INSTALL_OBJC_HEADER = YES;
  3987. SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header-Extensions.h";
  3988. SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
  3989. SWIFT_VERSION = 5.0;
  3990. TARGETED_DEVICE_FAMILY = "1,2";
  3991. };
  3992. name = Release;
  3993. };
  3994. 2CC0015824A1F0E900A20167 /* Debug */ = {
  3995. isa = XCBuildConfiguration;
  3996. baseConfigurationReference = D6DF51D976DC0F681FF83F7B /* Pods-NotificationServiceExtension.debug.xcconfig */;
  3997. buildSettings = {
  3998. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3999. APPLICATION_EXTENSION_API_ONLY = YES;
  4000. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4001. CLANG_ENABLE_MODULES = YES;
  4002. CLANG_ENABLE_OBJC_WEAK = YES;
  4003. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4004. CLANG_WARN_COMMA = YES;
  4005. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4006. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4007. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4008. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4009. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4010. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4011. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4012. CODE_SIGN_ENTITLEMENTS = NotificationServiceExtension/NotificationServiceExtension.entitlements;
  4013. CODE_SIGN_IDENTITY = "iPhone Developer";
  4014. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4015. CODE_SIGN_STYLE = Automatic;
  4016. CURRENT_PROJECT_VERSION = 1;
  4017. DEVELOPMENT_TEAM = L8PXSNYX82;
  4018. ENABLE_BITCODE = NO;
  4019. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  4020. GCC_C_LANGUAGE_STANDARD = gnu11;
  4021. GCC_PREPROCESSOR_DEFINITIONS = (
  4022. "$(inherited)",
  4023. "APP_EXTENSION=1",
  4024. );
  4025. HEADER_SEARCH_PATHS = (
  4026. "$(inherited)",
  4027. "\"${PODS_ROOT}/Headers/Public\"",
  4028. "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
  4029. "\"${PODS_ROOT}/Headers/Public/AFViewShaker\"",
  4030. "\"${PODS_ROOT}/Headers/Public/BKPasscodeView\"",
  4031. "\"${PODS_ROOT}/Headers/Public/DBImageColorPicker\"",
  4032. "\"${PODS_ROOT}/Headers/Public/DateTools\"",
  4033. "\"${PODS_ROOT}/Headers/Public/JDStatusBarNotification\"",
  4034. "\"${PODS_ROOT}/Headers/Public/MDFInternationalization\"",
  4035. "\"${PODS_ROOT}/Headers/Public/MaterialComponents\"",
  4036. "\"${PODS_ROOT}/Headers/Public/MotionAnimator\"",
  4037. "\"${PODS_ROOT}/Headers/Public/MotionInterchange\"",
  4038. "\"${PODS_ROOT}/Headers/Public/PulsingHalo\"",
  4039. "\"${PODS_ROOT}/Headers/Public/Realm\"",
  4040. "\"${PODS_ROOT}/Headers/Public/SocketRocket\"",
  4041. "\"${PODS_ROOT}/Headers/Public/Toast\"",
  4042. "\"${PODS_ROOT}/Headers/Public/UICKeyChainStore\"",
  4043. "\"$(PROJECT_DIR)/ThirdParty\"/**",
  4044. );
  4045. INFOPLIST_FILE = NotificationServiceExtension/Info.plist;
  4046. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  4047. LD_RUNPATH_SEARCH_PATHS = (
  4048. "$(inherited)",
  4049. "@executable_path/Frameworks",
  4050. "@executable_path/../../Frameworks",
  4051. );
  4052. LIBRARY_SEARCH_PATHS = "$(inherited)";
  4053. MARKETING_VERSION = 20.0.5;
  4054. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  4055. MTL_FAST_MATH = YES;
  4056. PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms.NotificationServiceExtension;
  4057. PRODUCT_NAME = "$(TARGET_NAME)";
  4058. SKIP_INSTALL = YES;
  4059. SWIFT_ACTIVE_COMPILATION_CONDITIONS = APP_EXTENSION;
  4060. SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header-Extensions.h";
  4061. SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
  4062. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4063. SWIFT_VERSION = 5.0;
  4064. TARGETED_DEVICE_FAMILY = "1,2";
  4065. };
  4066. name = Debug;
  4067. };
  4068. 2CC0015924A1F0E900A20167 /* Release */ = {
  4069. isa = XCBuildConfiguration;
  4070. baseConfigurationReference = D86091EC1125C3057B9A299B /* Pods-NotificationServiceExtension.release.xcconfig */;
  4071. buildSettings = {
  4072. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4073. APPLICATION_EXTENSION_API_ONLY = YES;
  4074. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4075. CLANG_ENABLE_MODULES = YES;
  4076. CLANG_ENABLE_OBJC_WEAK = YES;
  4077. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4078. CLANG_WARN_COMMA = YES;
  4079. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4080. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4081. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4082. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4083. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4084. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4085. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4086. CODE_SIGN_ENTITLEMENTS = NotificationServiceExtension/NotificationServiceExtension.entitlements;
  4087. CODE_SIGN_IDENTITY = "iPhone Distribution: Nextcloud GmbH (NKUJUXUJ3B)";
  4088. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4089. CODE_SIGN_STYLE = Automatic;
  4090. CURRENT_PROJECT_VERSION = 1;
  4091. DEVELOPMENT_TEAM = L8PXSNYX82;
  4092. ENABLE_BITCODE = NO;
  4093. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  4094. GCC_C_LANGUAGE_STANDARD = gnu11;
  4095. GCC_PREPROCESSOR_DEFINITIONS = (
  4096. "$(inherited)",
  4097. "APP_EXTENSION=1",
  4098. );
  4099. HEADER_SEARCH_PATHS = (
  4100. "$(inherited)",
  4101. "\"${PODS_ROOT}/Headers/Public\"",
  4102. "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
  4103. "\"${PODS_ROOT}/Headers/Public/AFViewShaker\"",
  4104. "\"${PODS_ROOT}/Headers/Public/BKPasscodeView\"",
  4105. "\"${PODS_ROOT}/Headers/Public/DBImageColorPicker\"",
  4106. "\"${PODS_ROOT}/Headers/Public/DateTools\"",
  4107. "\"${PODS_ROOT}/Headers/Public/JDStatusBarNotification\"",
  4108. "\"${PODS_ROOT}/Headers/Public/MDFInternationalization\"",
  4109. "\"${PODS_ROOT}/Headers/Public/MaterialComponents\"",
  4110. "\"${PODS_ROOT}/Headers/Public/MotionAnimator\"",
  4111. "\"${PODS_ROOT}/Headers/Public/MotionInterchange\"",
  4112. "\"${PODS_ROOT}/Headers/Public/PulsingHalo\"",
  4113. "\"${PODS_ROOT}/Headers/Public/Realm\"",
  4114. "\"${PODS_ROOT}/Headers/Public/SocketRocket\"",
  4115. "\"${PODS_ROOT}/Headers/Public/Toast\"",
  4116. "\"${PODS_ROOT}/Headers/Public/UICKeyChainStore\"",
  4117. "\"$(PROJECT_DIR)/ThirdParty\"/**",
  4118. );
  4119. INFOPLIST_FILE = NotificationServiceExtension/Info.plist;
  4120. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  4121. LD_RUNPATH_SEARCH_PATHS = (
  4122. "$(inherited)",
  4123. "@executable_path/Frameworks",
  4124. "@executable_path/../../Frameworks",
  4125. );
  4126. LIBRARY_SEARCH_PATHS = "$(inherited)";
  4127. MARKETING_VERSION = 20.0.5;
  4128. MTL_FAST_MATH = YES;
  4129. PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms.NotificationServiceExtension;
  4130. PRODUCT_NAME = "$(TARGET_NAME)";
  4131. SKIP_INSTALL = YES;
  4132. SWIFT_ACTIVE_COMPILATION_CONDITIONS = APP_EXTENSION;
  4133. SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header-Extensions.h";
  4134. SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
  4135. SWIFT_VERSION = 5.0;
  4136. TARGETED_DEVICE_FAMILY = "1,2";
  4137. };
  4138. name = Release;
  4139. };
  4140. /* End XCBuildConfiguration section */
  4141. /* Begin XCConfigurationList section */
  4142. 1F6D8C362B2E3756004376B8 /* Build configuration list for PBXNativeTarget "NextcloudTalkTests" */ = {
  4143. isa = XCConfigurationList;
  4144. buildConfigurations = (
  4145. 1F6D8C372B2E3756004376B8 /* Debug */,
  4146. 1F6D8C382B2E3756004376B8 /* Release */,
  4147. );
  4148. defaultConfigurationIsVisible = 0;
  4149. defaultConfigurationName = Release;
  4150. };
  4151. 1FD8AD922A3A162100787C16 /* Build configuration list for PBXNativeTarget "NextcloudTalkUITests" */ = {
  4152. isa = XCConfigurationList;
  4153. buildConfigurations = (
  4154. 1FD8AD932A3A162100787C16 /* Debug */,
  4155. 1FD8AD942A3A162100787C16 /* Release */,
  4156. );
  4157. defaultConfigurationIsVisible = 0;
  4158. defaultConfigurationName = Release;
  4159. };
  4160. 1FF2FD782AB99CCC000C9905 /* Build configuration list for PBXNativeTarget "BroadcastUploadExtension" */ = {
  4161. isa = XCConfigurationList;
  4162. buildConfigurations = (
  4163. 1FF2FD732AB99CCB000C9905 /* Debug */,
  4164. 1FF2FD742AB99CCB000C9905 /* Release */,
  4165. );
  4166. defaultConfigurationIsVisible = 0;
  4167. defaultConfigurationName = Release;
  4168. };
  4169. 2C0574781EDD9E8E00D9E7F2 /* Build configuration list for PBXProject "NextcloudTalk" */ = {
  4170. isa = XCConfigurationList;
  4171. buildConfigurations = (
  4172. 2C0574951EDD9E8E00D9E7F2 /* Debug */,
  4173. 2C0574961EDD9E8E00D9E7F2 /* Release */,
  4174. );
  4175. defaultConfigurationIsVisible = 0;
  4176. defaultConfigurationName = Release;
  4177. };
  4178. 2C0574971EDD9E8E00D9E7F2 /* Build configuration list for PBXNativeTarget "NextcloudTalk" */ = {
  4179. isa = XCConfigurationList;
  4180. buildConfigurations = (
  4181. 2C0574981EDD9E8E00D9E7F2 /* Debug */,
  4182. 2C0574991EDD9E8E00D9E7F2 /* Release */,
  4183. );
  4184. defaultConfigurationIsVisible = 0;
  4185. defaultConfigurationName = Release;
  4186. };
  4187. 2C62AFB124C08845007E460A /* Build configuration list for PBXNativeTarget "ShareExtension" */ = {
  4188. isa = XCConfigurationList;
  4189. buildConfigurations = (
  4190. 2C62AFAF24C08845007E460A /* Debug */,
  4191. 2C62AFB024C08845007E460A /* Release */,
  4192. );
  4193. defaultConfigurationIsVisible = 0;
  4194. defaultConfigurationName = Release;
  4195. };
  4196. 2CC0015A24A1F0E900A20167 /* Build configuration list for PBXNativeTarget "NotificationServiceExtension" */ = {
  4197. isa = XCConfigurationList;
  4198. buildConfigurations = (
  4199. 2CC0015824A1F0E900A20167 /* Debug */,
  4200. 2CC0015924A1F0E900A20167 /* Release */,
  4201. );
  4202. defaultConfigurationIsVisible = 0;
  4203. defaultConfigurationName = Release;
  4204. };
  4205. /* End XCConfigurationList section */
  4206. /* Begin XCRemoteSwiftPackageReference section */
  4207. 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */ = {
  4208. isa = XCRemoteSwiftPackageReference;
  4209. repositoryURL = "https://github.com/nextcloud-deps/CDMarkdownKit.git";
  4210. requirement = {
  4211. kind = revision;
  4212. revision = 818927d8bcbcc70e2395232f9b733cfc40e8f0bd;
  4213. };
  4214. };
  4215. 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */ = {
  4216. isa = XCRemoteSwiftPackageReference;
  4217. repositoryURL = "https://github.com/SDWebImage/SDWebImage.git";
  4218. requirement = {
  4219. kind = exactVersion;
  4220. version = 5.15.7;
  4221. };
  4222. };
  4223. 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */ = {
  4224. isa = XCRemoteSwiftPackageReference;
  4225. repositoryURL = "https://github.com/SDWebImage/SDWebImageSVGKitPlugin.git";
  4226. requirement = {
  4227. kind = exactVersion;
  4228. version = 1.4.0;
  4229. };
  4230. };
  4231. 1F468E7428DCC6C60099597B /* XCRemoteSwiftPackageReference "Dynamic" */ = {
  4232. isa = XCRemoteSwiftPackageReference;
  4233. repositoryURL = "https://github.com/mhdhejazi/Dynamic.git";
  4234. requirement = {
  4235. kind = upToNextMajorVersion;
  4236. minimumVersion = 1.0.0;
  4237. };
  4238. };
  4239. 1F628CB82842BAAF0083A425 /* XCRemoteSwiftPackageReference "QRCodeReader" */ = {
  4240. isa = XCRemoteSwiftPackageReference;
  4241. repositoryURL = "https://github.com/yannickl/QRCodeReader.swift";
  4242. requirement = {
  4243. kind = upToNextMajorVersion;
  4244. minimumVersion = 10.1.1;
  4245. };
  4246. };
  4247. 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */ = {
  4248. isa = XCRemoteSwiftPackageReference;
  4249. repositoryURL = "https://github.com/eddiekaiger/SwiftyAttributes.git";
  4250. requirement = {
  4251. kind = revision;
  4252. revision = 1ae513a1617309455a115c3fc2d558f744b43788;
  4253. };
  4254. };
  4255. 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */ = {
  4256. isa = XCRemoteSwiftPackageReference;
  4257. repositoryURL = "https://github.com/nextcloud-deps/realm-swift-binary";
  4258. requirement = {
  4259. kind = revision;
  4260. revision = cab57855cff4612dc8c290191b41f5036befb2ec;
  4261. };
  4262. };
  4263. 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */ = {
  4264. isa = XCRemoteSwiftPackageReference;
  4265. repositoryURL = "https://github.com/nextcloud/NextcloudKit";
  4266. requirement = {
  4267. kind = exactVersion;
  4268. version = 2.6.0;
  4269. };
  4270. };
  4271. 1FAB2E7B2AC99326001214EB /* XCRemoteSwiftPackageReference "TOCropViewController" */ = {
  4272. isa = XCRemoteSwiftPackageReference;
  4273. repositoryURL = "https://github.com/TimOliver/TOCropViewController";
  4274. requirement = {
  4275. kind = exactVersion;
  4276. version = 2.6.1;
  4277. };
  4278. };
  4279. 1FAB2E862ACD44CF001214EB /* XCRemoteSwiftPackageReference "talk-clients-webrtc" */ = {
  4280. isa = XCRemoteSwiftPackageReference;
  4281. repositoryURL = "https://github.com/nextcloud-releases/talk-clients-webrtc";
  4282. requirement = {
  4283. kind = revision;
  4284. revision = 5f15c82f4b02072c1595980580eade9325e1819f;
  4285. };
  4286. };
  4287. 1FCE3D512C9B5918009C68A9 /* XCRemoteSwiftPackageReference "SwiftyGif" */ = {
  4288. isa = XCRemoteSwiftPackageReference;
  4289. repositoryURL = "https://github.com/alexiscreuzot/SwiftyGif";
  4290. requirement = {
  4291. kind = upToNextMajorVersion;
  4292. minimumVersion = 5.4.5;
  4293. };
  4294. };
  4295. 2CCCD21B2835088F00F076CE /* XCRemoteSwiftPackageReference "OpenSSL" */ = {
  4296. isa = XCRemoteSwiftPackageReference;
  4297. repositoryURL = "https://github.com/krzyzanowskim/OpenSSL";
  4298. requirement = {
  4299. kind = exactVersion;
  4300. version = 3.1.6000;
  4301. };
  4302. };
  4303. 80CDF8C22A8E098900CB57AE /* XCRemoteSwiftPackageReference "swiftui-introspect" */ = {
  4304. isa = XCRemoteSwiftPackageReference;
  4305. repositoryURL = "https://github.com/siteline/swiftui-introspect";
  4306. requirement = {
  4307. kind = upToNextMajorVersion;
  4308. minimumVersion = 0.9.2;
  4309. };
  4310. };
  4311. /* End XCRemoteSwiftPackageReference section */
  4312. /* Begin XCSwiftPackageProductDependency section */
  4313. 1F0ECBF42A68274400921E90 /* CDMarkdownKit */ = {
  4314. isa = XCSwiftPackageProductDependency;
  4315. package = 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */;
  4316. productName = CDMarkdownKit;
  4317. };
  4318. 1F0ECBF62A68277000921E90 /* CDMarkdownKit */ = {
  4319. isa = XCSwiftPackageProductDependency;
  4320. package = 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */;
  4321. productName = CDMarkdownKit;
  4322. };
  4323. 1F0ECBF82A68277C00921E90 /* CDMarkdownKit */ = {
  4324. isa = XCSwiftPackageProductDependency;
  4325. package = 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */;
  4326. productName = CDMarkdownKit;
  4327. };
  4328. 1F35F8F42AEEDA9800044BDA /* SwiftyAttributes */ = {
  4329. isa = XCSwiftPackageProductDependency;
  4330. package = 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */;
  4331. productName = SwiftyAttributes;
  4332. };
  4333. 1F45A1152A01D6EC005FE87D /* SDWebImage */ = {
  4334. isa = XCSwiftPackageProductDependency;
  4335. package = 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */;
  4336. productName = SDWebImage;
  4337. };
  4338. 1F45A1192A01D70E005FE87D /* SDWebImage */ = {
  4339. isa = XCSwiftPackageProductDependency;
  4340. package = 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */;
  4341. productName = SDWebImage;
  4342. };
  4343. 1F45A11D2A01D719005FE87D /* SDWebImage */ = {
  4344. isa = XCSwiftPackageProductDependency;
  4345. package = 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */;
  4346. productName = SDWebImage;
  4347. };
  4348. 1F45A1202A01D8BA005FE87D /* SDWebImageSVGKitPlugin */ = {
  4349. isa = XCSwiftPackageProductDependency;
  4350. package = 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */;
  4351. productName = SDWebImageSVGKitPlugin;
  4352. };
  4353. 1F45A1222A01D8F1005FE87D /* SDWebImageSVGKitPlugin */ = {
  4354. isa = XCSwiftPackageProductDependency;
  4355. package = 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */;
  4356. productName = SDWebImageSVGKitPlugin;
  4357. };
  4358. 1F45A1242A01D8F7005FE87D /* SDWebImageSVGKitPlugin */ = {
  4359. isa = XCSwiftPackageProductDependency;
  4360. package = 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */;
  4361. productName = SDWebImageSVGKitPlugin;
  4362. };
  4363. 1F468E7528DCC6C60099597B /* Dynamic */ = {
  4364. isa = XCSwiftPackageProductDependency;
  4365. package = 1F468E7428DCC6C60099597B /* XCRemoteSwiftPackageReference "Dynamic" */;
  4366. productName = Dynamic;
  4367. };
  4368. 1F628CB92842BAAF0083A425 /* QRCodeReader */ = {
  4369. isa = XCSwiftPackageProductDependency;
  4370. package = 1F628CB82842BAAF0083A425 /* XCRemoteSwiftPackageReference "QRCodeReader" */;
  4371. productName = QRCodeReader;
  4372. };
  4373. 1F66B72E29FABD01003FB168 /* SwiftyAttributes */ = {
  4374. isa = XCSwiftPackageProductDependency;
  4375. package = 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */;
  4376. productName = SwiftyAttributes;
  4377. };
  4378. 1F759C082B63B9A7000534AB /* SDWebImage */ = {
  4379. isa = XCSwiftPackageProductDependency;
  4380. package = 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */;
  4381. productName = SDWebImage;
  4382. };
  4383. 1F759C0A2B63B9A7000534AB /* SDWebImageSVGKitPlugin */ = {
  4384. isa = XCSwiftPackageProductDependency;
  4385. package = 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */;
  4386. productName = SDWebImageSVGKitPlugin;
  4387. };
  4388. 1F759C0D2B63B9BA000534AB /* WebRTC */ = {
  4389. isa = XCSwiftPackageProductDependency;
  4390. package = 1FAB2E862ACD44CF001214EB /* XCRemoteSwiftPackageReference "talk-clients-webrtc" */;
  4391. productName = WebRTC;
  4392. };
  4393. 1F759C0F2B63B9D9000534AB /* OpenSSL */ = {
  4394. isa = XCSwiftPackageProductDependency;
  4395. package = 2CCCD21B2835088F00F076CE /* XCRemoteSwiftPackageReference "OpenSSL" */;
  4396. productName = OpenSSL;
  4397. };
  4398. 1F759C132B63B9D9000534AB /* QRCodeReader */ = {
  4399. isa = XCSwiftPackageProductDependency;
  4400. package = 1F628CB82842BAAF0083A425 /* XCRemoteSwiftPackageReference "QRCodeReader" */;
  4401. productName = QRCodeReader;
  4402. };
  4403. 1F759C152B63B9D9000534AB /* NextcloudKit */ = {
  4404. isa = XCSwiftPackageProductDependency;
  4405. package = 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  4406. productName = NextcloudKit;
  4407. };
  4408. 1F759C172B63B9D9000534AB /* SwiftyAttributes */ = {
  4409. isa = XCSwiftPackageProductDependency;
  4410. package = 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */;
  4411. productName = SwiftyAttributes;
  4412. };
  4413. 1F759C192B63B9D9000534AB /* CDMarkdownKit */ = {
  4414. isa = XCSwiftPackageProductDependency;
  4415. package = 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */;
  4416. productName = CDMarkdownKit;
  4417. };
  4418. 1F759C1B2B63B9D9000534AB /* TOCropViewController */ = {
  4419. isa = XCSwiftPackageProductDependency;
  4420. package = 1FAB2E7B2AC99326001214EB /* XCRemoteSwiftPackageReference "TOCropViewController" */;
  4421. productName = TOCropViewController;
  4422. };
  4423. 1F759C1D2B63B9D9000534AB /* SwiftUIIntrospect */ = {
  4424. isa = XCSwiftPackageProductDependency;
  4425. package = 80CDF8C22A8E098900CB57AE /* XCRemoteSwiftPackageReference "swiftui-introspect" */;
  4426. productName = SwiftUIIntrospect;
  4427. };
  4428. 1F759C2B2B63CB93000534AB /* Realm */ = {
  4429. isa = XCSwiftPackageProductDependency;
  4430. package = 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */;
  4431. productName = Realm;
  4432. };
  4433. 1F759C2D2B63CB9A000534AB /* Realm */ = {
  4434. isa = XCSwiftPackageProductDependency;
  4435. package = 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */;
  4436. productName = Realm;
  4437. };
  4438. 1F759C2F2B63CBA0000534AB /* Realm */ = {
  4439. isa = XCSwiftPackageProductDependency;
  4440. package = 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */;
  4441. productName = Realm;
  4442. };
  4443. 1F759C312B63CBA5000534AB /* Realm */ = {
  4444. isa = XCSwiftPackageProductDependency;
  4445. package = 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */;
  4446. productName = Realm;
  4447. };
  4448. 1F759C332B63CBAA000534AB /* Realm */ = {
  4449. isa = XCSwiftPackageProductDependency;
  4450. package = 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */;
  4451. productName = Realm;
  4452. };
  4453. 1F77A5EE2AB9A41E007B6037 /* SDWebImage */ = {
  4454. isa = XCSwiftPackageProductDependency;
  4455. package = 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */;
  4456. productName = SDWebImage;
  4457. };
  4458. 1F77A5F02AB9A423007B6037 /* SDWebImageSVGKitPlugin */ = {
  4459. isa = XCSwiftPackageProductDependency;
  4460. package = 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */;
  4461. productName = SDWebImageSVGKitPlugin;
  4462. };
  4463. 1F77A5FF2AB9A50D007B6037 /* NextcloudKit */ = {
  4464. isa = XCSwiftPackageProductDependency;
  4465. package = 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  4466. productName = NextcloudKit;
  4467. };
  4468. 1F77A60B2AB9A5BE007B6037 /* CDMarkdownKit */ = {
  4469. isa = XCSwiftPackageProductDependency;
  4470. package = 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */;
  4471. productName = CDMarkdownKit;
  4472. };
  4473. 1F7AE07729142CA1009F72AD /* NextcloudKit */ = {
  4474. isa = XCSwiftPackageProductDependency;
  4475. package = 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  4476. productName = NextcloudKit;
  4477. };
  4478. 1F7AE07929142E62009F72AD /* NextcloudKit */ = {
  4479. isa = XCSwiftPackageProductDependency;
  4480. package = 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  4481. productName = NextcloudKit;
  4482. };
  4483. 1F7AE07B29142E6A009F72AD /* NextcloudKit */ = {
  4484. isa = XCSwiftPackageProductDependency;
  4485. package = 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  4486. productName = NextcloudKit;
  4487. };
  4488. 1FAB2E7C2AC99326001214EB /* TOCropViewController */ = {
  4489. isa = XCSwiftPackageProductDependency;
  4490. package = 1FAB2E7B2AC99326001214EB /* XCRemoteSwiftPackageReference "TOCropViewController" */;
  4491. productName = TOCropViewController;
  4492. };
  4493. 1FAB2E7E2AC99367001214EB /* TOCropViewController */ = {
  4494. isa = XCSwiftPackageProductDependency;
  4495. package = 1FAB2E7B2AC99326001214EB /* XCRemoteSwiftPackageReference "TOCropViewController" */;
  4496. productName = TOCropViewController;
  4497. };
  4498. 1FAB2E872ACD44D0001214EB /* WebRTC */ = {
  4499. isa = XCSwiftPackageProductDependency;
  4500. package = 1FAB2E862ACD44CF001214EB /* XCRemoteSwiftPackageReference "talk-clients-webrtc" */;
  4501. productName = WebRTC;
  4502. };
  4503. 1FCE3D522C9B5918009C68A9 /* SwiftyGif */ = {
  4504. isa = XCSwiftPackageProductDependency;
  4505. package = 1FCE3D512C9B5918009C68A9 /* XCRemoteSwiftPackageReference "SwiftyGif" */;
  4506. productName = SwiftyGif;
  4507. };
  4508. 1FF136192BFBC841006A6101 /* SwiftyAttributes */ = {
  4509. isa = XCSwiftPackageProductDependency;
  4510. package = 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */;
  4511. productName = SwiftyAttributes;
  4512. };
  4513. 1FF1361B2BFBC86A006A6101 /* SwiftyAttributes */ = {
  4514. isa = XCSwiftPackageProductDependency;
  4515. package = 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */;
  4516. productName = SwiftyAttributes;
  4517. };
  4518. 2CCCD21C2835088F00F076CE /* OpenSSL */ = {
  4519. isa = XCSwiftPackageProductDependency;
  4520. package = 2CCCD21B2835088F00F076CE /* XCRemoteSwiftPackageReference "OpenSSL" */;
  4521. productName = OpenSSL;
  4522. };
  4523. 80CDF8C32A8E098900CB57AE /* SwiftUIIntrospect */ = {
  4524. isa = XCSwiftPackageProductDependency;
  4525. package = 80CDF8C22A8E098900CB57AE /* XCRemoteSwiftPackageReference "swiftui-introspect" */;
  4526. productName = SwiftUIIntrospect;
  4527. };
  4528. /* End XCSwiftPackageProductDependency section */
  4529. };
  4530. rootObject = 2C0574751EDD9E8E00D9E7F2 /* Project object */;
  4531. }