123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 54;
- objects = {
- /* Begin PBXBuildFile section */
- 1F0A1D442A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0A1D432A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift */; };
- 1F0B0A722BA264540073FF8D /* MentionSuggestion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0B0A712BA264540073FF8D /* MentionSuggestion.swift */; };
- 1F0B0A732BA265300073FF8D /* MentionSuggestion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0B0A712BA264540073FF8D /* MentionSuggestion.swift */; };
- 1F0B0A742BA265310073FF8D /* MentionSuggestion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0B0A712BA264540073FF8D /* MentionSuggestion.swift */; };
- 1F0B0A752BA265310073FF8D /* MentionSuggestion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0B0A712BA264540073FF8D /* MentionSuggestion.swift */; };
- 1F0B0A772BA26BE10073FF8D /* UnitMentionSuggestionTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0B0A762BA26BE10073FF8D /* UnitMentionSuggestionTest.swift */; };
- 1F0ECBF52A68274400921E90 /* CDMarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F0ECBF42A68274400921E90 /* CDMarkdownKit */; };
- 1F0ECBF72A68277000921E90 /* CDMarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F0ECBF62A68277000921E90 /* CDMarkdownKit */; };
- 1F0ECBF92A68277C00921E90 /* CDMarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F0ECBF82A68277C00921E90 /* CDMarkdownKit */; };
- 1F11FB7229C07B04001E21E7 /* NCZoomableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F11FB7129C07B04001E21E7 /* NCZoomableView.swift */; };
- 1F1B0F252BD94A0D003FD766 /* UnitDarwinCenterTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F242BD94A0D003FD766 /* UnitDarwinCenterTest.swift */; };
- 1F1B0F272BDA61C5003FD766 /* AllocationTracker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F262BDA61C5003FD766 /* AllocationTracker.swift */; };
- 1F1B0F2C2BDBB3AC003FD766 /* NCMediaViewerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F2B2BDBB3AC003FD766 /* NCMediaViewerViewController.swift */; };
- 1F1B0F302BDBC9D6003FD766 /* NCMediaViewerPageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F2F2BDBC9D6003FD766 /* NCMediaViewerPageViewController.swift */; };
- 1F1B0F322BDC57E3003FD766 /* UIPageViewControllerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F312BDC57E3003FD766 /* UIPageViewControllerExtension.swift */; };
- 1F1B0F362BDD8B9C003FD766 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F352BDD8B9C003FD766 /* NCActivityIndicator.swift */; };
- 1F1B0F422BE047CE003FD766 /* UIViewController+Transitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F3B2BE047CD003FD766 /* UIViewController+Transitions.swift */; };
- 1F1B0F432BE047CE003FD766 /* ModalTransitionAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F3C2BE047CD003FD766 /* ModalTransitionAnimator.swift */; };
- 1F1B0F442BE047CE003FD766 /* ModalTransitionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F3D2BE047CD003FD766 /* ModalTransitionManager.swift */; };
- 1F1B0F452BE047CE003FD766 /* ModalPresentationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F3E2BE047CD003FD766 /* ModalPresentationController.swift */; };
- 1F1B0F462BE047CE003FD766 /* InteractionControlling.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F3F2BE047CD003FD766 /* InteractionControlling.swift */; };
- 1F1B0F472BE047CE003FD766 /* StandardInteractionController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F402BE047CE003FD766 /* StandardInteractionController.swift */; };
- 1F1B0F482BE047CE003FD766 /* CustomPresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F412BE047CE003FD766 /* CustomPresentable.swift */; };
- 1F1B0F4A2BE047D5003FD766 /* OneWayPanGestureRecognizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F492BE047D5003FD766 /* OneWayPanGestureRecognizer.swift */; };
- 1F1B0F4C2BE18FF3003FD766 /* CustomPresentableNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B0F4B2BE18FF3003FD766 /* CustomPresentableNavigationController.swift */; };
- 1F1B50342B8E069800B0F2F4 /* BaseChatTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50332B8E069800B0F2F4 /* BaseChatTableViewCell.swift */; };
- 1F1B50382B8E070100B0F2F4 /* BaseChatTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F1B50372B8E070100B0F2F4 /* BaseChatTableViewCell.xib */; };
- 1F1B503A2B8F9E1300B0F2F4 /* BaseChatTableViewCell+File.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50392B8F9E1300B0F2F4 /* BaseChatTableViewCell+File.swift */; };
- 1F1B503E2B8FB12100B0F2F4 /* BaseChatTableViewCell+Message.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B503D2B8FB12100B0F2F4 /* BaseChatTableViewCell+Message.swift */; };
- 1F1B50442B9095D100B0F2F4 /* FederatedCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50432B9095D100B0F2F4 /* FederatedCapabilities.m */; };
- 1F1B50472B90CDF800B0F2F4 /* TalkCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50462B90CDF800B0F2F4 /* TalkCapabilities.m */; };
- 1F1B50482B90CF0800B0F2F4 /* TalkCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50462B90CDF800B0F2F4 /* TalkCapabilities.m */; };
- 1F1B50492B90CF0800B0F2F4 /* TalkCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50462B90CDF800B0F2F4 /* TalkCapabilities.m */; };
- 1F1B504A2B90CF0800B0F2F4 /* TalkCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50462B90CDF800B0F2F4 /* TalkCapabilities.m */; };
- 1F1B504B2B90CF0C00B0F2F4 /* FederatedCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50432B9095D100B0F2F4 /* FederatedCapabilities.m */; };
- 1F1B504C2B90CF0C00B0F2F4 /* FederatedCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50432B9095D100B0F2F4 /* FederatedCapabilities.m */; };
- 1F1B504D2B90CF0C00B0F2F4 /* FederatedCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1B50432B9095D100B0F2F4 /* FederatedCapabilities.m */; };
- 1F1C0D7F29A7F33600D17C6D /* NCNotificationAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA38C8F29A4B3C6008871B8 /* NCNotificationAction.swift */; };
- 1F1C0D8729AFB88800D17C6D /* VLCKitVideoViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F1C0D8629AFB88800D17C6D /* VLCKitVideoViewController.xib */; };
- 1F1C0D8929AFB89900D17C6D /* VLCKitVideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1C0D8829AFB89900D17C6D /* VLCKitVideoViewController.swift */; };
- 1F1C999D2909846400EACF02 /* BGTaskHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD9182828C55A73009092AB /* BGTaskHelper.swift */; };
- 1F1C999E2909846400EACF02 /* BGTaskHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD9182828C55A73009092AB /* BGTaskHelper.swift */; };
- 1F1DF83C2C5C17AF00E5EA86 /* TalkActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF83B2C5C17AF00E5EA86 /* TalkActor.swift */; };
- 1F1DF83D2C5C17AF00E5EA86 /* TalkActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF83B2C5C17AF00E5EA86 /* TalkActor.swift */; };
- 1F1DF83E2C5C17AF00E5EA86 /* TalkActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF83B2C5C17AF00E5EA86 /* TalkActor.swift */; };
- 1F1DF83F2C5C17AF00E5EA86 /* TalkActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF83B2C5C17AF00E5EA86 /* TalkActor.swift */; };
- 1F1DF8412C63C25900E5EA86 /* UnitNCDatabaseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF8402C63C25900E5EA86 /* UnitNCDatabaseManager.swift */; };
- 1F1DF8432C64006E00E5EA86 /* SignalingParticipant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF8422C64006E00E5EA86 /* SignalingParticipant.swift */; };
- 1F1DF8442C64006E00E5EA86 /* SignalingParticipant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF8422C64006E00E5EA86 /* SignalingParticipant.swift */; };
- 1F1DF8452C64006E00E5EA86 /* SignalingParticipant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF8422C64006E00E5EA86 /* SignalingParticipant.swift */; };
- 1F1DF8462C64006E00E5EA86 /* SignalingParticipant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1DF8422C64006E00E5EA86 /* SignalingParticipant.swift */; };
- 1F24B5A228E0648600654457 /* ReferenceGithubView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F24B5A128E0648600654457 /* ReferenceGithubView.swift */; };
- 1F24B5A428E0649200654457 /* ReferenceGithubView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F24B5A328E0649200654457 /* ReferenceGithubView.xib */; };
- 1F35F8E02AEEB9DE00044BDA /* ShareConfirmationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F35F8DF2AEEB9DE00044BDA /* ShareConfirmationViewController.swift */; };
- 1F35F8E12AEEB9DE00044BDA /* ShareConfirmationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F35F8DF2AEEB9DE00044BDA /* ShareConfirmationViewController.swift */; };
- 1F35F8E22AEEBAF900044BDA /* InputbarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5A24322ADA77DA009939FE /* InputbarViewController.swift */; };
- 1F35F8E32AEEBBE000044BDA /* NCChatTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7381552106136000CDB8DB /* NCChatTitleView.m */; };
- 1F35F8E42AEEBBE500044BDA /* NCChatTitleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C738157210613A200CDB8DB /* NCChatTitleView.xib */; };
- 1F35F8E52AEEBC0100044BDA /* SLKInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB3039D2264775E0053078A /* SLKInputAccessoryView.m */; };
- 1F35F8E62AEEBC0300044BDA /* SLKTextInput+Implementation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB3039E2264775E0053078A /* SLKTextInput+Implementation.m */; };
- 1F35F8E72AEEBC0600044BDA /* SLKTextInputbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A12264775E0053078A /* SLKTextInputbar.m */; };
- 1F35F8E82AEEBC0800044BDA /* SLKTextView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A32264775E0053078A /* SLKTextView+SLKAdditions.m */; };
- 1F35F8E92AEEBC0C00044BDA /* SLKTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A52264775E0053078A /* SLKTextView.m */; };
- 1F35F8EA2AEEBC0E00044BDA /* SLKTextViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A72264775E0053078A /* SLKTextViewController.m */; };
- 1F35F8EB2AEEBC1100044BDA /* UIResponder+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303AD2264775E0053078A /* UIResponder+SLKAdditions.m */; };
- 1F35F8EC2AEEBC1400044BDA /* UIScrollView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303AF2264775E0053078A /* UIScrollView+SLKAdditions.m */; };
- 1F35F8ED2AEEBC1600044BDA /* UIView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303B12264775E0053078A /* UIView+SLKAdditions.m */; };
- 1F35F8EF2AEEBC1A00044BDA /* SLKDefaultReplyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F66B72829FA936E003FB168 /* SLKDefaultReplyView.m */; };
- 1F35F8F02AEEBC1D00044BDA /* SLKDefaultTypingIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F66B72B29FA9414003FB168 /* SLKDefaultTypingIndicatorView.m */; };
- 1F35F8F12AEEC25B00044BDA /* TypingIndicatorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F66B71E29FA703B003FB168 /* TypingIndicatorView.swift */; };
- 1F35F8F22AEEC25E00044BDA /* TypingIndicatorView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F66B72029FA7089003FB168 /* TypingIndicatorView.xib */; };
- 1F35F8F32AEEC29A00044BDA /* AvatarButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDCC3EF29ECB4CE00DEB39B /* AvatarButton.swift */; };
- 1F35F8F52AEEDA9800044BDA /* SwiftyAttributes in Frameworks */ = {isa = PBXBuildFile; productRef = 1F35F8F42AEEDA9800044BDA /* SwiftyAttributes */; };
- 1F35F8FB2AEEDBC600044BDA /* ChatViewControllerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F35F8FA2AEEDBC600044BDA /* ChatViewControllerExtension.swift */; };
- 1F35F8FC2AEEDBC600044BDA /* ChatViewControllerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F35F8FA2AEEDBC600044BDA /* ChatViewControllerExtension.swift */; };
- 1F35F9042AEEDF0E00044BDA /* AutoCompletionTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F35F9032AEEDF0E00044BDA /* AutoCompletionTableViewCell.m */; };
- 1F35F9052AEEDF0E00044BDA /* AutoCompletionTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F35F9032AEEDF0E00044BDA /* AutoCompletionTableViewCell.m */; };
- 1F35F9062AEEE3C400044BDA /* NCMessageTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1554A208F2E5700CE8EF0 /* NCMessageTextView.m */; };
- 1F35F9072AEEE3EC00044BDA /* NCUserStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78E9E225120DE500E3D4CA /* NCUserStatus.m */; };
- 1F35F90A2AEEE76A00044BDA /* QuotedMessageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C6E7448238C1A0800AE396C /* QuotedMessageView.m */; };
- 1F35F90B2AEEE76C00044BDA /* ReplyMessageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C6E74452386D33200AE396C /* ReplyMessageView.m */; };
- 1F371A372A7B921A006CBFB3 /* DatePickerTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F371A362A7B921A006CBFB3 /* DatePickerTextField.swift */; };
- 1F3C419F29EDAC7D00F58435 /* RoomAvatarInfoTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F3C419E29EDAC7D00F58435 /* RoomAvatarInfoTableViewController.swift */; };
- 1F3C41A129EDAC8800F58435 /* RoomAvatarInfoTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F3C41A029EDAC8800F58435 /* RoomAvatarInfoTableViewController.xib */; };
- 1F3C41A329EDF05700F58435 /* AvatarEditView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F3C41A229EDF05700F58435 /* AvatarEditView.swift */; };
- 1F3C41A529EDF0B800F58435 /* AvatarEditView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F3C41A429EDF0B800F58435 /* AvatarEditView.xib */; };
- 1F3D3B22255F109E00230DAE /* BarButtonItemWithActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F3D3B20255F109E00230DAE /* BarButtonItemWithActivity.m */; };
- 1F45A1162A01D6EC005FE87D /* SDWebImage in Frameworks */ = {isa = PBXBuildFile; productRef = 1F45A1152A01D6EC005FE87D /* SDWebImage */; };
- 1F45A11A2A01D70E005FE87D /* SDWebImage in Frameworks */ = {isa = PBXBuildFile; productRef = 1F45A1192A01D70E005FE87D /* SDWebImage */; };
- 1F45A11E2A01D719005FE87D /* SDWebImage in Frameworks */ = {isa = PBXBuildFile; productRef = 1F45A11D2A01D719005FE87D /* SDWebImage */; };
- 1F45A1212A01D8BA005FE87D /* SDWebImageSVGKitPlugin in Frameworks */ = {isa = PBXBuildFile; productRef = 1F45A1202A01D8BA005FE87D /* SDWebImageSVGKitPlugin */; };
- 1F45A1232A01D8F1005FE87D /* SDWebImageSVGKitPlugin in Frameworks */ = {isa = PBXBuildFile; productRef = 1F45A1222A01D8F1005FE87D /* SDWebImageSVGKitPlugin */; };
- 1F45A1252A01D8F7005FE87D /* SDWebImageSVGKitPlugin in Frameworks */ = {isa = PBXBuildFile; productRef = 1F45A1242A01D8F7005FE87D /* SDWebImageSVGKitPlugin */; };
- 1F468E7628DCC6C60099597B /* Dynamic in Frameworks */ = {isa = PBXBuildFile; productRef = 1F468E7528DCC6C60099597B /* Dynamic */; };
- 1F468E7828DCC7310099597B /* EmojiTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F468E7728DCC7310099597B /* EmojiTextField.swift */; };
- 1F46CE2928E05B3200E7D88E /* ReferenceDefaultView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F46CE2828E05B3200E7D88E /* ReferenceDefaultView.swift */; };
- 1F46CE2B28E05B3C00E7D88E /* ReferenceDefaultView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F46CE2A28E05B3C00E7D88E /* ReferenceDefaultView.xib */; };
- 1F4DD3EB2571C688007DC98E /* EmojiUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F4DD3EA2571C688007DC98E /* EmojiUtils.swift */; };
- 1F4DD3EC2571C688007DC98E /* EmojiUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F4DD3EA2571C688007DC98E /* EmojiUtils.swift */; };
- 1F4DD3ED2571C688007DC98E /* EmojiUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F4DD3EA2571C688007DC98E /* EmojiUtils.swift */; };
- 1F53819129195FA4003DA6B7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2CA1CCAB1F067F35002FE6A2 /* Images.xcassets */; };
- 1F5683CF2BA7980C0023E151 /* FilePreviewImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5683CE2BA7980C0023E151 /* FilePreviewImageView.swift */; };
- 1F5813F828EB23EF00318FC3 /* NCSplitViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5813F628EB23EF00318FC3 /* NCSplitViewController.swift */; };
- 1F5813F928EB23EF00318FC3 /* NCSplitViewPlaceholderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5813F728EB23EF00318FC3 /* NCSplitViewPlaceholderViewController.swift */; };
- 1F59446225B8EDF5002AD65F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2C7F47AC20289B9600081CC7 /* Localizable.strings */; };
- 1F59446625B8EDF5002AD65F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2C7F47AC20289B9600081CC7 /* Localizable.strings */; };
- 1F5A24332ADA77DA009939FE /* InputbarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5A24322ADA77DA009939FE /* InputbarViewController.swift */; };
- 1F5CDAE72B3B05110040ECC0 /* UnitColorGeneratorTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5CDAE62B3B05110040ECC0 /* UnitColorGeneratorTest.swift */; };
- 1F61C767285E35A6004D74D8 /* DiagnosticsTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F61C766285E35A6004D74D8 /* DiagnosticsTableViewController.swift */; };
- 1F61C76B285F65E1004D74D8 /* SimpleTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F61C76A285F65E1004D74D8 /* SimpleTableViewController.swift */; };
- 1F628CBA2842BAAF0083A425 /* QRCodeReader in Frameworks */ = {isa = PBXBuildFile; productRef = 1F628CB92842BAAF0083A425 /* QRCodeReader */; };
- 1F6629FA2C17700E001C6C0E /* IntegrationRoomsManagerTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6629F92C17700E001C6C0E /* IntegrationRoomsManagerTest.swift */; };
- 1F66B71F29FA703B003FB168 /* TypingIndicatorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F66B71E29FA703B003FB168 /* TypingIndicatorView.swift */; };
- 1F66B72129FA7089003FB168 /* TypingIndicatorView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F66B72029FA7089003FB168 /* TypingIndicatorView.xib */; };
- 1F66B72929FA936E003FB168 /* SLKDefaultReplyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F66B72829FA936E003FB168 /* SLKDefaultReplyView.m */; };
- 1F66B72C29FA9414003FB168 /* SLKDefaultTypingIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F66B72B29FA9414003FB168 /* SLKDefaultTypingIndicatorView.m */; };
- 1F66B72F29FABD01003FB168 /* SwiftyAttributes in Frameworks */ = {isa = PBXBuildFile; productRef = 1F66B72E29FABD01003FB168 /* SwiftyAttributes */; };
- 1F6D8C332B2E3756004376B8 /* IntegrationRoomTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C322B2E3756004376B8 /* IntegrationRoomTest.swift */; };
- 1F6D8C3D2B2F23C4004376B8 /* Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C3C2B2F23C4004376B8 /* Helpers.swift */; };
- 1F6D8C412B2F26D5004376B8 /* TestConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C402B2F26D5004376B8 /* TestConstants.swift */; };
- 1F6D8C432B2F26EE004376B8 /* Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C422B2F26EE004376B8 /* Helpers.swift */; };
- 1F6D8C442B2F2791004376B8 /* TestConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C402B2F26D5004376B8 /* TestConstants.swift */; };
- 1F6D8C492B2F2FB7004376B8 /* AAAALoginTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C472B2F2F69004376B8 /* AAAALoginTest.swift */; };
- 1F6D8C4B2B2F5B61004376B8 /* TestBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C4A2B2F5B61004376B8 /* TestBase.swift */; };
- 1F6D8C4D2B2F8FE5004376B8 /* IntegrationChatTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6D8C4C2B2F8FE5004376B8 /* IntegrationChatTest.swift */; };
- 1F759C092B63B9A7000534AB /* SDWebImage in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C082B63B9A7000534AB /* SDWebImage */; };
- 1F759C0B2B63B9A7000534AB /* SDWebImageSVGKitPlugin in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C0A2B63B9A7000534AB /* SDWebImageSVGKitPlugin */; };
- 1F759C0E2B63B9BA000534AB /* WebRTC in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C0D2B63B9BA000534AB /* WebRTC */; };
- 1F759C102B63B9D9000534AB /* OpenSSL in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C0F2B63B9D9000534AB /* OpenSSL */; };
- 1F759C142B63B9D9000534AB /* QRCodeReader in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C132B63B9D9000534AB /* QRCodeReader */; };
- 1F759C162B63B9D9000534AB /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C152B63B9D9000534AB /* NextcloudKit */; };
- 1F759C182B63B9D9000534AB /* SwiftyAttributes in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C172B63B9D9000534AB /* SwiftyAttributes */; };
- 1F759C1A2B63B9D9000534AB /* CDMarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C192B63B9D9000534AB /* CDMarkdownKit */; };
- 1F759C1C2B63B9D9000534AB /* TOCropViewController in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C1B2B63B9D9000534AB /* TOCropViewController */; };
- 1F759C1E2B63B9D9000534AB /* SwiftUIIntrospect in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C1D2B63B9D9000534AB /* SwiftUIIntrospect */; };
- 1F759C2C2B63CB93000534AB /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C2B2B63CB93000534AB /* Realm */; };
- 1F759C2E2B63CB9A000534AB /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C2D2B63CB9A000534AB /* Realm */; };
- 1F759C302B63CBA0000534AB /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C2F2B63CBA0000534AB /* Realm */; };
- 1F759C322B63CBA5000534AB /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C312B63CBA5000534AB /* Realm */; };
- 1F759C342B63CBAA000534AB /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = 1F759C332B63CBAA000534AB /* Realm */; };
- 1F7625E52901B0DB00834869 /* CallsFromOldAccountViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F7625E42901B0DB00834869 /* CallsFromOldAccountViewController.swift */; };
- 1F7625E72901B0E800834869 /* CallsFromOldAccountViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F7625E62901B0E800834869 /* CallsFromOldAccountViewController.xib */; };
- 1F77A5EB2AB9A3EE007B6037 /* BGTaskHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD9182828C55A73009092AB /* BGTaskHelper.swift */; };
- 1F77A5EC2AB9A405007B6037 /* NCChatBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446DC2658158000DF1DBC /* NCChatBlock.m */; };
- 1F77A5ED2AB9A408007B6037 /* NCChatMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA15540208E350300CE8EF0 /* NCChatMessage.m */; };
- 1F77A5EF2AB9A41E007B6037 /* SDWebImage in Frameworks */ = {isa = PBXBuildFile; productRef = 1F77A5EE2AB9A41E007B6037 /* SDWebImage */; };
- 1F77A5F12AB9A423007B6037 /* SDWebImageSVGKitPlugin in Frameworks */ = {isa = PBXBuildFile; productRef = 1F77A5F02AB9A423007B6037 /* SDWebImageSVGKitPlugin */; };
- 1F77A5F22AB9A436007B6037 /* EmojiUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F4DD3EA2571C688007DC98E /* EmojiUtils.swift */; };
- 1F77A5F32AB9A43B007B6037 /* SwiftMarkdownObjCBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0A1D432A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift */; };
- 1F77A5F42AB9A4B2007B6037 /* ABContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDE4257F883400AEDFB6 /* ABContact.m */; };
- 1F77A5F52AB9A4B9007B6037 /* NCAPIController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCA91F02D1A4002FE6A2 /* NCAPIController.m */; };
- 1F77A5F62AB9A4BF007B6037 /* NCChatReaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC32E9727F5D9BD00BB8C39 /* NCChatReaction.m */; };
- 1F77A5F72AB9A4C5007B6037 /* NCContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDCD257E939600AEDFB6 /* NCContact.m */; };
- 1F77A5F82AB9A4CD007B6037 /* NCDeckCardParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1FF4728183958009F7288 /* NCDeckCardParameter.m */; };
- 1F77A5F92AB9A4D9007B6037 /* NCMessageFileParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEDE3CC257D43AB00853F79 /* NCMessageFileParameter.m */; };
- 1F77A5FA2AB9A4DF007B6037 /* NCMessageLocationParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACD92641483800D3D641 /* NCMessageLocationParameter.m */; };
- 1F77A5FB2AB9A4E6007B6037 /* NCMessageParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C43BA7521309A1000B3068A /* NCMessageParameter.m */; };
- 1F77A5FC2AB9A4ED007B6037 /* NCRoom.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCC21F166CC5002FE6A2 /* NCRoom.m */; };
- 1F77A5FD2AB9A4F3007B6037 /* ServerCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D7265814D100DF1DBC /* ServerCapabilities.m */; };
- 1F77A5FE2AB9A4F9007B6037 /* TalkAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D22658147900DF1DBC /* TalkAccount.m */; };
- 1F77A6002AB9A50D007B6037 /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F77A5FF2AB9A50D007B6037 /* NextcloudKit */; };
- 1F77A6012AB9A51D007B6037 /* NCNotificationAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA38C8F29A4B3C6008871B8 /* NCNotificationAction.swift */; };
- 1F77A6022AB9A532007B6037 /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82B11FCC7DBA00636459 /* CCCertificate.m */; };
- 1F77A6032AB9A56D007B6037 /* NotificationCenterNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EF265D454200DF1DBC /* NotificationCenterNotifications.m */; };
- 1F77A6062AB9A581007B6037 /* NCKeyChainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EB265D25BA00DF1DBC /* NCKeyChainController.m */; };
- 1F77A6082AB9A58D007B6037 /* NCRoomParticipants.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3780BC2107209C003F9AE8 /* NCRoomParticipants.m */; };
- 1F77A60A2AB9A5AE007B6037 /* NCUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCCC1F181741002FE6A2 /* NCUser.m */; };
- 1F77A60C2AB9A5BE007B6037 /* CDMarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F77A60B2AB9A5BE007B6037 /* CDMarkdownKit */; };
- 1F77A60D2AB9A5CC007B6037 /* NCPoll.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF1288A97D800E75118 /* NCPoll.m */; };
- 1F77A6162AB9B161007B6037 /* ScreenCaptureController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F77A6112AB9B161007B6037 /* ScreenCaptureController.m */; };
- 1F77A6172AB9B161007B6037 /* ScreenCapturer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F77A6132AB9B161007B6037 /* ScreenCapturer.m */; };
- 1F77A6222AB9EB06007B6037 /* SocketConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F77A6212AB9EB06007B6037 /* SocketConnection.m */; };
- 1F77A6242ABA0003007B6037 /* SampleHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F77A6232ABA0003007B6037 /* SampleHandler.swift */; };
- 1F77A6272ABA0CD9007B6037 /* NCScreensharingController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F77A6262ABA0CD9007B6037 /* NCScreensharingController.m */; };
- 1F77A62E2ABAFCC0007B6037 /* DarwinNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF2FD792AB99E4D000C9905 /* DarwinNotificationCenter.swift */; };
- 1F77A62F2ABAFCEB007B6037 /* DarwinNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF2FD792AB99E4D000C9905 /* DarwinNotificationCenter.swift */; };
- 1F785DDD2707865F00AC4B40 /* VoiceMessageTranscribeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F785DDA2707865F00AC4B40 /* VoiceMessageTranscribeViewController.m */; };
- 1F785DDE2707865F00AC4B40 /* VoiceMessageTranscribeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F785DDB2707865F00AC4B40 /* VoiceMessageTranscribeViewController.xib */; };
- 1F7AE07829142CA1009F72AD /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F7AE07729142CA1009F72AD /* NextcloudKit */; };
- 1F7AE07A29142E62009F72AD /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F7AE07929142E62009F72AD /* NextcloudKit */; };
- 1F7AE07C29142E6A009F72AD /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = 1F7AE07B29142E6A009F72AD /* NextcloudKit */; };
- 1F7AE07D29158878009F72AD /* IntentsUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F90EFC225FE489B00F3FA55 /* IntentsUI.framework */; };
- 1F8995B32970644C00CABA33 /* ColorGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8995B22970644C00CABA33 /* ColorGenerator.swift */; };
- 1F8995B52973547700CABA33 /* WebRTCCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8995B42973547700CABA33 /* WebRTCCommon.swift */; };
- 1F8AAC322C518759004DA20A /* SignalingSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC312C518759004DA20A /* SignalingSettings.swift */; };
- 1F8AAC332C518B8A004DA20A /* SignalingSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC312C518759004DA20A /* SignalingSettings.swift */; };
- 1F8AAC342C518B8A004DA20A /* SignalingSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC312C518759004DA20A /* SignalingSettings.swift */; };
- 1F8AAC352C518B8B004DA20A /* SignalingSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC312C518759004DA20A /* SignalingSettings.swift */; };
- 1F8AAC372C519577004DA20A /* TurnServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC362C519577004DA20A /* TurnServer.swift */; };
- 1F8AAC382C519577004DA20A /* TurnServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC362C519577004DA20A /* TurnServer.swift */; };
- 1F8AAC392C519577004DA20A /* TurnServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC362C519577004DA20A /* TurnServer.swift */; };
- 1F8AAC3A2C519577004DA20A /* TurnServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC362C519577004DA20A /* TurnServer.swift */; };
- 1F8AAC3C2C519689004DA20A /* StunServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC3B2C519689004DA20A /* StunServer.swift */; };
- 1F8AAC3D2C519689004DA20A /* StunServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC3B2C519689004DA20A /* StunServer.swift */; };
- 1F8AAC3E2C519689004DA20A /* StunServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC3B2C519689004DA20A /* StunServer.swift */; };
- 1F8AAC3F2C519689004DA20A /* StunServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC3B2C519689004DA20A /* StunServer.swift */; };
- 1F8AAC622C596308004DA20A /* UnitSignalingSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F8AAC612C596308004DA20A /* UnitSignalingSettings.swift */; };
- 1F90DA0429E9A28E00E81E3D /* AvatarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F90DA0329E9A28E00E81E3D /* AvatarManager.swift */; };
- 1F90EFBC25FE39F800F3FA55 /* NCIntentController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F90EFBB25FE39F800F3FA55 /* NCIntentController.m */; };
- 1F90EFBD25FE39F800F3FA55 /* NCIntentController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F90EFBB25FE39F800F3FA55 /* NCIntentController.m */; };
- 1F90EFBE25FE39F800F3FA55 /* NCIntentController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F90EFBB25FE39F800F3FA55 /* NCIntentController.m */; };
- 1F90EFC725FE4BE700F3FA55 /* IntentsUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F90EFC225FE489B00F3FA55 /* IntentsUI.framework */; };
- 1F98DF9C28E7484700E05174 /* ReferenceDeckView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F98DF9B28E7484700E05174 /* ReferenceDeckView.swift */; };
- 1F98DF9E28E7485000E05174 /* ReferenceDeckView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1F98DF9D28E7485000E05174 /* ReferenceDeckView.xib */; };
- 1FA20C8A284001D80062B4F3 /* DebounceWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA20C89284001D80062B4F3 /* DebounceWebView.swift */; };
- 1FA38C9029A4B3C6008871B8 /* NCNotificationAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA38C8F29A4B3C6008871B8 /* NCNotificationAction.swift */; };
- 1FA38C9129A4B3C6008871B8 /* NCNotificationAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA38C8F29A4B3C6008871B8 /* NCNotificationAction.swift */; };
- 1FA732FC2966CBB7003D2103 /* CallFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA732FB2966CBB7003D2103 /* CallFlowLayout.swift */; };
- 1FAB2E7D2AC99326001214EB /* TOCropViewController in Frameworks */ = {isa = PBXBuildFile; productRef = 1FAB2E7C2AC99326001214EB /* TOCropViewController */; };
- 1FAB2E7F2AC99367001214EB /* TOCropViewController in Frameworks */ = {isa = PBXBuildFile; productRef = 1FAB2E7E2AC99367001214EB /* TOCropViewController */; };
- 1FAB2E832AC9EC3F001214EB /* BaseChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2E822AC9EC3F001214EB /* BaseChatViewController.swift */; };
- 1FAB2E852ACB482B001214EB /* ChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2E842ACB482B001214EB /* ChatViewController.swift */; };
- 1FAB2E882ACD44D0001214EB /* WebRTC in Frameworks */ = {isa = PBXBuildFile; productRef = 1FAB2E872ACD44D0001214EB /* WebRTC */; };
- 1FAB2EEE2AD1BC1B001214EB /* UIControlExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2EED2AD1BC1B001214EB /* UIControlExtensions.swift */; };
- 1FAB2EF02AD1EAA3001214EB /* RLMSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2EEF2AD1EAA3001214EB /* RLMSupport.swift */; };
- 1FAB2EF12AD1EAA3001214EB /* RLMSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2EEF2AD1EAA3001214EB /* RLMSupport.swift */; };
- 1FAB2EF22AD1EAA3001214EB /* RLMSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2EEF2AD1EAA3001214EB /* RLMSupport.swift */; };
- 1FADECD62B821E24007AD94B /* FederationInvitationTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FADECD52B821E24007AD94B /* FederationInvitationTableViewController.swift */; };
- 1FADECD82B82269E007AD94B /* FederationInvitationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FADECD72B82269E007AD94B /* FederationInvitationCell.swift */; };
- 1FADECDA2B8227B1007AD94B /* FederationInvitationCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FADECD92B8227B1007AD94B /* FederationInvitationCell.xib */; };
- 1FB52E762842C75E00AC741B /* QRCodeLoginController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB52E752842C75E00AC741B /* QRCodeLoginController.swift */; };
- 1FB6678F28CE381300D29F8D /* SubtitleTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB6678E28CE381300D29F8D /* SubtitleTableViewCell.swift */; };
- 1FB78E1F2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E1E2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift */; };
- 1FB78E202B6ADBB600B0D69D /* NCAPIControllerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E1E2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift */; };
- 1FB78E212B6ADBB700B0D69D /* NCAPIControllerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E1E2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift */; };
- 1FB78E222B6ADBB700B0D69D /* NCAPIControllerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E1E2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift */; };
- 1FB78E262B6AE5A600B0D69D /* FederationInvitation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E252B6AE5A600B0D69D /* FederationInvitation.swift */; };
- 1FB78E272B6AE8C900B0D69D /* FederationInvitation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E252B6AE5A600B0D69D /* FederationInvitation.swift */; };
- 1FB78E282B6AE8C900B0D69D /* FederationInvitation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E252B6AE5A600B0D69D /* FederationInvitation.swift */; };
- 1FB78E292B6AE8CA00B0D69D /* FederationInvitation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB78E252B6AE5A600B0D69D /* FederationInvitation.swift */; };
- 1FB7B9852BE2EE020093CE98 /* UnitChatViewControllerTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B9842BE2EE020093CE98 /* UnitChatViewControllerTest.swift */; };
- 1FB7B9872BE441450093CE98 /* UIViewExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B9862BE441450093CE98 /* UIViewExtensions.swift */; };
- 1FB7B9892BE442400093CE98 /* UnitBaseChatTableViewCellTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B9882BE442400093CE98 /* UnitBaseChatTableViewCellTest.swift */; };
- 1FB7B98E2BF0CBA60093CE98 /* BannedActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B98D2BF0CBA60093CE98 /* BannedActor.swift */; };
- 1FB7B9902BF0CDF80093CE98 /* BannedActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B98D2BF0CBA60093CE98 /* BannedActor.swift */; };
- 1FB7B9912BF0CDF80093CE98 /* BannedActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B98D2BF0CBA60093CE98 /* BannedActor.swift */; };
- 1FB7B9922BF0CDF90093CE98 /* BannedActor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B98D2BF0CBA60093CE98 /* BannedActor.swift */; };
- 1FB7B9952BF0DF1C0093CE98 /* BannedActorTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B9942BF0DF1C0093CE98 /* BannedActorTableViewController.swift */; };
- 1FB7B99A2BF0DF290093CE98 /* BannedActorCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7B9992BF0DF290093CE98 /* BannedActorCell.swift */; };
- 1FB7B99C2BF0DF360093CE98 /* BannedActorCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FB7B99B2BF0DF360093CE98 /* BannedActorCell.xib */; };
- 1FBC3BE52B61ACD5003909E0 /* UnitBaseChatViewControllerTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC3BE42B61ACD5003909E0 /* UnitBaseChatViewControllerTest.swift */; };
- 1FBC3BE92B61BD09003909E0 /* TestBaseRealm.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC3BE82B61BD09003909E0 /* TestBaseRealm.swift */; };
- 1FC940B92A5F21FC00FFFADE /* SwiftMarkdownObjCBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0A1D432A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift */; };
- 1FC940BA2A5F21FD00FFFADE /* SwiftMarkdownObjCBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F0A1D432A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift */; };
- 1FCE3D532C9B5918009C68A9 /* SwiftyGif in Frameworks */ = {isa = PBXBuildFile; productRef = 1FCE3D522C9B5918009C68A9 /* SwiftyGif */; };
- 1FCE3D552C9C189D009C68A9 /* NCChatFileControllerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FCE3D542C9C189D009C68A9 /* NCChatFileControllerWrapper.swift */; };
- 1FCE3D572C9C4D18009C68A9 /* ReferenceGiphyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FCE3D562C9C4D18009C68A9 /* ReferenceGiphyView.swift */; };
- 1FCE3D592C9C4D21009C68A9 /* ReferenceGiphyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FCE3D582C9C4D21009C68A9 /* ReferenceGiphyView.xib */; };
- 1FD6F83C2B825069004048AB /* NCRoomsManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD6F83B2B825069004048AB /* NCRoomsManagerExtensions.swift */; };
- 1FD6F83E2B87B712004048AB /* NCUserStatusExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD6F83D2B87B712004048AB /* NCUserStatusExtensions.swift */; };
- 1FD8AE6B2A3A216300787C16 /* UIRoomTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8AD8C2A3A162100787C16 /* UIRoomTest.swift */; };
- 1FD9182928C55A73009092AB /* BGTaskHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD9182828C55A73009092AB /* BGTaskHelper.swift */; };
- 1FDB47F62C9C71CE00D6F423 /* TalkAccount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDB47F52C9C71CE00D6F423 /* TalkAccount.swift */; };
- 1FDB47F82C9C7E3F00D6F423 /* NCDatabaseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDB47F72C9C7E3F00D6F423 /* NCDatabaseManager.swift */; };
- 1FDCC3D429EBF6E700DEB39B /* AvatarImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDCC3D329EBF6E700DEB39B /* AvatarImageView.swift */; };
- 1FDCC3E329EC787400DEB39B /* AvatarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F90DA0329E9A28E00E81E3D /* AvatarManager.swift */; };
- 1FDCC3ED29EC7E6700DEB39B /* AvatarImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDCC3D329EBF6E700DEB39B /* AvatarImageView.swift */; };
- 1FDCC3EE29EC7E8500DEB39B /* AvatarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F90DA0329E9A28E00E81E3D /* AvatarManager.swift */; };
- 1FDCC3F029ECB4CE00DEB39B /* AvatarButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDCC3EF29ECB4CE00DEB39B /* AvatarButton.swift */; };
- 1FDDB0D92AF440DD00FBAFB7 /* BoundsChangedFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDDB0D82AF440DD00FBAFB7 /* BoundsChangedFlowLayout.swift */; };
- 1FDDB0DB2AF440E100FBAFB7 /* BoundsChangedFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDDB0D82AF440DD00FBAFB7 /* BoundsChangedFlowLayout.swift */; };
- 1FDE7C9A28DE14A200CB718E /* ReferenceView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDE7C9928DE14A200CB718E /* ReferenceView.swift */; };
- 1FDE7C9C28DE14B000CB718E /* ReferenceView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FDE7C9B28DE14B000CB718E /* ReferenceView.xib */; };
- 1FDFC94D2BA50B9100670DF4 /* UIFontExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDFC94C2BA50B9100670DF4 /* UIFontExtension.swift */; };
- 1FDFC94E2BA50B9100670DF4 /* UIFontExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDFC94C2BA50B9100670DF4 /* UIFontExtension.swift */; };
- 1FDFC94F2BA50B9100670DF4 /* UIFontExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDFC94C2BA50B9100670DF4 /* UIFontExtension.swift */; };
- 1FDFC9502BA50B9100670DF4 /* UIFontExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDFC94C2BA50B9100670DF4 /* UIFontExtension.swift */; };
- 1FE0C56C2A0531200083576A /* ReferenceTalkView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FE0C56B2A0531200083576A /* ReferenceTalkView.xib */; };
- 1FE0C56E2A0531270083576A /* ReferenceTalkView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FE0C56D2A0531270083576A /* ReferenceTalkView.swift */; };
- 1FE7DE302BB4598F0040EE12 /* RoomInvitationViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FE7DE2F2BB4598F0040EE12 /* RoomInvitationViewCell.swift */; };
- 1FE7DE322BB459B10040EE12 /* RoomInvitationViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FE7DE312BB459B10040EE12 /* RoomInvitationViewCell.xib */; };
- 1FE7DE332BBC8FA00040EE12 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1FADECD42B7EACCB007AD94B /* PrivacyInfo.xcprivacy */; };
- 1FE7DE342BBC8FA10040EE12 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1FADECD42B7EACCB007AD94B /* PrivacyInfo.xcprivacy */; };
- 1FE7DE352BBC8FA10040EE12 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1FADECD42B7EACCB007AD94B /* PrivacyInfo.xcprivacy */; };
- 1FE7DE362BBC8FA10040EE12 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1FADECD42B7EACCB007AD94B /* PrivacyInfo.xcprivacy */; };
- 1FE94734293CE55600D6584C /* NCCameraController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FE94733293CE55600D6584C /* NCCameraController.swift */; };
- 1FEC459C2A02BCAE00A636AA /* ReferenceGithubPermalinkView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FEC459B2A02BCAE00A636AA /* ReferenceGithubPermalinkView.xib */; };
- 1FEC459E2A02BCB900A636AA /* ReferenceGithubPermalinkView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FEC459D2A02BCB900A636AA /* ReferenceGithubPermalinkView.swift */; };
- 1FEC45A32A02F92700A636AA /* GithubPermalinkViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FEC45A22A02F92700A636AA /* GithubPermalinkViewController.swift */; };
- 1FEC45A52A02F92B00A636AA /* GithubPermalinkViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FEC45A42A02F92B00A636AA /* GithubPermalinkViewController.xib */; };
- 1FEDE3C6257D439500853F79 /* NCChatFileController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEDE3C4257D439500853F79 /* NCChatFileController.m */; };
- 1FEDE3CE257D43AB00853F79 /* NCMessageFileParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEDE3CC257D43AB00853F79 /* NCMessageFileParameter.m */; };
- 1FEDE3CF257D43AB00853F79 /* NCMessageFileParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEDE3CC257D43AB00853F79 /* NCMessageFileParameter.m */; };
- 1FEDE3D0257D43AB00853F79 /* NCMessageFileParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEDE3CC257D43AB00853F79 /* NCMessageFileParameter.m */; };
- 1FF1360F2BFB4F8C006A6101 /* NCRoom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF1360E2BFB4F8C006A6101 /* NCRoom.swift */; };
- 1FF136102BFB4F8C006A6101 /* NCRoom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF1360E2BFB4F8C006A6101 /* NCRoom.swift */; };
- 1FF136112BFB4F8C006A6101 /* NCRoom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF1360E2BFB4F8C006A6101 /* NCRoom.swift */; };
- 1FF136122BFB4F8C006A6101 /* NCRoom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF1360E2BFB4F8C006A6101 /* NCRoom.swift */; };
- 1FF136132BFB6FCD006A6101 /* RLMSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAB2EEF2AD1EAA3001214EB /* RLMSupport.swift */; };
- 1FF136152BFB74C3006A6101 /* NCChatMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF136142BFB74C3006A6101 /* NCChatMessage.swift */; };
- 1FF136162BFB74CF006A6101 /* NCChatMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF136142BFB74C3006A6101 /* NCChatMessage.swift */; };
- 1FF136172BFB74CF006A6101 /* NCChatMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF136142BFB74C3006A6101 /* NCChatMessage.swift */; };
- 1FF136182BFB74D0006A6101 /* NCChatMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF136142BFB74C3006A6101 /* NCChatMessage.swift */; };
- 1FF1361A2BFBC841006A6101 /* SwiftyAttributes in Frameworks */ = {isa = PBXBuildFile; productRef = 1FF136192BFBC841006A6101 /* SwiftyAttributes */; };
- 1FF1361C2BFBC86A006A6101 /* SwiftyAttributes in Frameworks */ = {isa = PBXBuildFile; productRef = 1FF1361B2BFBC86A006A6101 /* SwiftyAttributes */; };
- 1FF2FD7F2AB99E4D000C9905 /* Atomic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF2FD7A2AB99E4D000C9905 /* Atomic.swift */; };
- 1FF2FD802AB99E4D000C9905 /* SampleUploader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF2FD7B2AB99E4D000C9905 /* SampleUploader.swift */; };
- 1FF2FD822AB99E4D000C9905 /* SocketConnection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF2FD7D2AB99E4D000C9905 /* SocketConnection.swift */; };
- 1FF2FD832AB99F3B000C9905 /* NCAppBranding.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2A788D2359CC8800EEB797 /* NCAppBranding.m */; };
- 1FF2FD852AB99F51000C9905 /* NCUserStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78E9E225120DE500E3D4CA /* NCUserStatus.m */; };
- 1FF2FD862AB99F5B000C9905 /* NCDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C40281422832EED0000DDFC /* NCDatabaseManager.m */; };
- 1FF4DA7E2C0237D000C1B952 /* DirectoryTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA7D2C0237D000C1B952 /* DirectoryTableViewCell.swift */; };
- 1FF4DA802C023FF300C1B952 /* NCChatFileStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA7F2C023FF300C1B952 /* NCChatFileStatus.swift */; };
- 1FF4DA822C025DB900C1B952 /* NCAPISessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA812C025DB900C1B952 /* NCAPISessionManager.swift */; };
- 1FF4DA832C025DBF00C1B952 /* NCAPISessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA812C025DB900C1B952 /* NCAPISessionManager.swift */; };
- 1FF4DA842C025DC000C1B952 /* NCAPISessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA812C025DB900C1B952 /* NCAPISessionManager.swift */; };
- 1FF4DA852C025DC000C1B952 /* NCAPISessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA812C025DB900C1B952 /* NCAPISessionManager.swift */; };
- 1FF4DA872C02626D00C1B952 /* NCBaseSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA862C02626D00C1B952 /* NCBaseSessionManager.swift */; };
- 1FF4DA882C0262BA00C1B952 /* NCBaseSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA862C02626D00C1B952 /* NCBaseSessionManager.swift */; };
- 1FF4DA892C0262BB00C1B952 /* NCBaseSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA862C02626D00C1B952 /* NCBaseSessionManager.swift */; };
- 1FF4DA8A2C0262BB00C1B952 /* NCBaseSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA862C02626D00C1B952 /* NCBaseSessionManager.swift */; };
- 1FF4DA8C2C0263A200C1B952 /* NCPushProxySessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA8B2C0263A200C1B952 /* NCPushProxySessionManager.swift */; };
- 1FF4DA8D2C0264B100C1B952 /* NCPushProxySessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA8B2C0263A200C1B952 /* NCPushProxySessionManager.swift */; };
- 1FF4DA8E2C0264B200C1B952 /* NCPushProxySessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA8B2C0263A200C1B952 /* NCPushProxySessionManager.swift */; };
- 1FF4DA8F2C0264B200C1B952 /* NCPushProxySessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA8B2C0263A200C1B952 /* NCPushProxySessionManager.swift */; };
- 1FF4DA912C02677C00C1B952 /* NCImageSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA902C02677C00C1B952 /* NCImageSessionManager.swift */; };
- 1FF4DA922C02677F00C1B952 /* NCImageSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA902C02677C00C1B952 /* NCImageSessionManager.swift */; };
- 1FF4DA932C02678000C1B952 /* NCImageSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA902C02677C00C1B952 /* NCImageSessionManager.swift */; };
- 1FF4DA942C02678000C1B952 /* NCImageSessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA902C02677C00C1B952 /* NCImageSessionManager.swift */; };
- 1FF4DA962C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA952C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift */; };
- 1FF4DA972C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA952C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift */; };
- 1FF4DA982C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA952C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift */; };
- 1FF4DA992C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA952C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift */; };
- 1FF4DA9B2C032AAC00C1B952 /* RoomTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA9A2C032AAC00C1B952 /* RoomTableViewCell.swift */; };
- 1FF4DAA02C03351E00C1B952 /* RoomNameTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DA9F2C03351E00C1B952 /* RoomNameTableViewCell.swift */; };
- 1FF4DAA22C0338D000C1B952 /* RoomDescriptionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA12C0338D000C1B952 /* RoomDescriptionTableViewCell.swift */; };
- 1FF4DAA62C08D81D00C1B952 /* UnitNCChatMessageTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA52C08D81D00C1B952 /* UnitNCChatMessageTest.swift */; };
- 1FF4DAA82C08DE3A00C1B952 /* UnitNCRoomsManagerTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA72C08DE3A00C1B952 /* UnitNCRoomsManagerTest.swift */; };
- 1FF4DAAA2C0A114900C1B952 /* OcsResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA92C0A114900C1B952 /* OcsResponse.swift */; };
- 1FF4DAAB2C0A114900C1B952 /* OcsResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA92C0A114900C1B952 /* OcsResponse.swift */; };
- 1FF4DAAC2C0A114900C1B952 /* OcsResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA92C0A114900C1B952 /* OcsResponse.swift */; };
- 1FF4DAAD2C0A114900C1B952 /* OcsResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF4DAA92C0A114900C1B952 /* OcsResponse.swift */; };
- 1FFF41622C70937B00162F4D /* ReferenceZammadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FFF41612C70937B00162F4D /* ReferenceZammadView.swift */; };
- 1FFF41642C70938700162F4D /* ReferenceZammadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1FFF41632C70938700162F4D /* ReferenceZammadView.xib */; };
- 2C0424902CA32D45004772F6 /* BaseChatTableViewCell+Audio.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C04248F2CA32D45004772F6 /* BaseChatTableViewCell+Audio.swift */; };
- 2C0424982CA335C4004772F6 /* AudioPlayerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C0424962CA335C4004772F6 /* AudioPlayerView.xib */; };
- 2C04249B2CA33681004772F6 /* AudioPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0424992CA33681004772F6 /* AudioPlayerView.swift */; };
- 2C0574821EDD9E8E00D9E7F2 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C0574811EDD9E8E00D9E7F2 /* main.m */; };
- 2C0574851EDD9E8E00D9E7F2 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C0574841EDD9E8E00D9E7F2 /* AppDelegate.m */; };
- 2C05748E1EDD9E8E00D9E7F2 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2C05748C1EDD9E8E00D9E7F2 /* Main.storyboard */; };
- 2C0574A41EDDA2E300D9E7F2 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C0574A21EDDA2E300D9E7F2 /* LoginViewController.m */; };
- 2C0574A51EDDA2E300D9E7F2 /* LoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C0574A31EDDA2E300D9E7F2 /* LoginViewController.xib */; };
- 2C06330F2046CC8B0043481A /* NCUserInterfaceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C06330E2046CC8B0043481A /* NCUserInterfaceController.m */; };
- 2C06BF5D20A89F510031EB46 /* NCRoomsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C06BF5C20A89F510031EB46 /* NCRoomsManager.m */; };
- 2C06BF6420AC64370031EB46 /* DateHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C06BF6320AC64370031EB46 /* DateHeaderView.xib */; };
- 2C06BF6720AC647A0031EB46 /* DateHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C06BF6620AC647A0031EB46 /* DateHeaderView.m */; };
- 2C06BF6C20AEB0030031EB46 /* RoundedNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C06BF6A20AEB0030031EB46 /* RoundedNumberView.m */; };
- 2C16A82C28E7284D00EDE523 /* NCButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C16A82B28E7284D00EDE523 /* NCButton.swift */; };
- 2C1ABD8625769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8025769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.m */; };
- 2C1ABD8725769E7D00AEDFB6 /* ShareItemController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8225769E7D00AEDFB6 /* ShareItemController.m */; };
- 2C1ABD8825769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8425769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.xib */; };
- 2C1ABD8925769E7D00AEDFB6 /* ShareItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8525769E7D00AEDFB6 /* ShareItem.m */; };
- 2C1ABD9925769F7500AEDFB6 /* ShareItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8525769E7D00AEDFB6 /* ShareItem.m */; };
- 2C1ABDC6257A7CF000AEDFB6 /* NCContactsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDC5257A7CF000AEDFB6 /* NCContactsManager.m */; };
- 2C1ABDCE257E939600AEDFB6 /* NCContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDCD257E939600AEDFB6 /* NCContact.m */; };
- 2C1ABDCF257E939600AEDFB6 /* NCContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDCD257E939600AEDFB6 /* NCContact.m */; };
- 2C1ABDD0257E939600AEDFB6 /* NCContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDCD257E939600AEDFB6 /* NCContact.m */; };
- 2C1ABDE5257F883400AEDFB6 /* ABContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDE4257F883400AEDFB6 /* ABContact.m */; };
- 2C1D13A3253760EE00EC0533 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C1D13A1253760EE00EC0533 /* LaunchScreen.xib */; };
- 2C1EF36B25505DCE007C9768 /* NCNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1EF36A25505DCE007C9768 /* NCNavigationController.m */; };
- 2C1EF36D25505DCE007C9768 /* NCNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1EF36A25505DCE007C9768 /* NCNavigationController.m */; };
- 2C21446E2BB5B54D005A6537 /* BaseChatTableViewCell+Location.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C21446D2BB5B54D005A6537 /* BaseChatTableViewCell+Location.swift */; };
- 2C2145682BF6B8E900470C0C /* NewRoomTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C2145672BF6B8E900470C0C /* NewRoomTableViewController.swift */; };
- 2C2A788E2359CC8800EEB797 /* NCAppBranding.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2A788D2359CC8800EEB797 /* NCAppBranding.m */; };
- 2C2D7A172B8C9C0000642373 /* RoomCreationTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C2D7A162B8C9C0000642373 /* RoomCreationTableViewController.swift */; };
- 2C2E64251F3462AF00D39CE8 /* NCSignalingMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2E64241F3462AF00D39CE8 /* NCSignalingMessage.m */; };
- 2C3195BC24C599130066F221 /* PlaceholderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CC7158820B837140045C789 /* PlaceholderView.xib */; };
- 2C3195BE24C5A7410066F221 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2CA1CCAB1F067F35002FE6A2 /* Images.xcassets */; };
- 2C3195C224C5E2100066F221 /* ShareTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3195C024C5E2100066F221 /* ShareTableViewCell.m */; };
- 2C3195C324C5E2100066F221 /* ShareTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C3195C124C5E2100066F221 /* ShareTableViewCell.xib */; };
- 2C330372255E6EBC00BDB4E4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2C330374255E6EBC00BDB4E4 /* InfoPlist.strings */; };
- 2C36A04A261487BC0026F04A /* DetailedOptionsSelectorTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C36A049261487BC0026F04A /* DetailedOptionsSelectorTableViewController.m */; };
- 2C3780BD2107209C003F9AE8 /* NCRoomParticipants.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3780BC2107209C003F9AE8 /* NCRoomParticipants.m */; };
- 2C3780C3210F49DC003F9AE8 /* HeaderWithButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3780C2210F49DC003F9AE8 /* HeaderWithButton.m */; };
- 2C3780C5210F4A26003F9AE8 /* HeaderWithButton.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C3780C4210F4A26003F9AE8 /* HeaderWithButton.xib */; };
- 2C40281522832EED0000DDFC /* NCDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C40281422832EED0000DDFC /* NCDatabaseManager.m */; };
- 2C4230F72B207AB00013E1FA /* ContextChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C4230F62B207AB00013E1FA /* ContextChatViewController.swift */; };
- 2C42ADB420B58E6300296DEA /* NCChatController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C42ADB320B58E6300296DEA /* NCChatController.m */; };
- 2C43BA7621309A1000B3068A /* NCMessageParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C43BA7521309A1000B3068A /* NCMessageParameter.m */; };
- 2C440D1120EA4A770005F9BB /* RoomInfoTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C440D0F20EA4A770005F9BB /* RoomInfoTableViewController.m */; };
- 2C440D1220EA4A770005F9BB /* RoomInfoTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C440D1020EA4A770005F9BB /* RoomInfoTableViewController.xib */; };
- 2C4446D32658147900DF1DBC /* TalkAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D22658147900DF1DBC /* TalkAccount.m */; };
- 2C4446D42658147900DF1DBC /* TalkAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D22658147900DF1DBC /* TalkAccount.m */; };
- 2C4446D52658147900DF1DBC /* TalkAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D22658147900DF1DBC /* TalkAccount.m */; };
- 2C4446D8265814D100DF1DBC /* ServerCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D7265814D100DF1DBC /* ServerCapabilities.m */; };
- 2C4446D9265814D100DF1DBC /* ServerCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D7265814D100DF1DBC /* ServerCapabilities.m */; };
- 2C4446DA265814D100DF1DBC /* ServerCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446D7265814D100DF1DBC /* ServerCapabilities.m */; };
- 2C4446DD2658158000DF1DBC /* NCChatBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446DC2658158000DF1DBC /* NCChatBlock.m */; };
- 2C4446DE2658158000DF1DBC /* NCChatBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446DC2658158000DF1DBC /* NCChatBlock.m */; };
- 2C4446DF2658158000DF1DBC /* NCChatBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446DC2658158000DF1DBC /* NCChatBlock.m */; };
- 2C4446EC265D25BA00DF1DBC /* NCKeyChainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EB265D25BA00DF1DBC /* NCKeyChainController.m */; };
- 2C4446ED265D25BA00DF1DBC /* NCKeyChainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EB265D25BA00DF1DBC /* NCKeyChainController.m */; };
- 2C4446F0265D454200DF1DBC /* NotificationCenterNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EF265D454200DF1DBC /* NotificationCenterNotifications.m */; };
- 2C4446F3265D51A600DF1DBC /* NCPushNotificationsUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446F2265D51A600DF1DBC /* NCPushNotificationsUtils.m */; };
- 2C4446F4265D51A600DF1DBC /* NCPushNotificationsUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446F2265D51A600DF1DBC /* NCPushNotificationsUtils.m */; };
- 2C4446F5265D583200DF1DBC /* NCKeyChainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EB265D25BA00DF1DBC /* NCKeyChainController.m */; };
- 2C4446F8265D5A0700DF1DBC /* NotificationCenterNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EF265D454200DF1DBC /* NotificationCenterNotifications.m */; };
- 2C4446F9265D5A0700DF1DBC /* NotificationCenterNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4446EF265D454200DF1DBC /* NotificationCenterNotifications.m */; };
- 2C4446FB265D5C5700DF1DBC /* NCRoomParticipants.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3780BC2107209C003F9AE8 /* NCRoomParticipants.m */; };
- 2C4446FC265D5C5800DF1DBC /* NCRoomParticipants.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3780BC2107209C003F9AE8 /* NCRoomParticipants.m */; };
- 2C4446FD265D5DFA00DF1DBC /* ABContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDE4257F883400AEDFB6 /* ABContact.m */; };
- 2C4446FE265D5DFA00DF1DBC /* ABContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABDE4257F883400AEDFB6 /* ABContact.m */; };
- 2C444703265D641300DF1DBC /* NCUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C444702265D641300DF1DBC /* NCUserDefaults.m */; };
- 2C444704265D641300DF1DBC /* NCUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C444702265D641300DF1DBC /* NCUserDefaults.m */; };
- 2C444705265D641300DF1DBC /* NCUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C444702265D641300DF1DBC /* NCUserDefaults.m */; };
- 2C444706265E59B100DF1DBC /* ShareConfirmationCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8025769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.m */; };
- 2C444707265E59B500DF1DBC /* ShareConfirmationCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8425769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.xib */; };
- 2C444708265E59BC00DF1DBC /* ShareItemController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1ABD8225769E7D00AEDFB6 /* ShareItemController.m */; };
- 2C44B4D127FF05A000AD1C86 /* ReactionsSummaryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C44B4D027FF05A000AD1C86 /* ReactionsSummaryView.swift */; };
- 2C4747E22CB58FD2002828F2 /* PollMessageView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C4747E12CB58FD2002828F2 /* PollMessageView.xib */; };
- 2C4747E62CB6711F002828F2 /* BaseChatTableViewCell+Poll.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C4747E52CB6710F002828F2 /* BaseChatTableViewCell+Poll.swift */; };
- 2C4747E92CB67177002828F2 /* PollMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C4747E82CB67177002828F2 /* PollMessageView.swift */; };
- 2C477C1628B79D980044DEB4 /* Localizable.stringsdict in Resources */ = {isa = PBXBuildFile; fileRef = 2C477C1828B79D980044DEB4 /* Localizable.stringsdict */; };
- 2C4987BD21E640E20060AC27 /* CallKitManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4987BC21E640E20060AC27 /* CallKitManager.m */; };
- 2C4CDCCD269618240023F403 /* RoomDescriptionTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C4CDCCB269618230023F403 /* RoomDescriptionTableViewCell.xib */; };
- 2C4CDCD026A84AEA0023F403 /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C62AFB824C1A4E6007E460A /* ShareViewController.m */; };
- 2C4CDCD126A84E500023F403 /* ShareTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3195C024C5E2100066F221 /* ShareTableViewCell.m */; };
- 2C4CDCD226A84E550023F403 /* ShareTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C3195C124C5E2100066F221 /* ShareTableViewCell.xib */; };
- 2C4D7D631F2F7C2C00FF4A0D /* ARDCaptureController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D7D621F2F7C2C00FF4A0D /* ARDCaptureController.m */; };
- 2C4D7D691F2F7DBC00FF4A0D /* ARDSettingsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D7D651F2F7DBC00FF4A0D /* ARDSettingsModel.m */; };
- 2C4D7D6A1F2F7DBC00FF4A0D /* ARDSettingsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D7D681F2F7DBC00FF4A0D /* ARDSettingsStore.m */; };
- 2C4D7D721F309DA500FF4A0D /* RTCIceCandidate+JSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D7D6E1F309DA500FF4A0D /* RTCIceCandidate+JSON.m */; };
- 2C4D7D731F309DA500FF4A0D /* RTCSessionDescription+JSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D7D701F309DA500FF4A0D /* RTCSessionDescription+JSON.m */; };
- 2C4D7D761F30F7B600FF4A0D /* ARDUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D7D751F30F7B600FF4A0D /* ARDUtilities.m */; };
- 2C4DE9F221F732B40096940D /* NCAudioController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4DE9F121F732B40096940D /* NCAudioController.m */; };
- 2C57CD8428C2255000B22E03 /* PollCreationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C57CD8328C2255000B22E03 /* PollCreationViewController.swift */; };
- 2C5BFBEA28772A9A00E75118 /* NCUnifiedSearchController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBE928772A9A00E75118 /* NCUnifiedSearchController.swift */; };
- 2C5BFBEF288A947900E75118 /* PollVotingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBEE288A947800E75118 /* PollVotingView.swift */; };
- 2C5BFBF2288A97D800E75118 /* NCPoll.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF1288A97D800E75118 /* NCPoll.m */; };
- 2C5BFBF3288AA37F00E75118 /* NCPoll.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF1288A97D800E75118 /* NCPoll.m */; };
- 2C5BFBF4288AA37F00E75118 /* NCPoll.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF1288A97D800E75118 /* NCPoll.m */; };
- 2C5BFBF628902E0300E75118 /* PollFooterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF528902E0300E75118 /* PollFooterView.swift */; };
- 2C5BFBF828902E3700E75118 /* PollFooterView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF728902E3700E75118 /* PollFooterView.xib */; };
- 2C5BFBFB2891598A00E75118 /* PollResultTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBF92891598900E75118 /* PollResultTableViewCell.swift */; };
- 2C5BFBFC2891598A00E75118 /* PollResultTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C5BFBFA2891598900E75118 /* PollResultTableViewCell.xib */; };
- 2C5BFBFE2891C3DF00E75118 /* PollResultsDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C5BFBFD2891C3DF00E75118 /* PollResultsDetailsViewController.swift */; };
- 2C604BD9211988A700D34DCD /* SystemMessageTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C604BD8211988A700D34DCD /* SystemMessageTableViewCell.m */; };
- 2C62AFB624C1A449007E460A /* Share.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2C62AFB524C1A449007E460A /* Share.storyboard */; };
- 2C62AFB924C1A4E6007E460A /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C62AFB824C1A4E6007E460A /* ShareViewController.m */; };
- 2C62AFBB24C1B7B1007E460A /* NCDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C40281422832EED0000DDFC /* NCDatabaseManager.m */; };
- 2C62AFFA24C1BDA5007E460A /* NCChatMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA15540208E350300CE8EF0 /* NCChatMessage.m */; };
- 2C62AFFD24C1BDA5007E460A /* NCMessageParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C43BA7521309A1000B3068A /* NCMessageParameter.m */; };
- 2C62AFFF24C1BDAA007E460A /* NCUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCCC1F181741002FE6A2 /* NCUser.m */; };
- 2C62B00724C1BDBD007E460A /* NCAPIController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCA91F02D1A4002FE6A2 /* NCAPIController.m */; };
- 2C62B00C24C1BDC1007E460A /* NCNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9B0B9B217F756B00A4752C /* NCNotification.m */; };
- 2C62B00D24C1BDC1007E460A /* NCPushNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82AD1FC888FC00636459 /* NCPushNotification.m */; };
- 2C62B01024C1BDC5007E460A /* NCRoom.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCC21F166CC5002FE6A2 /* NCRoom.m */; };
- 2C62B01C24C1BDC9007E460A /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82B11FCC7DBA00636459 /* CCCertificate.m */; };
- 2C62B02424C1BDCF007E460A /* NCAppBranding.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2A788D2359CC8800EEB797 /* NCAppBranding.m */; };
- 2C62B02E24C1BDD7007E460A /* PlaceholderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC7158B20B8394A0045C789 /* PlaceholderView.m */; };
- 2C69323D2923ECAA00017AD2 /* WSMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C69323C2923ECAA00017AD2 /* WSMessage.m */; };
- 2C6955122B0CE1A10070F6E1 /* NCUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDDB0E42AFD046600FBAFB7 /* NCUtils.swift */; };
- 2C6955132B0CE1A20070F6E1 /* NCUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDDB0E42AFD046600FBAFB7 /* NCUtils.swift */; };
- 2C6955142B0CE1A20070F6E1 /* NCUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDDB0E42AFD046600FBAFB7 /* NCUtils.swift */; };
- 2C6955152B0CE1A30070F6E1 /* NCUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDDB0E42AFD046600FBAFB7 /* NCUtils.swift */; };
- 2C6E74462386D33200AE396C /* ReplyMessageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C6E74452386D33200AE396C /* ReplyMessageView.m */; };
- 2C6E7449238C1A0800AE396C /* QuotedMessageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C6E7448238C1A0800AE396C /* QuotedMessageView.m */; };
- 2C7381562106136000CDB8DB /* NCChatTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7381552106136000CDB8DB /* NCChatTitleView.m */; };
- 2C738158210613A200CDB8DB /* NCChatTitleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C738157210613A200CDB8DB /* NCChatTitleView.xib */; };
- 2C78E9E325120DE600E3D4CA /* NCUserStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78E9E225120DE500E3D4CA /* NCUserStatus.m */; };
- 2C78EF951F7E70EB008AFA74 /* NCPeerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78EF941F7E70EB008AFA74 /* NCPeerConnection.m */; };
- 2C78EF991F80F81E008AFA74 /* NCSignalingController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78EF981F80F81E008AFA74 /* NCSignalingController.m */; };
- 2C78EF9C1F826B22008AFA74 /* NCCallController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78EF9B1F826B22008AFA74 /* NCCallController.m */; };
- 2C78EFA01F828C41008AFA74 /* CallViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78EF9E1F828C41008AFA74 /* CallViewController.m */; };
- 2C78EFA11F828C41008AFA74 /* CallViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C78EF9F1F828C41008AFA74 /* CallViewController.xib */; };
- 2C78EFA51F86FF4A008AFA74 /* CallParticipantViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C78EFA31F86FF4A008AFA74 /* CallParticipantViewCell.m */; };
- 2C78EFA61F86FF4A008AFA74 /* CallParticipantViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C78EFA41F86FF4A008AFA74 /* CallParticipantViewCell.xib */; };
- 2C7A1237200E0A5700864818 /* UserSettingsTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C7A1235200E0A5700864818 /* UserSettingsTableViewCell.xib */; };
- 2C7A12422017872600864818 /* AddParticipantsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7A12402017872600864818 /* AddParticipantsTableViewController.m */; };
- 2C7A12432017872600864818 /* AddParticipantsTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C7A12412017872600864818 /* AddParticipantsTableViewController.xib */; };
- 2C7F47AA20289B9600081CC7 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2C7F47AC20289B9600081CC7 /* Localizable.strings */; };
- 2C84BCCC29EEB9C6001BA6DA /* CallReactionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C84BCCB29EEB9C6001BA6DA /* CallReactionView.swift */; };
- 2C84BCCE29EEDCE8001BA6DA /* CallReactionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C84BCCD29EEDCE8001BA6DA /* CallReactionView.xib */; };
- 2C8A2BC9221F094F00DE6D2C /* DirectoryTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C8A2BC8221F094F00DE6D2C /* DirectoryTableViewController.m */; };
- 2C8A2BCF221FEEFE00DE6D2C /* DirectoryTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C8A2BCD221FEEFE00DE6D2C /* DirectoryTableViewCell.xib */; };
- 2C8CDD0621C2EDE8004E2997 /* AvatarBackgroundImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C8CDD0521C2EDE8004E2997 /* AvatarBackgroundImageView.m */; };
- 2C8E2A1B232174C20022BFC9 /* MessageSeparatorTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C8E2A1A232174C20022BFC9 /* MessageSeparatorTableViewCell.m */; };
- 2C90E5641EDDE0FB0093D85A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C90E5631EDDE0FB0093D85A /* Foundation.framework */; };
- 2C90E5671EDDE1340093D85A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C90E5661EDDE1340093D85A /* CoreGraphics.framework */; };
- 2C90E5691EDDE13A0093D85A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C90E5681EDDE13A0093D85A /* UIKit.framework */; };
- 2C90E5CF1EDF23A00093D85A /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C90E5CE1EDF23A00093D85A /* WebKit.framework */; };
- 2C90E5D31EE80C870093D85A /* AuthenticationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C90E5D11EE80C870093D85A /* AuthenticationViewController.m */; };
- 2C9200C32474262C0050084F /* UIBarButtonItem+Badge.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9200C22474262C0050084F /* UIBarButtonItem+Badge.m */; };
- 2C98F77921622445001A6A73 /* RoomSearchTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C98F77821622445001A6A73 /* RoomSearchTableViewController.m */; };
- 2C98F77D216231D3001A6A73 /* RoomTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2C98F77C216231D3001A6A73 /* RoomTableViewCell.xib */; };
- 2C9B0B98217F6DBA00A4752C /* NCNotificationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9B0B97217F6DBA00A4752C /* NCNotificationController.m */; };
- 2C9B0B9C217F756B00A4752C /* NCNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9B0B9B217F756B00A4752C /* NCNotification.m */; };
- 2C9E6CCE1F6F34F000399B7A /* ARDSDPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9E6CCD1F6F34F000399B7A /* ARDSDPUtils.m */; };
- 2CA15541208E350300CE8EF0 /* NCChatMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA15540208E350300CE8EF0 /* NCChatMessage.m */; };
- 2CA1554B208F2E5700CE8EF0 /* NCMessageTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1554A208F2E5700CE8EF0 /* NCMessageTextView.m */; };
- 2CA1CC911F014354002FE6A2 /* NCConnectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CC901F014354002FE6A2 /* NCConnectionController.m */; };
- 2CA1CC951F014EF9002FE6A2 /* NCSettingsController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CC941F014EF9002FE6A2 /* NCSettingsController.m */; };
- 2CA1CC971F016117002FE6A2 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CA1CC961F016117002FE6A2 /* Security.framework */; };
- 2CA1CCA41F025F64002FE6A2 /* RoomsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCA31F025F64002FE6A2 /* RoomsTableViewController.m */; };
- 2CA1CCAA1F02D1A4002FE6A2 /* NCAPIController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCA91F02D1A4002FE6A2 /* NCAPIController.m */; };
- 2CA1CCAC1F067F35002FE6A2 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2CA1CCAB1F067F35002FE6A2 /* Images.xcassets */; };
- 2CA1CCC31F166CC5002FE6A2 /* NCRoom.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCC21F166CC5002FE6A2 /* NCRoom.m */; };
- 2CA1CCCA1F17C503002FE6A2 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CA1CCC91F17C503002FE6A2 /* AudioToolbox.framework */; };
- 2CA1CCCD1F181741002FE6A2 /* NCUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCCC1F181741002FE6A2 /* NCUser.m */; };
- 2CA1CCD01F1E1779002FE6A2 /* SearchTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCCF1F1E1779002FE6A2 /* SearchTableViewController.m */; };
- 2CA1CCD61F1E664C002FE6A2 /* ContactsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCD41F1E664C002FE6A2 /* ContactsTableViewCell.m */; };
- 2CA1CCD71F1E664C002FE6A2 /* ContactsTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CA1CCD51F1E664C002FE6A2 /* ContactsTableViewCell.xib */; };
- 2CA52ACB2670D02800619610 /* VoiceMessageRecordingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA52ACA2670D02800619610 /* VoiceMessageRecordingView.m */; };
- 2CA52ACD2670D07900619610 /* VoiceMessageRecordingView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CA52ACC2670D07900619610 /* VoiceMessageRecordingView.xib */; };
- 2CB052A12BF2297500191349 /* connecting.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = 2CB052A02BF2297500191349 /* connecting.mp3 */; };
- 2CB304192264775E0053078A /* SLKInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB3039D2264775E0053078A /* SLKInputAccessoryView.m */; };
- 2CB3041A2264775E0053078A /* SLKTextInput+Implementation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB3039E2264775E0053078A /* SLKTextInput+Implementation.m */; };
- 2CB3041B2264775E0053078A /* SLKTextInputbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A12264775E0053078A /* SLKTextInputbar.m */; };
- 2CB3041C2264775E0053078A /* SLKTextView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A32264775E0053078A /* SLKTextView+SLKAdditions.m */; };
- 2CB3041D2264775E0053078A /* SLKTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A52264775E0053078A /* SLKTextView.m */; };
- 2CB3041E2264775E0053078A /* SLKTextViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303A72264775E0053078A /* SLKTextViewController.m */; };
- 2CB304202264775E0053078A /* UIResponder+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303AD2264775E0053078A /* UIResponder+SLKAdditions.m */; };
- 2CB304212264775E0053078A /* UIScrollView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303AF2264775E0053078A /* UIScrollView+SLKAdditions.m */; };
- 2CB304222264775E0053078A /* UIView+SLKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB303B12264775E0053078A /* UIView+SLKAdditions.m */; };
- 2CB6ACBC26385A3800D3D641 /* ShareLocationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACBA26385A3800D3D641 /* ShareLocationViewController.m */; };
- 2CB6ACBF26385A3800D3D641 /* ShareLocationViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CB6ACBB26385A3800D3D641 /* ShareLocationViewController.xib */; };
- 2CB6ACCA26401D5200D3D641 /* GeoLocationRichObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACC926401D5100D3D641 /* GeoLocationRichObject.m */; };
- 2CB6ACDA2641483800D3D641 /* NCMessageLocationParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACD92641483800D3D641 /* NCMessageLocationParameter.m */; };
- 2CB6ACDB2641483800D3D641 /* NCMessageLocationParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACD92641483800D3D641 /* NCMessageLocationParameter.m */; };
- 2CB6ACDC2641483800D3D641 /* NCMessageLocationParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACD92641483800D3D641 /* NCMessageLocationParameter.m */; };
- 2CB6ACE92641954700D3D641 /* MapViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB6ACE72641954700D3D641 /* MapViewController.m */; };
- 2CB6ACEC2641954700D3D641 /* MapViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CB6ACE82641954700D3D641 /* MapViewController.xib */; };
- 2CB6ACED2641954700D3D641 /* MapViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CB6ACE82641954700D3D641 /* MapViewController.xib */; };
- 2CB6ACEE2641954700D3D641 /* MapViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CB6ACE82641954700D3D641 /* MapViewController.xib */; };
- 2CB997C52A052449003C41AC /* EmojiAvatarPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CB997C32A052449003C41AC /* EmojiAvatarPickerViewController.swift */; };
- 2CB997C62A052449003C41AC /* EmojiAvatarPickerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CB997C42A052449003C41AC /* EmojiAvatarPickerViewController.xib */; };
- 2CBD0D5A2C8770A40013C089 /* UIImageExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CBD0D592C8770A40013C089 /* UIImageExtension.swift */; };
- 2CBF82AE1FC888FC00636459 /* NCPushNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82AD1FC888FC00636459 /* NCPushNotification.m */; };
- 2CBF82B21FCC7DBA00636459 /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82B11FCC7DBA00636459 /* CCCertificate.m */; };
- 2CC0015324A1F0E900A20167 /* NotificationService.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC0015224A1F0E900A20167 /* NotificationService.m */; };
- 2CC0016124A25B5500A20167 /* NCAPIController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCA91F02D1A4002FE6A2 /* NCAPIController.m */; };
- 2CC0016324A25B7400A20167 /* NCDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C40281422832EED0000DDFC /* NCDatabaseManager.m */; };
- 2CC0016724A25BE100A20167 /* NCChatMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA15540208E350300CE8EF0 /* NCChatMessage.m */; };
- 2CC0016924A25C3400A20167 /* NCMessageParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C43BA7521309A1000B3068A /* NCMessageParameter.m */; };
- 2CC001B724A37A9A00A20167 /* NCUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCCC1F181741002FE6A2 /* NCUser.m */; };
- 2CC001C124A37AC500A20167 /* NCNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9B0B9B217F756B00A4752C /* NCNotification.m */; };
- 2CC001C224A37AC500A20167 /* NCPushNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82AD1FC888FC00636459 /* NCPushNotification.m */; };
- 2CC001CE24A37ACA00A20167 /* NCRoom.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA1CCC21F166CC5002FE6A2 /* NCRoom.m */; };
- 2CC001DB24A37AD000A20167 /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBF82B11FCC7DBA00636459 /* CCCertificate.m */; };
- 2CC001DC24A37AD400A20167 /* NCAppBranding.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2A788D2359CC8800EEB797 /* NCAppBranding.m */; };
- 2CC007B420D7AE990096D91F /* ResultMultiSelectionTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC007B320D7AE990096D91F /* ResultMultiSelectionTableViewController.m */; };
- 2CC007C620D90AE50096D91F /* RoomNameTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CC007C420D90AE50096D91F /* RoomNameTableViewCell.xib */; };
- 2CC007CE20E50B0A0096D91F /* MessageBodyTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC007CD20E50B0A0096D91F /* MessageBodyTextView.m */; };
- 2CC1C38629C0945700C8436B /* DRCellSlideGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1C38029C0945600C8436B /* DRCellSlideGestureRecognizer.m */; };
- 2CC1C38729C0945700C8436B /* DRCellSlideAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1C38429C0945700C8436B /* DRCellSlideAction.m */; };
- 2CC1C38829C0945700C8436B /* DRCellSlideActionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1C38529C0945700C8436B /* DRCellSlideActionView.m */; };
- 2CC1FF4428147F11009F7288 /* RoomSharedItemsTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1FF4228147F10009F7288 /* RoomSharedItemsTableViewController.swift */; };
- 2CC1FF4528147F11009F7288 /* RoomSharedItemsTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CC1FF4328147F10009F7288 /* RoomSharedItemsTableViewController.xib */; };
- 2CC1FF4828183958009F7288 /* NCDeckCardParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1FF4728183958009F7288 /* NCDeckCardParameter.m */; };
- 2CC1FF492818395E009F7288 /* NCDeckCardParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1FF4728183958009F7288 /* NCDeckCardParameter.m */; };
- 2CC1FF4A2818395F009F7288 /* NCDeckCardParameter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC1FF4728183958009F7288 /* NCDeckCardParameter.m */; };
- 2CC32E8D27F4540E00BB8C39 /* ReactionsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC32E8C27F4540E00BB8C39 /* ReactionsView.swift */; };
- 2CC32E9227F45AE000BB8C39 /* ReactionsViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC32E9027F45AE000BB8C39 /* ReactionsViewCell.swift */; };
- 2CC32E9327F45AE000BB8C39 /* ReactionsViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CC32E9127F45AE000BB8C39 /* ReactionsViewCell.xib */; };
- 2CC32E9827F5D9BD00BB8C39 /* NCChatReaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC32E9727F5D9BD00BB8C39 /* NCChatReaction.m */; };
- 2CC32E9927F5DADA00BB8C39 /* NCChatReaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC32E9727F5D9BD00BB8C39 /* NCChatReaction.m */; };
- 2CC32E9A27F5DADB00BB8C39 /* NCChatReaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC32E9727F5D9BD00BB8C39 /* NCChatReaction.m */; };
- 2CC7158920B837140045C789 /* PlaceholderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CC7158820B837140045C789 /* PlaceholderView.xib */; };
- 2CC7158C20B8394A0045C789 /* PlaceholderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC7158B20B8394A0045C789 /* PlaceholderView.m */; };
- 2CC7159420C54D080045C789 /* ChatTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC7159320C54D080045C789 /* ChatTableViewCell.m */; };
- 2CCCD21D2835088F00F076CE /* OpenSSL in Frameworks */ = {isa = PBXBuildFile; productRef = 2CCCD21C2835088F00F076CE /* OpenSSL */; };
- 2CD4F6B72C11C80600ED594F /* ContactsSearchResultTableViewContoller.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CD4F6B62C11C80600ED594F /* ContactsSearchResultTableViewContoller.swift */; };
- 2CD5F3242142781A006B71BF /* NCExternalSignalingController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CD5F3232142781A006B71BF /* NCExternalSignalingController.m */; };
- 2CD80F482A4304AD00919057 /* OpenConversationsTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CD80F472A4304AD00919057 /* OpenConversationsTableViewController.swift */; };
- 2CEDA88C26F492610044552B /* NSMutableAttributedString+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CEDA88B26F492610044552B /* NSMutableAttributedString+Extensions.swift */; };
- 2CF8AD3F2A0010FB00A4D3E6 /* MessageTranslationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CF8AD3D2A0010FB00A4D3E6 /* MessageTranslationViewController.swift */; };
- 2CF8AD402A0010FB00A4D3E6 /* MessageTranslationViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CF8AD3E2A0010FB00A4D3E6 /* MessageTranslationViewController.xib */; };
- 2CF9CBFF26025F65002246EF /* TextInputTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2CF9CBFB26025F64002246EF /* TextInputTableViewCell.xib */; };
- 3FCA62550CD1442D28E8A7C6 /* libPods-NotificationServiceExtension.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9B81BB7A4920C391CC2CACFD /* libPods-NotificationServiceExtension.a */; };
- 4890175925A0D7FC2EC76CC0 /* libPods-NextcloudTalkTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7005E22D6C2896927FC3AEEC /* libPods-NextcloudTalkTests.a */; };
- 5EE5ACBB2CF371E7004D7EDB /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CA1CCC91F17C503002FE6A2 /* AudioToolbox.framework */; };
- 5EE5ACBE2CF371E9004D7EDB /* IntentsUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F90EFC225FE489B00F3FA55 /* IntentsUI.framework */; };
- 5EE5ACC02CF372AD004D7EDB /* ReplayKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FF2FD5C2AB99CCB000C9905 /* ReplayKit.framework */; };
- 5EE5ACC32CF48BCA004D7EDB /* BroadcastUploadExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 1FF2FD5B2AB99CCB000C9905 /* BroadcastUploadExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- 5EE5ACC72CF48BDA004D7EDB /* NotificationServiceExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 2CC0014F24A1F0E900A20167 /* NotificationServiceExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- 5EE5ACCA2CF48BDF004D7EDB /* ShareExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 2C62AFA324C08845007E460A /* ShareExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
- 807E30762A83A90F00089D28 /* UserStatusOptionsSwiftUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 807E30752A83A90F00089D28 /* UserStatusOptionsSwiftUI.swift */; };
- 80832B762A822E5100195A97 /* UserStatusSwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80832B752A822E5100195A97 /* UserStatusSwiftUIView.swift */; };
- 80832B782A823D0700195A97 /* UserStatusMessageSwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80832B772A823D0700195A97 /* UserStatusMessageSwiftUIView.swift */; };
- 80CDF8C42A8E098900CB57AE /* SwiftUIIntrospect in Frameworks */ = {isa = PBXBuildFile; productRef = 80CDF8C32A8E098900CB57AE /* SwiftUIIntrospect */; };
- 847EFC7236336B67A1A89358 /* libPods-BroadcastUploadExtension.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A3D305FCD7BF7E727A62F35 /* libPods-BroadcastUploadExtension.a */; };
- 8789AE73BFCAA413B43319C0 /* libPods-ShareExtension.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 684807120F4439797973DF73 /* libPods-ShareExtension.a */; };
- 9993261EDAC77481FF4EF58A /* libPods-NextcloudTalk.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4F7C31E9D74F550EAF89931B /* libPods-NextcloudTalk.a */; };
- DA1AEFC3270F1FA90088E519 /* DateLabelCustom.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA1AEFC2270F1FA90088E519 /* DateLabelCustom.swift */; };
- DA66582B27B6992F00B46B11 /* UserProfileTableViewController+AvatarSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA66582A27B6992F00B46B11 /* UserProfileTableViewController+AvatarSetup.swift */; };
- DA66582D27B6A73800B46B11 /* UserProfileTableViewController+DelegateMethods.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA66582C27B6A73800B46B11 /* UserProfileTableViewController+DelegateMethods.swift */; };
- DA66582F27B6B19C00B46B11 /* UserProfileTableViewController+Actions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA66582E27B6B19C00B46B11 /* UserProfileTableViewController+Actions.swift */; };
- DA66583127B6B24E00B46B11 /* UserProfileTableViewController+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA66583027B6B24E00B46B11 /* UserProfileTableViewController+Utils.swift */; };
- DA75580F278EEA1000A48A1B /* SettingsTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA75580E278EEA1000A48A1B /* SettingsTableViewController.swift */; };
- DA755811278EF3EF00A48A1B /* UserSettingsTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA755810278EF3EF00A48A1B /* UserSettingsTableViewCell.swift */; };
- DA8801A227A2DA00009EF248 /* UserProfileTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA8801A127A2DA00009EF248 /* UserProfileTableViewController.swift */; };
- DA8801A427AC52AC009EF248 /* TextInputTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA8801A327AC52AC009EF248 /* TextInputTableViewCell.swift */; };
- /* End PBXBuildFile section */
- /* Begin PBXContainerItemProxy section */
- 1F6D8C342B2E3756004376B8 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 2C0574751EDD9E8E00D9E7F2 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 2C05747C1EDD9E8E00D9E7F2;
- remoteInfo = NextcloudTalk;
- };
- 1FD8AD902A3A162100787C16 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 2C0574751EDD9E8E00D9E7F2 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 2C05747C1EDD9E8E00D9E7F2;
- remoteInfo = NextcloudTalk;
- };
- 5EE5ACC42CF48BCA004D7EDB /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 2C0574751EDD9E8E00D9E7F2 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 1FF2FD5A2AB99CCB000C9905;
- remoteInfo = BroadcastUploadExtension;
- };
- 5EE5ACC82CF48BDA004D7EDB /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 2C0574751EDD9E8E00D9E7F2 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 2CC0014E24A1F0E900A20167;
- remoteInfo = NotificationServiceExtension;
- };
- 5EE5ACCB2CF48BDF004D7EDB /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 2C0574751EDD9E8E00D9E7F2 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 2C62AFA224C08845007E460A;
- remoteInfo = ShareExtension;
- };
- /* End PBXContainerItemProxy section */
- /* Begin PBXCopyFilesBuildPhase section */
- 5EE5ACC62CF48BCA004D7EDB /* Embed Foundation Extensions */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 13;
- files = (
- 5EE5ACCA2CF48BDF004D7EDB /* ShareExtension.appex in Embed Foundation Extensions */,
- 5EE5ACC32CF48BCA004D7EDB /* BroadcastUploadExtension.appex in Embed Foundation Extensions */,
- 5EE5ACC72CF48BDA004D7EDB /* NotificationServiceExtension.appex in Embed Foundation Extensions */,
- );
- name = "Embed Foundation Extensions";
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXCopyFilesBuildPhase section */
- /* Begin PBXFileReference section */
- 1F0A1D432A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMarkdownObjCBridge.swift; sourceTree = "<group>"; };
- 1F0B0A712BA264540073FF8D /* MentionSuggestion.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MentionSuggestion.swift; sourceTree = "<group>"; };
- 1F0B0A762BA26BE10073FF8D /* UnitMentionSuggestionTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitMentionSuggestionTest.swift; sourceTree = "<group>"; };
- 1F11FB7129C07B04001E21E7 /* NCZoomableView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCZoomableView.swift; sourceTree = "<group>"; };
- 1F1B0F242BD94A0D003FD766 /* UnitDarwinCenterTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitDarwinCenterTest.swift; sourceTree = "<group>"; };
- 1F1B0F262BDA61C5003FD766 /* AllocationTracker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AllocationTracker.swift; sourceTree = "<group>"; };
- 1F1B0F2B2BDBB3AC003FD766 /* NCMediaViewerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMediaViewerViewController.swift; sourceTree = "<group>"; };
- 1F1B0F2F2BDBC9D6003FD766 /* NCMediaViewerPageViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMediaViewerPageViewController.swift; sourceTree = "<group>"; };
- 1F1B0F312BDC57E3003FD766 /* UIPageViewControllerExtension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIPageViewControllerExtension.swift; sourceTree = "<group>"; };
- 1F1B0F352BDD8B9C003FD766 /* NCActivityIndicator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivityIndicator.swift; sourceTree = "<group>"; };
- 1F1B0F3B2BE047CD003FD766 /* UIViewController+Transitions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+Transitions.swift"; sourceTree = "<group>"; };
- 1F1B0F3C2BE047CD003FD766 /* ModalTransitionAnimator.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ModalTransitionAnimator.swift; sourceTree = "<group>"; };
- 1F1B0F3D2BE047CD003FD766 /* ModalTransitionManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ModalTransitionManager.swift; sourceTree = "<group>"; };
- 1F1B0F3E2BE047CD003FD766 /* ModalPresentationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ModalPresentationController.swift; sourceTree = "<group>"; };
- 1F1B0F3F2BE047CD003FD766 /* InteractionControlling.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InteractionControlling.swift; sourceTree = "<group>"; };
- 1F1B0F402BE047CE003FD766 /* StandardInteractionController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StandardInteractionController.swift; sourceTree = "<group>"; };
- 1F1B0F412BE047CE003FD766 /* CustomPresentable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomPresentable.swift; sourceTree = "<group>"; };
- 1F1B0F492BE047D5003FD766 /* OneWayPanGestureRecognizer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OneWayPanGestureRecognizer.swift; sourceTree = "<group>"; };
- 1F1B0F4B2BE18FF3003FD766 /* CustomPresentableNavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomPresentableNavigationController.swift; sourceTree = "<group>"; };
- 1F1B50332B8E069800B0F2F4 /* BaseChatTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseChatTableViewCell.swift; sourceTree = "<group>"; };
- 1F1B50372B8E070100B0F2F4 /* BaseChatTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BaseChatTableViewCell.xib; sourceTree = "<group>"; };
- 1F1B50392B8F9E1300B0F2F4 /* BaseChatTableViewCell+File.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "BaseChatTableViewCell+File.swift"; sourceTree = "<group>"; };
- 1F1B503D2B8FB12100B0F2F4 /* BaseChatTableViewCell+Message.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "BaseChatTableViewCell+Message.swift"; sourceTree = "<group>"; };
- 1F1B50422B9095C900B0F2F4 /* FederatedCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FederatedCapabilities.h; sourceTree = "<group>"; };
- 1F1B50432B9095D100B0F2F4 /* FederatedCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FederatedCapabilities.m; sourceTree = "<group>"; };
- 1F1B50452B90CDE600B0F2F4 /* TalkCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TalkCapabilities.h; sourceTree = "<group>"; };
- 1F1B50462B90CDF800B0F2F4 /* TalkCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TalkCapabilities.m; sourceTree = "<group>"; };
- 1F1C0D8629AFB88800D17C6D /* VLCKitVideoViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = VLCKitVideoViewController.xib; sourceTree = "<group>"; };
- 1F1C0D8829AFB89900D17C6D /* VLCKitVideoViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VLCKitVideoViewController.swift; sourceTree = "<group>"; };
- 1F1DF83B2C5C17AF00E5EA86 /* TalkActor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TalkActor.swift; sourceTree = "<group>"; };
- 1F1DF8402C63C25900E5EA86 /* UnitNCDatabaseManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitNCDatabaseManager.swift; sourceTree = "<group>"; };
- 1F1DF8422C64006E00E5EA86 /* SignalingParticipant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SignalingParticipant.swift; sourceTree = "<group>"; };
- 1F21A0622C77863500ED8C0C /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- 1F21A0632C77863500ED8C0C /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
- 1F21A0642C77863500ED8C0C /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = "nb-NO"; path = "nb-NO.lproj/Localizable.stringsdict"; sourceTree = "<group>"; };
- 1F21A0652C77865D00ED8C0C /* ga */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ga; path = ga.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1F21A0662C77865D00ED8C0C /* ga */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = ga; path = ga.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
- 1F21A0672C77865D00ED8C0C /* ga */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ga; path = ga.lproj/Localizable.strings; sourceTree = "<group>"; };
- 1F21A0682C77868000ED8C0C /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = sv; path = sv.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
- 1F21A0692C77868000ED8C0C /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
- 1F21A06A2C77868000ED8C0C /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1F21A06B2C77869600ED8C0C /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 1F21A06C2C77869600ED8C0C /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
- 1F21A06D2C77869600ED8C0C /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = sr; path = sr.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
- 1F24B5A128E0648600654457 /* ReferenceGithubView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceGithubView.swift; sourceTree = "<group>"; };
- 1F24B5A328E0649200654457 /* ReferenceGithubView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceGithubView.xib; sourceTree = "<group>"; };
- 1F35F8DF2AEEB9DE00044BDA /* ShareConfirmationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareConfirmationViewController.swift; sourceTree = "<group>"; };
- 1F35F8FA2AEEDBC600044BDA /* ChatViewControllerExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatViewControllerExtension.swift; sourceTree = "<group>"; };
- 1F35F9022AEEDEE800044BDA /* AutoCompletionTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AutoCompletionTableViewCell.h; sourceTree = "<group>"; };
- 1F35F9032AEEDF0E00044BDA /* AutoCompletionTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AutoCompletionTableViewCell.m; sourceTree = "<group>"; };
- 1F371A362A7B921A006CBFB3 /* DatePickerTextField.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DatePickerTextField.swift; sourceTree = "<group>"; };
- 1F3C419E29EDAC7D00F58435 /* RoomAvatarInfoTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RoomAvatarInfoTableViewController.swift; sourceTree = "<group>"; };
- 1F3C41A029EDAC8800F58435 /* RoomAvatarInfoTableViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RoomAvatarInfoTableViewController.xib; sourceTree = "<group>"; };
- 1F3C41A229EDF05700F58435 /* AvatarEditView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AvatarEditView.swift; sourceTree = "<group>"; };
- 1F3C41A429EDF0B800F58435 /* AvatarEditView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AvatarEditView.xib; sourceTree = "<group>"; };
- 1F3D3B20255F109E00230DAE /* BarButtonItemWithActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BarButtonItemWithActivity.m; sourceTree = "<group>"; };
- 1F3D3B21255F109E00230DAE /* BarButtonItemWithActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BarButtonItemWithActivity.h; sourceTree = "<group>"; };
- 1F468E7728DCC7310099597B /* EmojiTextField.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmojiTextField.swift; sourceTree = "<group>"; };
- 1F46CE2828E05B3200E7D88E /* ReferenceDefaultView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceDefaultView.swift; sourceTree = "<group>"; };
- 1F46CE2A28E05B3C00E7D88E /* ReferenceDefaultView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceDefaultView.xib; sourceTree = "<group>"; };
- 1F4DD3EA2571C688007DC98E /* EmojiUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmojiUtils.swift; sourceTree = "<group>"; };
- 1F5683CE2BA7980C0023E151 /* FilePreviewImageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilePreviewImageView.swift; sourceTree = "<group>"; };
- 1F5813F628EB23EF00318FC3 /* NCSplitViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCSplitViewController.swift; sourceTree = "<group>"; };
- 1F5813F728EB23EF00318FC3 /* NCSplitViewPlaceholderViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCSplitViewPlaceholderViewController.swift; sourceTree = "<group>"; };
- 1F5A24322ADA77DA009939FE /* InputbarViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InputbarViewController.swift; sourceTree = "<group>"; };
- 1F5CDAE62B3B05110040ECC0 /* UnitColorGeneratorTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = UnitColorGeneratorTest.swift; path = NextcloudTalkTests/Unit/UnitColorGeneratorTest.swift; sourceTree = SOURCE_ROOT; };
- 1F61C766285E35A6004D74D8 /* DiagnosticsTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiagnosticsTableViewController.swift; sourceTree = "<group>"; };
- 1F61C76A285F65E1004D74D8 /* SimpleTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleTableViewController.swift; sourceTree = "<group>"; };
- 1F6629F92C17700E001C6C0E /* IntegrationRoomsManagerTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IntegrationRoomsManagerTest.swift; sourceTree = "<group>"; };
- 1F66B71E29FA703B003FB168 /* TypingIndicatorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TypingIndicatorView.swift; sourceTree = "<group>"; };
- 1F66B72029FA7089003FB168 /* TypingIndicatorView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TypingIndicatorView.xib; sourceTree = "<group>"; };
- 1F66B72729FA936E003FB168 /* SLKDefaultReplyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLKDefaultReplyView.h; sourceTree = "<group>"; };
- 1F66B72829FA936E003FB168 /* SLKDefaultReplyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLKDefaultReplyView.m; sourceTree = "<group>"; };
- 1F66B72A29FA9414003FB168 /* SLKDefaultTypingIndicatorView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLKDefaultTypingIndicatorView.h; sourceTree = "<group>"; };
- 1F66B72B29FA9414003FB168 /* SLKDefaultTypingIndicatorView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLKDefaultTypingIndicatorView.m; sourceTree = "<group>"; };
- 1F6D8C302B2E3756004376B8 /* NextcloudTalkTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NextcloudTalkTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 1F6D8C322B2E3756004376B8 /* IntegrationRoomTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntegrationRoomTest.swift; sourceTree = "<group>"; };
- 1F6D8C3C2B2F23C4004376B8 /* Helpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Helpers.swift; sourceTree = "<group>"; };
- 1F6D8C402B2F26D5004376B8 /* TestConstants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestConstants.swift; sourceTree = "<group>"; };
- 1F6D8C422B2F26EE004376B8 /* Helpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Helpers.swift; sourceTree = "<group>"; };
- 1F6D8C472B2F2F69004376B8 /* AAAALoginTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AAAALoginTest.swift; sourceTree = "<group>"; };
- 1F6D8C4A2B2F5B61004376B8 /* TestBase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestBase.swift; sourceTree = "<group>"; };
- 1F6D8C4C2B2F8FE5004376B8 /* IntegrationChatTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IntegrationChatTest.swift; sourceTree = "<group>"; };
- 1F7625E42901B0DB00834869 /* CallsFromOldAccountViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallsFromOldAccountViewController.swift; sourceTree = "<group>"; };
- 1F7625E62901B0E800834869 /* CallsFromOldAccountViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CallsFromOldAccountViewController.xib; sourceTree = "<group>"; };
- 1F77A6112AB9B161007B6037 /* ScreenCaptureController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScreenCaptureController.m; sourceTree = "<group>"; };
- 1F77A6122AB9B161007B6037 /* ScreenCaptureController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScreenCaptureController.h; sourceTree = "<group>"; };
- 1F77A6132AB9B161007B6037 /* ScreenCapturer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScreenCapturer.m; sourceTree = "<group>"; };
- 1F77A6142AB9B161007B6037 /* ScreenCapturer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScreenCapturer.h; sourceTree = "<group>"; };
- 1F77A61C2AB9B301007B6037 /* CapturerEventsDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapturerEventsDelegate.h; sourceTree = "<group>"; };
- 1F77A61F2AB9D82B007B6037 /* BroadcastUploadExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = BroadcastUploadExtension.entitlements; sourceTree = "<group>"; };
- 1F77A6202AB9EB06007B6037 /* SocketConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SocketConnection.h; sourceTree = "<group>"; };
- 1F77A6212AB9EB06007B6037 /* SocketConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SocketConnection.m; sourceTree = "<group>"; };
- 1F77A6232ABA0003007B6037 /* SampleHandler.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SampleHandler.swift; sourceTree = "<group>"; };
- 1F77A6252ABA0CD9007B6037 /* NCScreensharingController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCScreensharingController.h; sourceTree = "<group>"; };
- 1F77A6262ABA0CD9007B6037 /* NCScreensharingController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCScreensharingController.m; sourceTree = "<group>"; };
- 1F785DDA2707865F00AC4B40 /* VoiceMessageTranscribeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoiceMessageTranscribeViewController.m; sourceTree = "<group>"; };
- 1F785DDB2707865F00AC4B40 /* VoiceMessageTranscribeViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = VoiceMessageTranscribeViewController.xib; sourceTree = "<group>"; };
- 1F785DDC2707865F00AC4B40 /* VoiceMessageTranscribeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoiceMessageTranscribeViewController.h; sourceTree = "<group>"; };
- 1F8995B22970644C00CABA33 /* ColorGenerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ColorGenerator.swift; sourceTree = "<group>"; };
- 1F8995B42973547700CABA33 /* WebRTCCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebRTCCommon.swift; sourceTree = "<group>"; };
- 1F8AAC312C518759004DA20A /* SignalingSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SignalingSettings.swift; sourceTree = "<group>"; };
- 1F8AAC362C519577004DA20A /* TurnServer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TurnServer.swift; sourceTree = "<group>"; };
- 1F8AAC3B2C519689004DA20A /* StunServer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StunServer.swift; sourceTree = "<group>"; };
- 1F8AAC612C596308004DA20A /* UnitSignalingSettings.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitSignalingSettings.swift; sourceTree = "<group>"; };
- 1F90DA0329E9A28E00E81E3D /* AvatarManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AvatarManager.swift; sourceTree = "<group>"; };
- 1F90EFBA25FE39F800F3FA55 /* NCIntentController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCIntentController.h; sourceTree = "<group>"; };
- 1F90EFBB25FE39F800F3FA55 /* NCIntentController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCIntentController.m; sourceTree = "<group>"; };
- 1F90EFC225FE489B00F3FA55 /* IntentsUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IntentsUI.framework; path = System/Library/Frameworks/IntentsUI.framework; sourceTree = SDKROOT; };
- 1F98DF9B28E7484700E05174 /* ReferenceDeckView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceDeckView.swift; sourceTree = "<group>"; };
- 1F98DF9D28E7485000E05174 /* ReferenceDeckView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceDeckView.xib; sourceTree = "<group>"; };
- 1FA20C89284001D80062B4F3 /* DebounceWebView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DebounceWebView.swift; sourceTree = "<group>"; };
- 1FA38C8F29A4B3C6008871B8 /* NCNotificationAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNotificationAction.swift; sourceTree = "<group>"; };
- 1FA732FB2966CBB7003D2103 /* CallFlowLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallFlowLayout.swift; sourceTree = "<group>"; };
- 1FAB2E822AC9EC3F001214EB /* BaseChatViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseChatViewController.swift; sourceTree = "<group>"; };
- 1FAB2E842ACB482B001214EB /* ChatViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatViewController.swift; sourceTree = "<group>"; };
- 1FAB2EED2AD1BC1B001214EB /* UIControlExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIControlExtensions.swift; sourceTree = "<group>"; };
- 1FAB2EEF2AD1EAA3001214EB /* RLMSupport.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RLMSupport.swift; sourceTree = "<group>"; };
- 1FADECD42B7EACCB007AD94B /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
- 1FADECD52B821E24007AD94B /* FederationInvitationTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FederationInvitationTableViewController.swift; sourceTree = "<group>"; };
- 1FADECD72B82269E007AD94B /* FederationInvitationCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FederationInvitationCell.swift; sourceTree = "<group>"; };
- 1FADECD92B8227B1007AD94B /* FederationInvitationCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FederationInvitationCell.xib; sourceTree = "<group>"; };
- 1FB52E752842C75E00AC741B /* QRCodeLoginController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRCodeLoginController.swift; sourceTree = "<group>"; };
- 1FB6678E28CE381300D29F8D /* SubtitleTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SubtitleTableViewCell.swift; sourceTree = "<group>"; };
- 1FB78E1E2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAPIControllerExtensions.swift; sourceTree = "<group>"; };
- 1FB78E252B6AE5A600B0D69D /* FederationInvitation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FederationInvitation.swift; sourceTree = "<group>"; };
- 1FB7B9842BE2EE020093CE98 /* UnitChatViewControllerTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitChatViewControllerTest.swift; sourceTree = "<group>"; };
- 1FB7B9862BE441450093CE98 /* UIViewExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIViewExtensions.swift; sourceTree = "<group>"; };
- 1FB7B9882BE442400093CE98 /* UnitBaseChatTableViewCellTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitBaseChatTableViewCellTest.swift; sourceTree = "<group>"; };
- 1FB7B98D2BF0CBA60093CE98 /* BannedActor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BannedActor.swift; sourceTree = "<group>"; };
- 1FB7B9942BF0DF1C0093CE98 /* BannedActorTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BannedActorTableViewController.swift; sourceTree = "<group>"; };
- 1FB7B9992BF0DF290093CE98 /* BannedActorCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BannedActorCell.swift; sourceTree = "<group>"; };
- 1FB7B99B2BF0DF360093CE98 /* BannedActorCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = BannedActorCell.xib; sourceTree = "<group>"; };
- 1FBC3BE42B61ACD5003909E0 /* UnitBaseChatViewControllerTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitBaseChatViewControllerTest.swift; sourceTree = "<group>"; };
- 1FBC3BE82B61BD09003909E0 /* TestBaseRealm.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TestBaseRealm.swift; sourceTree = "<group>"; };
- 1FCE3D542C9C189D009C68A9 /* NCChatFileControllerWrapper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCChatFileControllerWrapper.swift; sourceTree = "<group>"; };
- 1FCE3D562C9C4D18009C68A9 /* ReferenceGiphyView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceGiphyView.swift; sourceTree = "<group>"; };
- 1FCE3D582C9C4D21009C68A9 /* ReferenceGiphyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceGiphyView.xib; sourceTree = "<group>"; };
- 1FD6F83B2B825069004048AB /* NCRoomsManagerExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCRoomsManagerExtensions.swift; sourceTree = "<group>"; };
- 1FD6F83D2B87B712004048AB /* NCUserStatusExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUserStatusExtensions.swift; sourceTree = "<group>"; };
- 1FD8AD8A2A3A162100787C16 /* NextcloudTalkUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NextcloudTalkUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 1FD8AD8C2A3A162100787C16 /* UIRoomTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIRoomTest.swift; sourceTree = "<group>"; };
- 1FD9182828C55A73009092AB /* BGTaskHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGTaskHelper.swift; sourceTree = "<group>"; };
- 1FDB47F52C9C71CE00D6F423 /* TalkAccount.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TalkAccount.swift; sourceTree = "<group>"; };
- 1FDB47F72C9C7E3F00D6F423 /* NCDatabaseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCDatabaseManager.swift; sourceTree = "<group>"; };
- 1FDCC3D329EBF6E700DEB39B /* AvatarImageView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AvatarImageView.swift; sourceTree = "<group>"; };
- 1FDCC3EC29EC7DD400DEB39B /* NextcloudTalk-Bridging-Header-Extensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NextcloudTalk-Bridging-Header-Extensions.h"; sourceTree = "<group>"; };
- 1FDCC3EF29ECB4CE00DEB39B /* AvatarButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AvatarButton.swift; sourceTree = "<group>"; };
- 1FDDB0D82AF440DD00FBAFB7 /* BoundsChangedFlowLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BoundsChangedFlowLayout.swift; sourceTree = "<group>"; };
- 1FDDB0E42AFD046600FBAFB7 /* NCUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtils.swift; sourceTree = "<group>"; };
- 1FDDB0E82AFE8F5C00FBAFB7 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
- 1FDE7C9928DE14A200CB718E /* ReferenceView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReferenceView.swift; sourceTree = "<group>"; };
- 1FDE7C9B28DE14B000CB718E /* ReferenceView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ReferenceView.xib; sourceTree = "<group>"; };
- 1FDFC94C2BA50B9100670DF4 /* UIFontExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIFontExtension.swift; sourceTree = "<group>"; };
- 1FE0C56B2A0531200083576A /* ReferenceTalkView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceTalkView.xib; sourceTree = "<group>"; };
- 1FE0C56D2A0531270083576A /* ReferenceTalkView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceTalkView.swift; sourceTree = "<group>"; };
- 1FE7DE2F2BB4598F0040EE12 /* RoomInvitationViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RoomInvitationViewCell.swift; sourceTree = "<group>"; };
- 1FE7DE312BB459B10040EE12 /* RoomInvitationViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RoomInvitationViewCell.xib; sourceTree = "<group>"; };
- 1FE94733293CE55600D6584C /* NCCameraController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCameraController.swift; sourceTree = "<group>"; };
- 1FEC459B2A02BCAE00A636AA /* ReferenceGithubPermalinkView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceGithubPermalinkView.xib; sourceTree = "<group>"; };
- 1FEC459D2A02BCB900A636AA /* ReferenceGithubPermalinkView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceGithubPermalinkView.swift; sourceTree = "<group>"; };
- 1FEC45A22A02F92700A636AA /* GithubPermalinkViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GithubPermalinkViewController.swift; sourceTree = "<group>"; };
- 1FEC45A42A02F92B00A636AA /* GithubPermalinkViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GithubPermalinkViewController.xib; sourceTree = "<group>"; };
- 1FEDE3C4257D439500853F79 /* NCChatFileController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCChatFileController.m; sourceTree = "<group>"; };
- 1FEDE3C5257D439500853F79 /* NCChatFileController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCChatFileController.h; sourceTree = "<group>"; };
- 1FEDE3CC257D43AB00853F79 /* NCMessageFileParameter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCMessageFileParameter.m; sourceTree = "<group>"; };
- 1FEDE3CD257D43AB00853F79 /* NCMessageFileParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCMessageFileParameter.h; sourceTree = "<group>"; };
- 1FF1360E2BFB4F8C006A6101 /* NCRoom.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRoom.swift; sourceTree = "<group>"; };
- 1FF136142BFB74C3006A6101 /* NCChatMessage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCChatMessage.swift; sourceTree = "<group>"; };
- 1FF2FD5B2AB99CCB000C9905 /* BroadcastUploadExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = BroadcastUploadExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
- 1FF2FD5C2AB99CCB000C9905 /* ReplayKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ReplayKit.framework; path = System/Library/Frameworks/ReplayKit.framework; sourceTree = SDKROOT; };
- 1FF2FD612AB99CCB000C9905 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 1FF2FD792AB99E4D000C9905 /* DarwinNotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DarwinNotificationCenter.swift; sourceTree = "<group>"; };
- 1FF2FD7A2AB99E4D000C9905 /* Atomic.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Atomic.swift; sourceTree = "<group>"; };
- 1FF2FD7B2AB99E4D000C9905 /* SampleUploader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SampleUploader.swift; sourceTree = "<group>"; };
- 1FF2FD7D2AB99E4D000C9905 /* SocketConnection.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SocketConnection.swift; sourceTree = "<group>"; };
- 1FF4DA7D2C0237D000C1B952 /* DirectoryTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DirectoryTableViewCell.swift; sourceTree = "<group>"; };
- 1FF4DA7F2C023FF300C1B952 /* NCChatFileStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCChatFileStatus.swift; sourceTree = "<group>"; };
- 1FF4DA812C025DB900C1B952 /* NCAPISessionManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAPISessionManager.swift; sourceTree = "<group>"; };
- 1FF4DA862C02626D00C1B952 /* NCBaseSessionManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBaseSessionManager.swift; sourceTree = "<group>"; };
- 1FF4DA8B2C0263A200C1B952 /* NCPushProxySessionManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPushProxySessionManager.swift; sourceTree = "<group>"; };
- 1FF4DA902C02677C00C1B952 /* NCImageSessionManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCImageSessionManager.swift; sourceTree = "<group>"; };
- 1FF4DA952C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCWebImageDownloaderOperation.swift; sourceTree = "<group>"; };
- 1FF4DA9A2C032AAC00C1B952 /* RoomTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RoomTableViewCell.swift; sourceTree = "<group>"; };
- 1FF4DA9F2C03351E00C1B952 /* RoomNameTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RoomNameTableViewCell.swift; sourceTree = "<group>"; };
- 1FF4DAA12C0338D000C1B952 /* RoomDescriptionTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RoomDescriptionTableViewCell.swift; sourceTree = "<group>"; };
- 1FF4DAA52C08D81D00C1B952 /* UnitNCChatMessageTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitNCChatMessageTest.swift; sourceTree = "<group>"; };
- 1FF4DAA72C08DE3A00C1B952 /* UnitNCRoomsManagerTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnitNCRoomsManagerTest.swift; sourceTree = "<group>"; };
- 1FF4DAA92C0A114900C1B952 /* OcsResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OcsResponse.swift; sourceTree = "<group>"; };
- 1FFF41612C70937B00162F4D /* ReferenceZammadView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferenceZammadView.swift; sourceTree = "<group>"; };
- 1FFF41632C70938700162F4D /* ReferenceZammadView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ReferenceZammadView.xib; sourceTree = "<group>"; };
- 2C04248F2CA32D45004772F6 /* BaseChatTableViewCell+Audio.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BaseChatTableViewCell+Audio.swift"; sourceTree = "<group>"; };
- 2C0424962CA335C4004772F6 /* AudioPlayerView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AudioPlayerView.xib; sourceTree = "<group>"; };
- 2C0424992CA33681004772F6 /* AudioPlayerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AudioPlayerView.swift; sourceTree = "<group>"; };
- 2C05747D1EDD9E8E00D9E7F2 /* NextcloudTalk.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NextcloudTalk.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 2C0574811EDD9E8E00D9E7F2 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- 2C0574831EDD9E8E00D9E7F2 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
- 2C0574841EDD9E8E00D9E7F2 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
- 2C05748D1EDD9E8E00D9E7F2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
- 2C0574941EDD9E8E00D9E7F2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 2C0574A11EDDA2E300D9E7F2 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
- 2C0574A21EDDA2E300D9E7F2 /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
- 2C0574A31EDDA2E300D9E7F2 /* LoginViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginViewController.xib; sourceTree = "<group>"; };
- 2C06330D2046CC8B0043481A /* NCUserInterfaceController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCUserInterfaceController.h; sourceTree = "<group>"; };
- 2C06330E2046CC8B0043481A /* NCUserInterfaceController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCUserInterfaceController.m; sourceTree = "<group>"; };
- 2C06BF5B20A89F510031EB46 /* NCRoomsManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCRoomsManager.h; sourceTree = "<group>"; };
- 2C06BF5C20A89F510031EB46 /* NCRoomsManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCRoomsManager.m; sourceTree = "<group>"; };
- 2C06BF6320AC64370031EB46 /* DateHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DateHeaderView.xib; sourceTree = "<group>"; };
- 2C06BF6520AC647A0031EB46 /* DateHeaderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DateHeaderView.h; sourceTree = "<group>"; };
- 2C06BF6620AC647A0031EB46 /* DateHeaderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DateHeaderView.m; sourceTree = "<group>"; };
- 2C06BF6A20AEB0030031EB46 /* RoundedNumberView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoundedNumberView.m; sourceTree = "<group>"; };
- 2C06BF6B20AEB0030031EB46 /* RoundedNumberView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoundedNumberView.h; sourceTree = "<group>"; };
- 2C16A82B28E7284D00EDE523 /* NCButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCButton.swift; sourceTree = "<group>"; };
- 2C1ABD7F25769E7C00AEDFB6 /* ShareItemController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShareItemController.h; sourceTree = "<group>"; };
- 2C1ABD8025769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShareConfirmationCollectionViewCell.m; sourceTree = "<group>"; };
- 2C1ABD8125769E7D00AEDFB6 /* ShareItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShareItem.h; sourceTree = "<group>"; };
- 2C1ABD8225769E7D00AEDFB6 /* ShareItemController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShareItemController.m; sourceTree = "<group>"; };
- 2C1ABD8325769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShareConfirmationCollectionViewCell.h; sourceTree = "<group>"; };
- 2C1ABD8425769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ShareConfirmationCollectionViewCell.xib; sourceTree = "<group>"; };
- 2C1ABD8525769E7D00AEDFB6 /* ShareItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShareItem.m; sourceTree = "<group>"; };
- 2C1ABDC4257A7CF000AEDFB6 /* NCContactsManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCContactsManager.h; sourceTree = "<group>"; };
- 2C1ABDC5257A7CF000AEDFB6 /* NCContactsManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCContactsManager.m; sourceTree = "<group>"; };
- 2C1ABDCC257E939600AEDFB6 /* NCContact.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCContact.h; sourceTree = "<group>"; };
- 2C1ABDCD257E939600AEDFB6 /* NCContact.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCContact.m; sourceTree = "<group>"; };
- 2C1ABDE3257F883400AEDFB6 /* ABContact.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ABContact.h; sourceTree = "<group>"; };
- 2C1ABDE4257F883400AEDFB6 /* ABContact.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ABContact.m; sourceTree = "<group>"; };
- 2C1D13A2253760EE00EC0533 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
- 2C1EF36925505DCE007C9768 /* NCNavigationController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCNavigationController.h; sourceTree = "<group>"; };
- 2C1EF36A25505DCE007C9768 /* NCNavigationController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCNavigationController.m; sourceTree = "<group>"; };
- 2C21446D2BB5B54D005A6537 /* BaseChatTableViewCell+Location.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BaseChatTableViewCell+Location.swift"; sourceTree = "<group>"; };
- 2C2145672BF6B8E900470C0C /* NewRoomTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NewRoomTableViewController.swift; sourceTree = "<group>"; };
- 2C2A788C2359CC8800EEB797 /* NCAppBranding.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCAppBranding.h; sourceTree = "<group>"; };
- 2C2A788D2359CC8800EEB797 /* NCAppBranding.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCAppBranding.m; sourceTree = "<group>"; };
- 2C2D7A162B8C9C0000642373 /* RoomCreationTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RoomCreationTableViewController.swift; sourceTree = "<group>"; };
- 2C2E64231F3462AF00D39CE8 /* NCSignalingMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSignalingMessage.h; sourceTree = "<group>"; };
- 2C2E64241F3462AF00D39CE8 /* NCSignalingMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSignalingMessage.m; sourceTree = "<group>"; };
- 2C3195BB24C1F58A0066F221 /* ShareExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = ShareExtension.entitlements; sourceTree = "<group>"; };
- 2C3195BF24C5E2100066F221 /* ShareTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShareTableViewCell.h; sourceTree = "<group>"; };
- 2C3195C024C5E2100066F221 /* ShareTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShareTableViewCell.m; sourceTree = "<group>"; };
- 2C3195C124C5E2100066F221 /* ShareTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShareTableViewCell.xib; sourceTree = "<group>"; };
- 2C330373255E6EBC00BDB4E4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C36A048261487BC0026F04A /* DetailedOptionsSelectorTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailedOptionsSelectorTableViewController.h; sourceTree = "<group>"; };
- 2C36A049261487BC0026F04A /* DetailedOptionsSelectorTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailedOptionsSelectorTableViewController.m; sourceTree = "<group>"; };
- 2C3780BB2107209C003F9AE8 /* NCRoomParticipant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCRoomParticipant.h; sourceTree = "<group>"; };
- 2C3780BC2107209C003F9AE8 /* NCRoomParticipants.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCRoomParticipants.m; sourceTree = "<group>"; };
- 2C3780C1210F49DC003F9AE8 /* HeaderWithButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HeaderWithButton.h; sourceTree = "<group>"; };
- 2C3780C2210F49DC003F9AE8 /* HeaderWithButton.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HeaderWithButton.m; sourceTree = "<group>"; };
- 2C3780C4210F4A26003F9AE8 /* HeaderWithButton.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HeaderWithButton.xib; sourceTree = "<group>"; };
- 2C40281322832EED0000DDFC /* NCDatabaseManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCDatabaseManager.h; sourceTree = "<group>"; };
- 2C40281422832EED0000DDFC /* NCDatabaseManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCDatabaseManager.m; sourceTree = "<group>"; };
- 2C4230F62B207AB00013E1FA /* ContextChatViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContextChatViewController.swift; sourceTree = "<group>"; };
- 2C42ADB220B58E6300296DEA /* NCChatController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCChatController.h; sourceTree = "<group>"; };
- 2C42ADB320B58E6300296DEA /* NCChatController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCChatController.m; sourceTree = "<group>"; };
- 2C43BA7421309A1000B3068A /* NCMessageParameter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCMessageParameter.h; sourceTree = "<group>"; };
- 2C43BA7521309A1000B3068A /* NCMessageParameter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCMessageParameter.m; sourceTree = "<group>"; };
- 2C440D0E20EA4A770005F9BB /* RoomInfoTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RoomInfoTableViewController.h; sourceTree = "<group>"; };
- 2C440D0F20EA4A770005F9BB /* RoomInfoTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RoomInfoTableViewController.m; sourceTree = "<group>"; };
- 2C440D1020EA4A770005F9BB /* RoomInfoTableViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RoomInfoTableViewController.xib; sourceTree = "<group>"; };
- 2C4446D12658147900DF1DBC /* TalkAccount.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TalkAccount.h; sourceTree = "<group>"; };
- 2C4446D22658147900DF1DBC /* TalkAccount.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TalkAccount.m; sourceTree = "<group>"; };
- 2C4446D6265814D100DF1DBC /* ServerCapabilities.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ServerCapabilities.h; sourceTree = "<group>"; };
- 2C4446D7265814D100DF1DBC /* ServerCapabilities.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ServerCapabilities.m; sourceTree = "<group>"; };
- 2C4446DB2658158000DF1DBC /* NCChatBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCChatBlock.h; sourceTree = "<group>"; };
- 2C4446DC2658158000DF1DBC /* NCChatBlock.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCChatBlock.m; sourceTree = "<group>"; };
- 2C4446EA265D25BA00DF1DBC /* NCKeyChainController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCKeyChainController.h; sourceTree = "<group>"; };
- 2C4446EB265D25BA00DF1DBC /* NCKeyChainController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCKeyChainController.m; sourceTree = "<group>"; };
- 2C4446EE265D454200DF1DBC /* NotificationCenterNotifications.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NotificationCenterNotifications.h; sourceTree = "<group>"; };
- 2C4446EF265D454200DF1DBC /* NotificationCenterNotifications.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NotificationCenterNotifications.m; sourceTree = "<group>"; };
- 2C4446F1265D51A600DF1DBC /* NCPushNotificationsUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCPushNotificationsUtils.h; sourceTree = "<group>"; };
- 2C4446F2265D51A600DF1DBC /* NCPushNotificationsUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCPushNotificationsUtils.m; sourceTree = "<group>"; };
- 2C4446FA265D5BEF00DF1DBC /* CallConstants.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CallConstants.h; sourceTree = "<group>"; };
- 2C444701265D641300DF1DBC /* NCUserDefaults.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCUserDefaults.h; sourceTree = "<group>"; };
- 2C444702265D641300DF1DBC /* NCUserDefaults.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCUserDefaults.m; sourceTree = "<group>"; };
- 2C44B4D027FF05A000AD1C86 /* ReactionsSummaryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReactionsSummaryView.swift; sourceTree = "<group>"; };
- 2C4747E12CB58FD2002828F2 /* PollMessageView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PollMessageView.xib; sourceTree = "<group>"; };
- 2C4747E52CB6710F002828F2 /* BaseChatTableViewCell+Poll.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BaseChatTableViewCell+Poll.swift"; sourceTree = "<group>"; };
- 2C4747E82CB67177002828F2 /* PollMessageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PollMessageView.swift; sourceTree = "<group>"; };
- 2C477C1728B79D980044DEB4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = en; path = en.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
- 2C4987BB21E640E20060AC27 /* CallKitManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CallKitManager.h; sourceTree = "<group>"; };
- 2C4987BC21E640E20060AC27 /* CallKitManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CallKitManager.m; sourceTree = "<group>"; };
- 2C4CDCCB269618230023F403 /* RoomDescriptionTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RoomDescriptionTableViewCell.xib; sourceTree = "<group>"; };
- 2C4CDCD326AF16650023F403 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C4CDCD426AF16650023F403 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C4D7D611F2F7C2C00FF4A0D /* ARDCaptureController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARDCaptureController.h; sourceTree = "<group>"; };
- 2C4D7D621F2F7C2C00FF4A0D /* ARDCaptureController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ARDCaptureController.m; sourceTree = "<group>"; };
- 2C4D7D641F2F7DBC00FF4A0D /* ARDSettingsModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARDSettingsModel.h; sourceTree = "<group>"; };
- 2C4D7D651F2F7DBC00FF4A0D /* ARDSettingsModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ARDSettingsModel.m; sourceTree = "<group>"; };
- 2C4D7D661F2F7DBC00FF4A0D /* ARDSettingsModel+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ARDSettingsModel+Private.h"; sourceTree = "<group>"; };
- 2C4D7D671F2F7DBC00FF4A0D /* ARDSettingsStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARDSettingsStore.h; sourceTree = "<group>"; };
- 2C4D7D681F2F7DBC00FF4A0D /* ARDSettingsStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ARDSettingsStore.m; sourceTree = "<group>"; };
- 2C4D7D6D1F309DA500FF4A0D /* RTCIceCandidate+JSON.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RTCIceCandidate+JSON.h"; sourceTree = "<group>"; };
- 2C4D7D6E1F309DA500FF4A0D /* RTCIceCandidate+JSON.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "RTCIceCandidate+JSON.m"; sourceTree = "<group>"; };
- 2C4D7D6F1F309DA500FF4A0D /* RTCSessionDescription+JSON.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RTCSessionDescription+JSON.h"; sourceTree = "<group>"; };
- 2C4D7D701F309DA500FF4A0D /* RTCSessionDescription+JSON.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "RTCSessionDescription+JSON.m"; sourceTree = "<group>"; };
- 2C4D7D741F30F7B600FF4A0D /* ARDUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARDUtilities.h; sourceTree = "<group>"; };
- 2C4D7D751F30F7B600FF4A0D /* ARDUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ARDUtilities.m; sourceTree = "<group>"; };
- 2C4DE9F021F732B40096940D /* NCAudioController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCAudioController.h; sourceTree = "<group>"; };
- 2C4DE9F121F732B40096940D /* NCAudioController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCAudioController.m; sourceTree = "<group>"; };
- 2C57CD8228C204C600B22E03 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = es; path = es.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
- 2C57CD8328C2255000B22E03 /* PollCreationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PollCreationViewController.swift; sourceTree = "<group>"; };
- 2C57CD8528CB3FAF00B22E03 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = eu; path = eu.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
- 2C5BFBE928772A9A00E75118 /* NCUnifiedSearchController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUnifiedSearchController.swift; sourceTree = "<group>"; };
- 2C5BFBEE288A947800E75118 /* PollVotingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PollVotingView.swift; sourceTree = "<group>"; };
- 2C5BFBF0288A97D800E75118 /* NCPoll.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCPoll.h; sourceTree = "<group>"; };
- 2C5BFBF1288A97D800E75118 /* NCPoll.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCPoll.m; sourceTree = "<group>"; };
- 2C5BFBF528902E0300E75118 /* PollFooterView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PollFooterView.swift; sourceTree = "<group>"; };
- 2C5BFBF728902E3700E75118 /* PollFooterView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PollFooterView.xib; sourceTree = "<group>"; };
- 2C5BFBF92891598900E75118 /* PollResultTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PollResultTableViewCell.swift; sourceTree = "<group>"; };
- 2C5BFBFA2891598900E75118 /* PollResultTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PollResultTableViewCell.xib; sourceTree = "<group>"; };
- 2C5BFBFD2891C3DF00E75118 /* PollResultsDetailsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PollResultsDetailsViewController.swift; sourceTree = "<group>"; };
- 2C604A2A25E4556E00F23615 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C604A2B25E4556E00F23615 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C604A2C25E455AC00F23615 /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C604A2D25E455AC00F23615 /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C604A2E25E455C500F23615 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C604A2F25E455C500F23615 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C604A3025E455D900F23615 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C604A3125E455D900F23615 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C604A3225E455ED00F23615 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
- 2C604A3325E455ED00F23615 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- 2C604A3825E4568400F23615 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C604A3925E4568400F23615 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C604A3A25E4569300F23615 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C604A3B25E4569300F23615 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C604A3C25E4569F00F23615 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C604A3D25E4569F00F23615 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C604A4025E45A9400F23615 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
- 2C604A4125E45A9400F23615 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
- 2C604A4225E45BAE00F23615 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C604A4325E45BAE00F23615 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C604BD7211988A700D34DCD /* SystemMessageTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SystemMessageTableViewCell.h; sourceTree = "<group>"; };
- 2C604BD8211988A700D34DCD /* SystemMessageTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SystemMessageTableViewCell.m; sourceTree = "<group>"; };
- 2C6085C11FB1063700B36A6E /* NextcloudTalk.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = NextcloudTalk.entitlements; sourceTree = "<group>"; };
- 2C62AFA324C08845007E460A /* ShareExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = ShareExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
- 2C62AFAB24C08845007E460A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 2C62AFB524C1A449007E460A /* Share.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = Share.storyboard; sourceTree = "<group>"; };
- 2C62AFB724C1A4E6007E460A /* ShareViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShareViewController.h; sourceTree = "<group>"; };
- 2C62AFB824C1A4E6007E460A /* ShareViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShareViewController.m; sourceTree = "<group>"; };
- 2C67905128D35BEB00762744 /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = sl; path = sl.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
- 2C69323B2923ECAA00017AD2 /* WSMessage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WSMessage.h; sourceTree = "<group>"; };
- 2C69323C2923ECAA00017AD2 /* WSMessage.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WSMessage.m; sourceTree = "<group>"; };
- 2C6E74442386D33200AE396C /* ReplyMessageView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReplyMessageView.h; sourceTree = "<group>"; };
- 2C6E74452386D33200AE396C /* ReplyMessageView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReplyMessageView.m; sourceTree = "<group>"; };
- 2C6E7447238C1A0800AE396C /* QuotedMessageView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = QuotedMessageView.h; sourceTree = "<group>"; };
- 2C6E7448238C1A0800AE396C /* QuotedMessageView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = QuotedMessageView.m; sourceTree = "<group>"; };
- 2C7381542106136000CDB8DB /* NCChatTitleView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCChatTitleView.h; sourceTree = "<group>"; };
- 2C7381552106136000CDB8DB /* NCChatTitleView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCChatTitleView.m; sourceTree = "<group>"; };
- 2C738157210613A200CDB8DB /* NCChatTitleView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCChatTitleView.xib; sourceTree = "<group>"; };
- 2C78E9E125120DE500E3D4CA /* NCUserStatus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCUserStatus.h; sourceTree = "<group>"; };
- 2C78E9E225120DE500E3D4CA /* NCUserStatus.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCUserStatus.m; sourceTree = "<group>"; };
- 2C78EF931F7E70EB008AFA74 /* NCPeerConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCPeerConnection.h; sourceTree = "<group>"; };
- 2C78EF941F7E70EB008AFA74 /* NCPeerConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCPeerConnection.m; sourceTree = "<group>"; };
- 2C78EF971F80F81E008AFA74 /* NCSignalingController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSignalingController.h; sourceTree = "<group>"; };
- 2C78EF981F80F81E008AFA74 /* NCSignalingController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSignalingController.m; sourceTree = "<group>"; };
- 2C78EF9A1F826B22008AFA74 /* NCCallController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCCallController.h; sourceTree = "<group>"; };
- 2C78EF9B1F826B22008AFA74 /* NCCallController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCCallController.m; sourceTree = "<group>"; };
- 2C78EF9D1F828C41008AFA74 /* CallViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CallViewController.h; sourceTree = "<group>"; };
- 2C78EF9E1F828C41008AFA74 /* CallViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CallViewController.m; sourceTree = "<group>"; };
- 2C78EF9F1F828C41008AFA74 /* CallViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CallViewController.xib; sourceTree = "<group>"; };
- 2C78EFA21F86FF4A008AFA74 /* CallParticipantViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CallParticipantViewCell.h; sourceTree = "<group>"; };
- 2C78EFA31F86FF4A008AFA74 /* CallParticipantViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CallParticipantViewCell.m; sourceTree = "<group>"; };
- 2C78EFA41F86FF4A008AFA74 /* CallParticipantViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CallParticipantViewCell.xib; sourceTree = "<group>"; };
- 2C7A1235200E0A5700864818 /* UserSettingsTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = UserSettingsTableViewCell.xib; sourceTree = "<group>"; };
- 2C7A123F2017872600864818 /* AddParticipantsTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AddParticipantsTableViewController.h; sourceTree = "<group>"; };
- 2C7A12402017872600864818 /* AddParticipantsTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddParticipantsTableViewController.m; sourceTree = "<group>"; };
- 2C7A12412017872600864818 /* AddParticipantsTableViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AddParticipantsTableViewController.xib; sourceTree = "<group>"; };
- 2C7F47AB20289B9600081CC7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C84BCCB29EEB9C6001BA6DA /* CallReactionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallReactionView.swift; sourceTree = "<group>"; };
- 2C84BCCD29EEDCE8001BA6DA /* CallReactionView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = CallReactionView.xib; sourceTree = "<group>"; };
- 2C8A2BC7221F094F00DE6D2C /* DirectoryTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DirectoryTableViewController.h; sourceTree = "<group>"; };
- 2C8A2BC8221F094F00DE6D2C /* DirectoryTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DirectoryTableViewController.m; sourceTree = "<group>"; };
- 2C8A2BCD221FEEFE00DE6D2C /* DirectoryTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DirectoryTableViewCell.xib; sourceTree = "<group>"; };
- 2C8CDD0421C2EDE8004E2997 /* AvatarBackgroundImageView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AvatarBackgroundImageView.h; sourceTree = "<group>"; };
- 2C8CDD0521C2EDE8004E2997 /* AvatarBackgroundImageView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AvatarBackgroundImageView.m; sourceTree = "<group>"; };
- 2C8E2A19232174C20022BFC9 /* MessageSeparatorTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MessageSeparatorTableViewCell.h; sourceTree = "<group>"; };
- 2C8E2A1A232174C20022BFC9 /* MessageSeparatorTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MessageSeparatorTableViewCell.m; sourceTree = "<group>"; };
- 2C90E5631EDDE0FB0093D85A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
- 2C90E5661EDDE1340093D85A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
- 2C90E5681EDDE13A0093D85A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
- 2C90E5CE1EDF23A00093D85A /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
- 2C90E5D01EE80C870093D85A /* AuthenticationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AuthenticationViewController.h; sourceTree = "<group>"; };
- 2C90E5D11EE80C870093D85A /* AuthenticationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AuthenticationViewController.m; sourceTree = "<group>"; };
- 2C9200C12474262C0050084F /* UIBarButtonItem+Badge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+Badge.h"; sourceTree = "<group>"; };
- 2C9200C22474262C0050084F /* UIBarButtonItem+Badge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+Badge.m"; sourceTree = "<group>"; };
- 2C928BD2268A06BB00729332 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C928BD3268A06BB00729332 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C928BD4268A0AAD00729332 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C928BD5268A0AAD00729332 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C928BD6268A0B2800729332 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C928BD7268A0B2800729332 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C928BD8268A0BC000729332 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C928BD9268A0BC000729332 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2C928BDA268A103600729332 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2C98F77721622445001A6A73 /* RoomSearchTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RoomSearchTableViewController.h; sourceTree = "<group>"; };
- 2C98F77821622445001A6A73 /* RoomSearchTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RoomSearchTableViewController.m; sourceTree = "<group>"; };
- 2C98F77C216231D3001A6A73 /* RoomTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RoomTableViewCell.xib; sourceTree = "<group>"; };
- 2C9B0B96217F6DBA00A4752C /* NCNotificationController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCNotificationController.h; sourceTree = "<group>"; };
- 2C9B0B97217F6DBA00A4752C /* NCNotificationController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCNotificationController.m; sourceTree = "<group>"; };
- 2C9B0B9A217F756B00A4752C /* NCNotification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCNotification.h; sourceTree = "<group>"; };
- 2C9B0B9B217F756B00A4752C /* NCNotification.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCNotification.m; sourceTree = "<group>"; };
- 2C9E6CCC1F6F34F000399B7A /* ARDSDPUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARDSDPUtils.h; sourceTree = "<group>"; };
- 2C9E6CCD1F6F34F000399B7A /* ARDSDPUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ARDSDPUtils.m; sourceTree = "<group>"; };
- 2CA1553F208E350300CE8EF0 /* NCChatMessage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCChatMessage.h; sourceTree = "<group>"; };
- 2CA15540208E350300CE8EF0 /* NCChatMessage.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCChatMessage.m; sourceTree = "<group>"; };
- 2CA15549208F2E5700CE8EF0 /* NCMessageTextView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCMessageTextView.h; sourceTree = "<group>"; };
- 2CA1554A208F2E5700CE8EF0 /* NCMessageTextView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCMessageTextView.m; sourceTree = "<group>"; };
- 2CA1CC8F1F014354002FE6A2 /* NCConnectionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCConnectionController.h; sourceTree = "<group>"; };
- 2CA1CC901F014354002FE6A2 /* NCConnectionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCConnectionController.m; sourceTree = "<group>"; };
- 2CA1CC931F014EF9002FE6A2 /* NCSettingsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSettingsController.h; sourceTree = "<group>"; };
- 2CA1CC941F014EF9002FE6A2 /* NCSettingsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSettingsController.m; sourceTree = "<group>"; };
- 2CA1CC961F016117002FE6A2 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
- 2CA1CCA21F025F64002FE6A2 /* RoomsTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoomsTableViewController.h; sourceTree = "<group>"; };
- 2CA1CCA31F025F64002FE6A2 /* RoomsTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoomsTableViewController.m; sourceTree = "<group>"; };
- 2CA1CCA81F02D1A4002FE6A2 /* NCAPIController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCAPIController.h; sourceTree = "<group>"; };
- 2CA1CCA91F02D1A4002FE6A2 /* NCAPIController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCAPIController.m; sourceTree = "<group>"; };
- 2CA1CCAB1F067F35002FE6A2 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
- 2CA1CCC11F166CC5002FE6A2 /* NCRoom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCRoom.h; sourceTree = "<group>"; };
- 2CA1CCC21F166CC5002FE6A2 /* NCRoom.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCRoom.m; sourceTree = "<group>"; };
- 2CA1CCC91F17C503002FE6A2 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
- 2CA1CCCB1F181741002FE6A2 /* NCUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCUser.h; sourceTree = "<group>"; };
- 2CA1CCCC1F181741002FE6A2 /* NCUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCUser.m; sourceTree = "<group>"; };
- 2CA1CCCE1F1E1779002FE6A2 /* SearchTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchTableViewController.h; sourceTree = "<group>"; };
- 2CA1CCCF1F1E1779002FE6A2 /* SearchTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchTableViewController.m; sourceTree = "<group>"; };
- 2CA1CCD31F1E664C002FE6A2 /* ContactsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContactsTableViewCell.h; sourceTree = "<group>"; };
- 2CA1CCD41F1E664C002FE6A2 /* ContactsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContactsTableViewCell.m; sourceTree = "<group>"; };
- 2CA1CCD51F1E664C002FE6A2 /* ContactsTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ContactsTableViewCell.xib; sourceTree = "<group>"; };
- 2CA52AC92670D02800619610 /* VoiceMessageRecordingView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VoiceMessageRecordingView.h; sourceTree = "<group>"; };
- 2CA52ACA2670D02800619610 /* VoiceMessageRecordingView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VoiceMessageRecordingView.m; sourceTree = "<group>"; };
- 2CA52ACC2670D07900619610 /* VoiceMessageRecordingView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = VoiceMessageRecordingView.xib; sourceTree = "<group>"; };
- 2CA80EDB256C1249006BA449 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2CA80EDC256C1249006BA449 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2CA80EDD256C1296006BA449 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2CA80EDE256C1296006BA449 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2CA80EDF256C12E7006BA449 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
- 2CA80EE0256C12E7006BA449 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2CB052A02BF2297500191349 /* connecting.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; name = connecting.mp3; path = Sounds/connecting.mp3; sourceTree = SOURCE_ROOT; };
- 2CB2B24D28BCB9D900A9D606 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = cs; path = cs.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
- 2CB2B24E28BCB9E800A9D606 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = hu; path = hu.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
- 2CB2B24F28BCBABC00A9D606 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = pl; path = pl.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
- 2CB2B25128BF957100A9D606 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = tr; path = tr.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
- 2CB3039C2264775E0053078A /* SLKInputAccessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKInputAccessoryView.h; sourceTree = "<group>"; };
- 2CB3039D2264775E0053078A /* SLKInputAccessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLKInputAccessoryView.m; sourceTree = "<group>"; };
- 2CB3039E2264775E0053078A /* SLKTextInput+Implementation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "SLKTextInput+Implementation.m"; sourceTree = "<group>"; };
- 2CB3039F2264775E0053078A /* SLKTextInput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKTextInput.h; sourceTree = "<group>"; };
- 2CB303A02264775E0053078A /* SLKTextInputbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKTextInputbar.h; sourceTree = "<group>"; };
- 2CB303A12264775E0053078A /* SLKTextInputbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLKTextInputbar.m; sourceTree = "<group>"; };
- 2CB303A22264775E0053078A /* SLKTextView+SLKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SLKTextView+SLKAdditions.h"; sourceTree = "<group>"; };
- 2CB303A32264775E0053078A /* SLKTextView+SLKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "SLKTextView+SLKAdditions.m"; sourceTree = "<group>"; };
- 2CB303A42264775E0053078A /* SLKTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKTextView.h; sourceTree = "<group>"; };
- 2CB303A52264775E0053078A /* SLKTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLKTextView.m; sourceTree = "<group>"; };
- 2CB303A62264775E0053078A /* SLKTextViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKTextViewController.h; sourceTree = "<group>"; };
- 2CB303A72264775E0053078A /* SLKTextViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLKTextViewController.m; sourceTree = "<group>"; };
- 2CB303A82264775E0053078A /* SLKVisibleViewProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKVisibleViewProtocol.h; sourceTree = "<group>"; };
- 2CB303AB2264775E0053078A /* SLKUIConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLKUIConstants.h; sourceTree = "<group>"; };
- 2CB303AC2264775E0053078A /* UIResponder+SLKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIResponder+SLKAdditions.h"; sourceTree = "<group>"; };
- 2CB303AD2264775E0053078A /* UIResponder+SLKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIResponder+SLKAdditions.m"; sourceTree = "<group>"; };
- 2CB303AE2264775E0053078A /* UIScrollView+SLKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+SLKAdditions.h"; sourceTree = "<group>"; };
- 2CB303AF2264775E0053078A /* UIScrollView+SLKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+SLKAdditions.m"; sourceTree = "<group>"; };
- 2CB303B02264775E0053078A /* UIView+SLKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SLKAdditions.h"; sourceTree = "<group>"; };
- 2CB303B12264775E0053078A /* UIView+SLKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SLKAdditions.m"; sourceTree = "<group>"; };
- 2CB6ACB926385A3800D3D641 /* ShareLocationViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShareLocationViewController.h; sourceTree = "<group>"; };
- 2CB6ACBA26385A3800D3D641 /* ShareLocationViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShareLocationViewController.m; sourceTree = "<group>"; };
- 2CB6ACBB26385A3800D3D641 /* ShareLocationViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShareLocationViewController.xib; sourceTree = "<group>"; };
- 2CB6ACC826401D5100D3D641 /* GeoLocationRichObject.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeoLocationRichObject.h; sourceTree = "<group>"; };
- 2CB6ACC926401D5100D3D641 /* GeoLocationRichObject.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GeoLocationRichObject.m; sourceTree = "<group>"; };
- 2CB6ACD82641483800D3D641 /* NCMessageLocationParameter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCMessageLocationParameter.h; sourceTree = "<group>"; };
- 2CB6ACD92641483800D3D641 /* NCMessageLocationParameter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCMessageLocationParameter.m; sourceTree = "<group>"; };
- 2CB6ACE62641954700D3D641 /* MapViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MapViewController.h; sourceTree = "<group>"; };
- 2CB6ACE72641954700D3D641 /* MapViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MapViewController.m; sourceTree = "<group>"; };
- 2CB6ACE82641954700D3D641 /* MapViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MapViewController.xib; sourceTree = "<group>"; };
- 2CB997C32A052449003C41AC /* EmojiAvatarPickerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmojiAvatarPickerViewController.swift; sourceTree = "<group>"; };
- 2CB997C42A052449003C41AC /* EmojiAvatarPickerViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = EmojiAvatarPickerViewController.xib; sourceTree = "<group>"; };
- 2CBD0D592C8770A40013C089 /* UIImageExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIImageExtension.swift; sourceTree = "<group>"; };
- 2CBF82AC1FC888FC00636459 /* NCPushNotification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCPushNotification.h; sourceTree = "<group>"; };
- 2CBF82AD1FC888FC00636459 /* NCPushNotification.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCPushNotification.m; sourceTree = "<group>"; };
- 2CBF82B01FCC7DBA00636459 /* CCCertificate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCertificate.h; sourceTree = "<group>"; };
- 2CBF82B11FCC7DBA00636459 /* CCCertificate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCertificate.m; sourceTree = "<group>"; };
- 2CC0014F24A1F0E900A20167 /* NotificationServiceExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = NotificationServiceExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
- 2CC0015124A1F0E900A20167 /* NotificationService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NotificationService.h; sourceTree = "<group>"; };
- 2CC0015224A1F0E900A20167 /* NotificationService.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NotificationService.m; sourceTree = "<group>"; };
- 2CC0015424A1F0E900A20167 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 2CC0015B24A1F1D700A20167 /* NotificationServiceExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = NotificationServiceExtension.entitlements; sourceTree = "<group>"; };
- 2CC007B220D7AE990096D91F /* ResultMultiSelectionTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResultMultiSelectionTableViewController.h; sourceTree = "<group>"; };
- 2CC007B320D7AE990096D91F /* ResultMultiSelectionTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ResultMultiSelectionTableViewController.m; sourceTree = "<group>"; };
- 2CC007C420D90AE50096D91F /* RoomNameTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RoomNameTableViewCell.xib; sourceTree = "<group>"; };
- 2CC007CC20E50B0A0096D91F /* MessageBodyTextView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MessageBodyTextView.h; sourceTree = "<group>"; };
- 2CC007CD20E50B0A0096D91F /* MessageBodyTextView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MessageBodyTextView.m; sourceTree = "<group>"; };
- 2CC1C38029C0945600C8436B /* DRCellSlideGestureRecognizer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DRCellSlideGestureRecognizer.m; sourceTree = "<group>"; };
- 2CC1C38129C0945600C8436B /* DRCellSlideAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DRCellSlideAction.h; sourceTree = "<group>"; };
- 2CC1C38229C0945600C8436B /* DRCellSlideActionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DRCellSlideActionView.h; sourceTree = "<group>"; };
- 2CC1C38329C0945600C8436B /* DRCellSlideGestureRecognizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DRCellSlideGestureRecognizer.h; sourceTree = "<group>"; };
- 2CC1C38429C0945700C8436B /* DRCellSlideAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DRCellSlideAction.m; sourceTree = "<group>"; };
- 2CC1C38529C0945700C8436B /* DRCellSlideActionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DRCellSlideActionView.m; sourceTree = "<group>"; };
- 2CC1FF4228147F10009F7288 /* RoomSharedItemsTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RoomSharedItemsTableViewController.swift; sourceTree = "<group>"; };
- 2CC1FF4328147F10009F7288 /* RoomSharedItemsTableViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RoomSharedItemsTableViewController.xib; sourceTree = "<group>"; };
- 2CC1FF4628183958009F7288 /* NCDeckCardParameter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCDeckCardParameter.h; sourceTree = "<group>"; };
- 2CC1FF4728183958009F7288 /* NCDeckCardParameter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCDeckCardParameter.m; sourceTree = "<group>"; };
- 2CC32E8C27F4540E00BB8C39 /* ReactionsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReactionsView.swift; sourceTree = "<group>"; };
- 2CC32E9027F45AE000BB8C39 /* ReactionsViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReactionsViewCell.swift; sourceTree = "<group>"; };
- 2CC32E9127F45AE000BB8C39 /* ReactionsViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ReactionsViewCell.xib; sourceTree = "<group>"; };
- 2CC32E9627F5D9BD00BB8C39 /* NCChatReaction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCChatReaction.h; sourceTree = "<group>"; };
- 2CC32E9727F5D9BD00BB8C39 /* NCChatReaction.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCChatReaction.m; sourceTree = "<group>"; };
- 2CC7158820B837140045C789 /* PlaceholderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PlaceholderView.xib; sourceTree = "<group>"; };
- 2CC7158A20B8394A0045C789 /* PlaceholderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlaceholderView.h; sourceTree = "<group>"; };
- 2CC7158B20B8394A0045C789 /* PlaceholderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PlaceholderView.m; sourceTree = "<group>"; };
- 2CC7159220C54D080045C789 /* ChatTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChatTableViewCell.h; sourceTree = "<group>"; };
- 2CC7159320C54D080045C789 /* ChatTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChatTableViewCell.m; sourceTree = "<group>"; };
- 2CD4F6B62C11C80600ED594F /* ContactsSearchResultTableViewContoller.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactsSearchResultTableViewContoller.swift; sourceTree = "<group>"; };
- 2CD5F3222142781A006B71BF /* NCExternalSignalingController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCExternalSignalingController.h; sourceTree = "<group>"; };
- 2CD5F3232142781A006B71BF /* NCExternalSignalingController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCExternalSignalingController.m; sourceTree = "<group>"; };
- 2CD80F472A4304AD00919057 /* OpenConversationsTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenConversationsTableViewController.swift; sourceTree = "<group>"; };
- 2CEA990828B8B5780029216A /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = de; path = de.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
- 2CEDA87E26EF91460044552B /* NextcloudTalk-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NextcloudTalk-Bridging-Header.h"; sourceTree = "<group>"; };
- 2CEDA88B26F492610044552B /* NSMutableAttributedString+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSMutableAttributedString+Extensions.swift"; sourceTree = "<group>"; };
- 2CF8AD3D2A0010FB00A4D3E6 /* MessageTranslationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageTranslationViewController.swift; sourceTree = "<group>"; };
- 2CF8AD3E2A0010FB00A4D3E6 /* MessageTranslationViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MessageTranslationViewController.xib; sourceTree = "<group>"; };
- 2CF9CBFB26025F64002246EF /* TextInputTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TextInputTableViewCell.xib; sourceTree = "<group>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 4F7C31E9D74F550EAF89931B /* libPods-NextcloudTalk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NextcloudTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 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>"; };
- 684807120F4439797973DF73 /* libPods-ShareExtension.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ShareExtension.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 7005E22D6C2896927FC3AEEC /* libPods-NextcloudTalkTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NextcloudTalkTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 807E30752A83A90F00089D28 /* UserStatusOptionsSwiftUI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserStatusOptionsSwiftUI.swift; sourceTree = "<group>"; };
- 80832B752A822E5100195A97 /* UserStatusSwiftUIView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserStatusSwiftUIView.swift; sourceTree = "<group>"; };
- 80832B772A823D0700195A97 /* UserStatusMessageSwiftUIView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserStatusMessageSwiftUIView.swift; sourceTree = "<group>"; };
- 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>"; };
- 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>"; };
- 9A3D305FCD7BF7E727A62F35 /* libPods-BroadcastUploadExtension.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BroadcastUploadExtension.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 9B81BB7A4920C391CC2CACFD /* libPods-NotificationServiceExtension.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NotificationServiceExtension.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 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>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- DA1AEFC2270F1FA90088E519 /* DateLabelCustom.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateLabelCustom.swift; sourceTree = "<group>"; };
- DA66582A27B6992F00B46B11 /* UserProfileTableViewController+AvatarSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserProfileTableViewController+AvatarSetup.swift"; sourceTree = "<group>"; };
- DA66582C27B6A73800B46B11 /* UserProfileTableViewController+DelegateMethods.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserProfileTableViewController+DelegateMethods.swift"; sourceTree = "<group>"; };
- DA66582E27B6B19C00B46B11 /* UserProfileTableViewController+Actions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserProfileTableViewController+Actions.swift"; sourceTree = "<group>"; };
- DA66583027B6B24E00B46B11 /* UserProfileTableViewController+Utils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UserProfileTableViewController+Utils.swift"; sourceTree = "<group>"; };
- DA75580E278EEA1000A48A1B /* SettingsTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsTableViewController.swift; sourceTree = "<group>"; };
- DA755810278EF3EF00A48A1B /* UserSettingsTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserSettingsTableViewCell.swift; sourceTree = "<group>"; };
- DA8801A127A2DA00009EF248 /* UserProfileTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserProfileTableViewController.swift; sourceTree = "<group>"; };
- DA8801A327AC52AC009EF248 /* TextInputTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextInputTableViewCell.swift; sourceTree = "<group>"; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 1F6D8C2D2B2E3756004376B8 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1F759C0E2B63B9BA000534AB /* WebRTC in Frameworks */,
- 1F759C092B63B9A7000534AB /* SDWebImage in Frameworks */,
- 1F759C1A2B63B9D9000534AB /* CDMarkdownKit in Frameworks */,
- 1F759C0B2B63B9A7000534AB /* SDWebImageSVGKitPlugin in Frameworks */,
- 1F759C102B63B9D9000534AB /* OpenSSL in Frameworks */,
- 1F759C142B63B9D9000534AB /* QRCodeReader in Frameworks */,
- 1F759C342B63CBAA000534AB /* Realm in Frameworks */,
- 1F759C162B63B9D9000534AB /* NextcloudKit in Frameworks */,
- 1F759C182B63B9D9000534AB /* SwiftyAttributes in Frameworks */,
- 1F759C1C2B63B9D9000534AB /* TOCropViewController in Frameworks */,
- 1F759C1E2B63B9D9000534AB /* SwiftUIIntrospect in Frameworks */,
- 4890175925A0D7FC2EC76CC0 /* libPods-NextcloudTalkTests.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 1FD8AD872A3A162100787C16 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 1FF2FD582AB99CCB000C9905 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1F759C322B63CBA5000534AB /* Realm in Frameworks */,
- 1F77A6002AB9A50D007B6037 /* NextcloudKit in Frameworks */,
- 1F77A60C2AB9A5BE007B6037 /* CDMarkdownKit in Frameworks */,
- 1F77A5EF2AB9A41E007B6037 /* SDWebImage in Frameworks */,
- 5EE5ACC02CF372AD004D7EDB /* ReplayKit.framework in Frameworks */,
- 1FF1361A2BFBC841006A6101 /* SwiftyAttributes in Frameworks */,
- 847EFC7236336B67A1A89358 /* libPods-BroadcastUploadExtension.a in Frameworks */,
- 1F77A5F12AB9A423007B6037 /* SDWebImageSVGKitPlugin in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2C05747A1EDD9E8E00D9E7F2 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2CA1CCCA1F17C503002FE6A2 /* AudioToolbox.framework in Frameworks */,
- 2CCCD21D2835088F00F076CE /* OpenSSL in Frameworks */,
- 1FCE3D532C9B5918009C68A9 /* SwiftyGif in Frameworks */,
- 1F90EFC725FE4BE700F3FA55 /* IntentsUI.framework in Frameworks */,
- 2CA1CC971F016117002FE6A2 /* Security.framework in Frameworks */,
- 1F45A1212A01D8BA005FE87D /* SDWebImageSVGKitPlugin in Frameworks */,
- 1F628CBA2842BAAF0083A425 /* QRCodeReader in Frameworks */,
- 1FAB2E7D2AC99326001214EB /* TOCropViewController in Frameworks */,
- 2C90E5CF1EDF23A00093D85A /* WebKit.framework in Frameworks */,
- 2C90E5691EDDE13A0093D85A /* UIKit.framework in Frameworks */,
- 80CDF8C42A8E098900CB57AE /* SwiftUIIntrospect in Frameworks */,
- 2C90E5671EDDE1340093D85A /* CoreGraphics.framework in Frameworks */,
- 1F45A1162A01D6EC005FE87D /* SDWebImage in Frameworks */,
- 2C90E5641EDDE0FB0093D85A /* Foundation.framework in Frameworks */,
- 1F468E7628DCC6C60099597B /* Dynamic in Frameworks */,
- 1F759C2C2B63CB93000534AB /* Realm in Frameworks */,
- 1FAB2E882ACD44D0001214EB /* WebRTC in Frameworks */,
- 1F0ECBF52A68274400921E90 /* CDMarkdownKit in Frameworks */,
- 1F66B72F29FABD01003FB168 /* SwiftyAttributes in Frameworks */,
- 1F7AE07829142CA1009F72AD /* NextcloudKit in Frameworks */,
- 9993261EDAC77481FF4EF58A /* libPods-NextcloudTalk.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2C62AFA024C08845007E460A /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1F7AE07C29142E6A009F72AD /* NextcloudKit in Frameworks */,
- 1FAB2E7F2AC99367001214EB /* TOCropViewController in Frameworks */,
- 1F0ECBF92A68277C00921E90 /* CDMarkdownKit in Frameworks */,
- 8789AE73BFCAA413B43319C0 /* libPods-ShareExtension.a in Frameworks */,
- 1F759C302B63CBA0000534AB /* Realm in Frameworks */,
- 1F45A11A2A01D70E005FE87D /* SDWebImage in Frameworks */,
- 5EE5ACBB2CF371E7004D7EDB /* AudioToolbox.framework in Frameworks */,
- 1F45A1252A01D8F7005FE87D /* SDWebImageSVGKitPlugin in Frameworks */,
- 5EE5ACBE2CF371E9004D7EDB /* IntentsUI.framework in Frameworks */,
- 1F35F8F52AEEDA9800044BDA /* SwiftyAttributes in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2CC0014C24A1F0E900A20167 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1F759C2E2B63CB9A000534AB /* Realm in Frameworks */,
- 1F45A1232A01D8F1005FE87D /* SDWebImageSVGKitPlugin in Frameworks */,
- 1F0ECBF72A68277000921E90 /* CDMarkdownKit in Frameworks */,
- 1F7AE07A29142E62009F72AD /* NextcloudKit in Frameworks */,
- 1F7AE07D29158878009F72AD /* IntentsUI.framework in Frameworks */,
- 1FF1361C2BFBC86A006A6101 /* SwiftyAttributes in Frameworks */,
- 3FCA62550CD1442D28E8A7C6 /* libPods-NotificationServiceExtension.a in Frameworks */,
- 1F45A11E2A01D719005FE87D /* SDWebImage in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 1F1B0F3A2BE0476C003FD766 /* Media Viewer */ = {
- isa = PBXGroup;
- children = (
- 1F1B0F2B2BDBB3AC003FD766 /* NCMediaViewerViewController.swift */,
- 1F1B0F2F2BDBC9D6003FD766 /* NCMediaViewerPageViewController.swift */,
- 1F1B0F492BE047D5003FD766 /* OneWayPanGestureRecognizer.swift */,
- 1F1B0F412BE047CE003FD766 /* CustomPresentable.swift */,
- 1F1B0F3F2BE047CD003FD766 /* InteractionControlling.swift */,
- 1F1B0F3E2BE047CD003FD766 /* ModalPresentationController.swift */,
- 1F1B0F3C2BE047CD003FD766 /* ModalTransitionAnimator.swift */,
- 1F1B0F3D2BE047CD003FD766 /* ModalTransitionManager.swift */,
- 1F1B0F402BE047CE003FD766 /* StandardInteractionController.swift */,
- 1F1B0F3B2BE047CD003FD766 /* UIViewController+Transitions.swift */,
- 1F1B0F4B2BE18FF3003FD766 /* CustomPresentableNavigationController.swift */,
- );
- name = "Media Viewer";
- sourceTree = "<group>";
- };
- 1F46CE2528E05ABB00E7D88E /* Reactions */ = {
- isa = PBXGroup;
- children = (
- 2CC32E8C27F4540E00BB8C39 /* ReactionsView.swift */,
- 2CC32E9027F45AE000BB8C39 /* ReactionsViewCell.swift */,
- 2CC32E9127F45AE000BB8C39 /* ReactionsViewCell.xib */,
- 2C44B4D027FF05A000AD1C86 /* ReactionsSummaryView.swift */,
- );
- name = Reactions;
- sourceTree = "<group>";
- };
- 1F46CE2628E05AC100E7D88E /* Polls */ = {
- isa = PBXGroup;
- children = (
- 2C57CD8328C2255000B22E03 /* PollCreationViewController.swift */,
- 2C5BFBF528902E0300E75118 /* PollFooterView.swift */,
- 2C5BFBF728902E3700E75118 /* PollFooterView.xib */,
- 2C4747E82CB67177002828F2 /* PollMessageView.swift */,
- 2C4747E12CB58FD2002828F2 /* PollMessageView.xib */,
- 2C5BFBFD2891C3DF00E75118 /* PollResultsDetailsViewController.swift */,
- 2C5BFBF92891598900E75118 /* PollResultTableViewCell.swift */,
- 2C5BFBFA2891598900E75118 /* PollResultTableViewCell.xib */,
- 2C5BFBEE288A947800E75118 /* PollVotingView.swift */,
- );
- name = Polls;
- sourceTree = "<group>";
- };
- 1F46CE2728E05ACF00E7D88E /* References */ = {
- isa = PBXGroup;
- children = (
- 1FDE7C9928DE14A200CB718E /* ReferenceView.swift */,
- 1FDE7C9B28DE14B000CB718E /* ReferenceView.xib */,
- 1F46CE2828E05B3200E7D88E /* ReferenceDefaultView.swift */,
- 1F46CE2A28E05B3C00E7D88E /* ReferenceDefaultView.xib */,
- 1FCE3D562C9C4D18009C68A9 /* ReferenceGiphyView.swift */,
- 1FCE3D582C9C4D21009C68A9 /* ReferenceGiphyView.xib */,
- 1F24B5A128E0648600654457 /* ReferenceGithubView.swift */,
- 1F24B5A328E0649200654457 /* ReferenceGithubView.xib */,
- 1FFF41612C70937B00162F4D /* ReferenceZammadView.swift */,
- 1FFF41632C70938700162F4D /* ReferenceZammadView.xib */,
- 1FEC459D2A02BCB900A636AA /* ReferenceGithubPermalinkView.swift */,
- 1FEC459B2A02BCAE00A636AA /* ReferenceGithubPermalinkView.xib */,
- 1FE0C56D2A0531270083576A /* ReferenceTalkView.swift */,
- 1FE0C56B2A0531200083576A /* ReferenceTalkView.xib */,
- 1FEC45A22A02F92700A636AA /* GithubPermalinkViewController.swift */,
- 1FEC45A42A02F92B00A636AA /* GithubPermalinkViewController.xib */,
- 1F98DF9B28E7484700E05174 /* ReferenceDeckView.swift */,
- 1F98DF9D28E7485000E05174 /* ReferenceDeckView.xib */,
- );
- name = References;
- sourceTree = "<group>";
- };
- 1F6D8C312B2E3756004376B8 /* NextcloudTalkTests */ = {
- isa = PBXGroup;
- children = (
- 1F6D8C452B2F27A3004376B8 /* Common */,
- 1F6D8C462B2F27BB004376B8 /* UI */,
- 1F6D8C3A2B2F236D004376B8 /* Integration */,
- 1F6D8C3B2B2F237F004376B8 /* Unit */,
- );
- path = NextcloudTalkTests;
- sourceTree = "<group>";
- };
- 1F6D8C3A2B2F236D004376B8 /* Integration */ = {
- isa = PBXGroup;
- children = (
- 1F6D8C422B2F26EE004376B8 /* Helpers.swift */,
- 1F6D8C4A2B2F5B61004376B8 /* TestBase.swift */,
- 1F6D8C322B2E3756004376B8 /* IntegrationRoomTest.swift */,
- 1F6629F92C17700E001C6C0E /* IntegrationRoomsManagerTest.swift */,
- 1F6D8C4C2B2F8FE5004376B8 /* IntegrationChatTest.swift */,
- );
- path = Integration;
- sourceTree = "<group>";
- };
- 1F6D8C3B2B2F237F004376B8 /* Unit */ = {
- isa = PBXGroup;
- children = (
- 1F8AAC602C5962BE004DA20A /* Chat */,
- 1FBC3BE82B61BD09003909E0 /* TestBaseRealm.swift */,
- 1FB7B9862BE441450093CE98 /* UIViewExtensions.swift */,
- 1F5CDAE62B3B05110040ECC0 /* UnitColorGeneratorTest.swift */,
- 1F1B0F242BD94A0D003FD766 /* UnitDarwinCenterTest.swift */,
- 1F0B0A762BA26BE10073FF8D /* UnitMentionSuggestionTest.swift */,
- 1FF4DAA72C08DE3A00C1B952 /* UnitNCRoomsManagerTest.swift */,
- 1F1DF8402C63C25900E5EA86 /* UnitNCDatabaseManager.swift */,
- 1F8AAC612C596308004DA20A /* UnitSignalingSettings.swift */,
- );
- path = Unit;
- sourceTree = "<group>";
- };
- 1F6D8C452B2F27A3004376B8 /* Common */ = {
- isa = PBXGroup;
- children = (
- 1F6D8C402B2F26D5004376B8 /* TestConstants.swift */,
- );
- path = Common;
- sourceTree = "<group>";
- };
- 1F6D8C462B2F27BB004376B8 /* UI */ = {
- isa = PBXGroup;
- children = (
- 1F6D8C3C2B2F23C4004376B8 /* Helpers.swift */,
- 1F6D8C472B2F2F69004376B8 /* AAAALoginTest.swift */,
- 1FD8AD8C2A3A162100787C16 /* UIRoomTest.swift */,
- );
- path = UI;
- sourceTree = "<group>";
- };
- 1F77A60E2AB9B14D007B6037 /* Screensharing */ = {
- isa = PBXGroup;
- children = (
- 1F77A6202AB9EB06007B6037 /* SocketConnection.h */,
- 1F77A6212AB9EB06007B6037 /* SocketConnection.m */,
- 1F77A61C2AB9B301007B6037 /* CapturerEventsDelegate.h */,
- 1F77A6122AB9B161007B6037 /* ScreenCaptureController.h */,
- 1F77A6112AB9B161007B6037 /* ScreenCaptureController.m */,
- 1F77A6142AB9B161007B6037 /* ScreenCapturer.h */,
- 1F77A6132AB9B161007B6037 /* ScreenCapturer.m */,
- 1F77A6252ABA0CD9007B6037 /* NCScreensharingController.h */,
- 1F77A6262ABA0CD9007B6037 /* NCScreensharingController.m */,
- );
- name = Screensharing;
- sourceTree = "<group>";
- };
- 1F8AAC602C5962BE004DA20A /* Chat */ = {
- isa = PBXGroup;
- children = (
- 1FB7B9882BE442400093CE98 /* UnitBaseChatTableViewCellTest.swift */,
- 1FBC3BE42B61ACD5003909E0 /* UnitBaseChatViewControllerTest.swift */,
- 1FB7B9842BE2EE020093CE98 /* UnitChatViewControllerTest.swift */,
- 1FF4DAA52C08D81D00C1B952 /* UnitNCChatMessageTest.swift */,
- );
- path = Chat;
- sourceTree = "<group>";
- };
- 1F90EFB925FE398B00F3FA55 /* Siri */ = {
- isa = PBXGroup;
- children = (
- 1F90EFBA25FE39F800F3FA55 /* NCIntentController.h */,
- 1F90EFBB25FE39F800F3FA55 /* NCIntentController.m */,
- );
- name = Siri;
- sourceTree = "<group>";
- };
- 1FB78E242B6AE58100B0D69D /* Federation */ = {
- isa = PBXGroup;
- children = (
- 1FADECD92B8227B1007AD94B /* FederationInvitationCell.xib */,
- 1FADECD72B82269E007AD94B /* FederationInvitationCell.swift */,
- 1FADECD52B821E24007AD94B /* FederationInvitationTableViewController.swift */,
- 1FB78E252B6AE5A600B0D69D /* FederationInvitation.swift */,
- );
- name = Federation;
- sourceTree = "<group>";
- };
- 1FB7B9932BF0DE4A0093CE98 /* Banned Actors */ = {
- isa = PBXGroup;
- children = (
- 1FB7B99B2BF0DF360093CE98 /* BannedActorCell.xib */,
- 1FB7B9992BF0DF290093CE98 /* BannedActorCell.swift */,
- 1FB7B9942BF0DF1C0093CE98 /* BannedActorTableViewController.swift */,
- 1FB7B98D2BF0CBA60093CE98 /* BannedActor.swift */,
- );
- name = "Banned Actors";
- sourceTree = "<group>";
- };
- 1FF2FD5E2AB99CCB000C9905 /* BroadcastUploadExtension */ = {
- isa = PBXGroup;
- children = (
- 1F77A61F2AB9D82B007B6037 /* BroadcastUploadExtension.entitlements */,
- 1FF2FD7A2AB99E4D000C9905 /* Atomic.swift */,
- 1FF2FD792AB99E4D000C9905 /* DarwinNotificationCenter.swift */,
- 1F77A6232ABA0003007B6037 /* SampleHandler.swift */,
- 1FF2FD7B2AB99E4D000C9905 /* SampleUploader.swift */,
- 1FF2FD7D2AB99E4D000C9905 /* SocketConnection.swift */,
- 1FF2FD612AB99CCB000C9905 /* Info.plist */,
- );
- path = BroadcastUploadExtension;
- sourceTree = "<group>";
- };
- 2C0574741EDD9E8E00D9E7F2 = {
- isa = PBXGroup;
- children = (
- 2CC0015024A1F0E900A20167 /* NotificationServiceExtension */,
- 2C62AFA424C08845007E460A /* ShareExtension */,
- 1FF2FD5E2AB99CCB000C9905 /* BroadcastUploadExtension */,
- 1F6D8C312B2E3756004376B8 /* NextcloudTalkTests */,
- 2C05747E1EDD9E8E00D9E7F2 /* Products */,
- 2C05749C1EDDA01700D9E7F2 /* ThirdParty */,
- 2C05747F1EDD9E8E00D9E7F2 /* NextcloudTalk */,
- 2C90E5621EDDE0FB0093D85A /* Frameworks */,
- 926177EBCFB97EA1273DEDB9 /* Pods */,
- );
- sourceTree = "<group>";
- };
- 2C05747E1EDD9E8E00D9E7F2 /* Products */ = {
- isa = PBXGroup;
- children = (
- 2C05747D1EDD9E8E00D9E7F2 /* NextcloudTalk.app */,
- 2CC0014F24A1F0E900A20167 /* NotificationServiceExtension.appex */,
- 2C62AFA324C08845007E460A /* ShareExtension.appex */,
- 1FD8AD8A2A3A162100787C16 /* NextcloudTalkUITests.xctest */,
- 1FF2FD5B2AB99CCB000C9905 /* BroadcastUploadExtension.appex */,
- 1F6D8C302B2E3756004376B8 /* NextcloudTalkTests.xctest */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 2C05747F1EDD9E8E00D9E7F2 /* NextcloudTalk */ = {
- isa = PBXGroup;
- children = (
- 2C0574831EDD9E8E00D9E7F2 /* AppDelegate.h */,
- 2C0574841EDD9E8E00D9E7F2 /* AppDelegate.m */,
- 2C5521691F7D48480077E587 /* Calls */,
- 2CF0679E208A2A430070A79B /* Chat */,
- 2C5521671F7D47BA0077E587 /* Contacts */,
- 2C40281622832EF90000DDFC /* Database */,
- 1FB78E242B6AE58100B0D69D /* Federation */,
- 2C8A2BCA221F096200DE6D2C /* File sharing */,
- 2C5521681F7D481C0077E587 /* Login */,
- 2CB6ACA72638489300D3D641 /* Maps */,
- 1F1B0F3A2BE0476C003FD766 /* Media Viewer */,
- 2C55216B1F7D48970077E587 /* Network */,
- 2C9B0B99217F6E3400A4752C /* Notifications */,
- 2C5521661F7D47A50077E587 /* Rooms */,
- 1F77A60E2AB9B14D007B6037 /* Screensharing */,
- 2CBF82B31FCC7DC100636459 /* Security */,
- 2C55216A1F7D48850077E587 /* Settings */,
- 1F90EFB925FE398B00F3FA55 /* Siri */,
- 2C0574801EDD9E8E00D9E7F2 /* Supporting Files */,
- 2C0633102046CCA60043481A /* User Interface */,
- 2C78EF961F7E720A008AFA74 /* WebRTC */,
- 2C6085C11FB1063700B36A6E /* NextcloudTalk.entitlements */,
- 2CA1CCAB1F067F35002FE6A2 /* Images.xcassets */,
- 2C0574941EDD9E8E00D9E7F2 /* Info.plist */,
- 1FADECD42B7EACCB007AD94B /* PrivacyInfo.xcprivacy */,
- 2C05748C1EDD9E8E00D9E7F2 /* Main.storyboard */,
- 2C1D13A1253760EE00EC0533 /* LaunchScreen.xib */,
- 2CB052A02BF2297500191349 /* connecting.mp3 */,
- 2C7F47AC20289B9600081CC7 /* Localizable.strings */,
- 2C330374255E6EBC00BDB4E4 /* InfoPlist.strings */,
- 2C4446EE265D454200DF1DBC /* NotificationCenterNotifications.h */,
- 2C4446EF265D454200DF1DBC /* NotificationCenterNotifications.m */,
- 2CEDA87E26EF91460044552B /* NextcloudTalk-Bridging-Header.h */,
- 1FDCC3EC29EC7DD400DEB39B /* NextcloudTalk-Bridging-Header-Extensions.h */,
- 2C477C1828B79D980044DEB4 /* Localizable.stringsdict */,
- 1FAB2EEF2AD1EAA3001214EB /* RLMSupport.swift */,
- );
- path = NextcloudTalk;
- sourceTree = "<group>";
- };
- 2C0574801EDD9E8E00D9E7F2 /* Supporting Files */ = {
- isa = PBXGroup;
- children = (
- 2C0574811EDD9E8E00D9E7F2 /* main.m */,
- );
- name = "Supporting Files";
- sourceTree = "<group>";
- };
- 2C05749C1EDDA01700D9E7F2 /* ThirdParty */ = {
- isa = PBXGroup;
- children = (
- 2CC1C37F29C0945600C8436B /* DRCellSlideGestureRecognizer */,
- 2CB302F92264775E0053078A /* SlackTextViewController */,
- 2C4D7D601F2F7C2C00FF4A0D /* AppRTC */,
- );
- name = ThirdParty;
- sourceTree = "<group>";
- };
- 2C0633102046CCA60043481A /* User Interface */ = {
- isa = PBXGroup;
- children = (
- 1F1B0F262BDA61C5003FD766 /* AllocationTracker.swift */,
- 1F5813F628EB23EF00318FC3 /* NCSplitViewController.swift */,
- 1F5813F728EB23EF00318FC3 /* NCSplitViewPlaceholderViewController.swift */,
- 2C06330D2046CC8B0043481A /* NCUserInterfaceController.h */,
- 2C06330E2046CC8B0043481A /* NCUserInterfaceController.m */,
- 2C3780C1210F49DC003F9AE8 /* HeaderWithButton.h */,
- 2C3780C2210F49DC003F9AE8 /* HeaderWithButton.m */,
- 2C3780C4210F4A26003F9AE8 /* HeaderWithButton.xib */,
- 2CC7158A20B8394A0045C789 /* PlaceholderView.h */,
- 2CC7158B20B8394A0045C789 /* PlaceholderView.m */,
- 2CC7158820B837140045C789 /* PlaceholderView.xib */,
- 2C9200C12474262C0050084F /* UIBarButtonItem+Badge.h */,
- 2C9200C22474262C0050084F /* UIBarButtonItem+Badge.m */,
- 2C1EF36925505DCE007C9768 /* NCNavigationController.h */,
- 2C1EF36A25505DCE007C9768 /* NCNavigationController.m */,
- 1F3D3B21255F109E00230DAE /* BarButtonItemWithActivity.h */,
- 1F3D3B20255F109E00230DAE /* BarButtonItemWithActivity.m */,
- 2C36A048261487BC0026F04A /* DetailedOptionsSelectorTableViewController.h */,
- 2C36A049261487BC0026F04A /* DetailedOptionsSelectorTableViewController.m */,
- 2CEDA88B26F492610044552B /* NSMutableAttributedString+Extensions.swift */,
- 1F61C76A285F65E1004D74D8 /* SimpleTableViewController.swift */,
- 1FB6678E28CE381300D29F8D /* SubtitleTableViewCell.swift */,
- 1F468E7728DCC7310099597B /* EmojiTextField.swift */,
- 1F371A362A7B921A006CBFB3 /* DatePickerTextField.swift */,
- 2C16A82B28E7284D00EDE523 /* NCButton.swift */,
- 1F11FB7129C07B04001E21E7 /* NCZoomableView.swift */,
- 1F8995B22970644C00CABA33 /* ColorGenerator.swift */,
- 1F1C0D8829AFB89900D17C6D /* VLCKitVideoViewController.swift */,
- 1F1C0D8629AFB88800D17C6D /* VLCKitVideoViewController.xib */,
- 1F90DA0329E9A28E00E81E3D /* AvatarManager.swift */,
- 1FDCC3D329EBF6E700DEB39B /* AvatarImageView.swift */,
- 1FDCC3EF29ECB4CE00DEB39B /* AvatarButton.swift */,
- 1F3C41A229EDF05700F58435 /* AvatarEditView.swift */,
- 1F3C41A429EDF0B800F58435 /* AvatarEditView.xib */,
- 2CB997C32A052449003C41AC /* EmojiAvatarPickerViewController.swift */,
- 2CB997C42A052449003C41AC /* EmojiAvatarPickerViewController.xib */,
- 1FAB2EED2AD1BC1B001214EB /* UIControlExtensions.swift */,
- 1FDFC94C2BA50B9100670DF4 /* UIFontExtension.swift */,
- 2CBD0D592C8770A40013C089 /* UIImageExtension.swift */,
- 1F1B0F312BDC57E3003FD766 /* UIPageViewControllerExtension.swift */,
- 1F1B0F352BDD8B9C003FD766 /* NCActivityIndicator.swift */,
- );
- name = "User Interface";
- sourceTree = "<group>";
- };
- 2C40281622832EF90000DDFC /* Database */ = {
- isa = PBXGroup;
- children = (
- 2C40281322832EED0000DDFC /* NCDatabaseManager.h */,
- 2C40281422832EED0000DDFC /* NCDatabaseManager.m */,
- 1FDB47F72C9C7E3F00D6F423 /* NCDatabaseManager.swift */,
- 2C4446D12658147900DF1DBC /* TalkAccount.h */,
- 2C4446D22658147900DF1DBC /* TalkAccount.m */,
- 1FDB47F52C9C71CE00D6F423 /* TalkAccount.swift */,
- 1F1B50452B90CDE600B0F2F4 /* TalkCapabilities.h */,
- 1F1B50462B90CDF800B0F2F4 /* TalkCapabilities.m */,
- 2C4446D6265814D100DF1DBC /* ServerCapabilities.h */,
- 2C4446D7265814D100DF1DBC /* ServerCapabilities.m */,
- 1F1B50422B9095C900B0F2F4 /* FederatedCapabilities.h */,
- 1F1B50432B9095D100B0F2F4 /* FederatedCapabilities.m */,
- 2C4446DB2658158000DF1DBC /* NCChatBlock.h */,
- 2C4446DC2658158000DF1DBC /* NCChatBlock.m */,
- 1FD9182828C55A73009092AB /* BGTaskHelper.swift */,
- );
- name = Database;
- sourceTree = "<group>";
- };
- 2C4D7D601F2F7C2C00FF4A0D /* AppRTC */ = {
- isa = PBXGroup;
- children = (
- 2C4D7D611F2F7C2C00FF4A0D /* ARDCaptureController.h */,
- 2C4D7D621F2F7C2C00FF4A0D /* ARDCaptureController.m */,
- 2C9E6CCC1F6F34F000399B7A /* ARDSDPUtils.h */,
- 2C9E6CCD1F6F34F000399B7A /* ARDSDPUtils.m */,
- 2C4D7D641F2F7DBC00FF4A0D /* ARDSettingsModel.h */,
- 2C4D7D651F2F7DBC00FF4A0D /* ARDSettingsModel.m */,
- 2C4D7D661F2F7DBC00FF4A0D /* ARDSettingsModel+Private.h */,
- 2C4D7D671F2F7DBC00FF4A0D /* ARDSettingsStore.h */,
- 2C4D7D681F2F7DBC00FF4A0D /* ARDSettingsStore.m */,
- 2C4D7D741F30F7B600FF4A0D /* ARDUtilities.h */,
- 2C4D7D751F30F7B600FF4A0D /* ARDUtilities.m */,
- 2C4D7D6D1F309DA500FF4A0D /* RTCIceCandidate+JSON.h */,
- 2C4D7D6E1F309DA500FF4A0D /* RTCIceCandidate+JSON.m */,
- 2C4D7D6F1F309DA500FF4A0D /* RTCSessionDescription+JSON.h */,
- 2C4D7D701F309DA500FF4A0D /* RTCSessionDescription+JSON.m */,
- );
- name = AppRTC;
- path = ThirdParty/AppRTC;
- sourceTree = "<group>";
- };
- 2C5521661F7D47A50077E587 /* Rooms */ = {
- isa = PBXGroup;
- children = (
- 1FB7B9932BF0DE4A0093CE98 /* Banned Actors */,
- 1FE7DE312BB459B10040EE12 /* RoomInvitationViewCell.xib */,
- 1FE7DE2F2BB4598F0040EE12 /* RoomInvitationViewCell.swift */,
- 2C06BF6B20AEB0030031EB46 /* RoundedNumberView.h */,
- 2C06BF6A20AEB0030031EB46 /* RoundedNumberView.m */,
- 2CA1CCC11F166CC5002FE6A2 /* NCRoom.h */,
- 2CA1CCC21F166CC5002FE6A2 /* NCRoom.m */,
- 1FF1360E2BFB4F8C006A6101 /* NCRoom.swift */,
- 2CA1CCA21F025F64002FE6A2 /* RoomsTableViewController.h */,
- 2CA1CCA31F025F64002FE6A2 /* RoomsTableViewController.m */,
- 1FF4DA9A2C032AAC00C1B952 /* RoomTableViewCell.swift */,
- 2C98F77C216231D3001A6A73 /* RoomTableViewCell.xib */,
- 2C06BF5B20A89F510031EB46 /* NCRoomsManager.h */,
- 2C06BF5C20A89F510031EB46 /* NCRoomsManager.m */,
- 1FD6F83B2B825069004048AB /* NCRoomsManagerExtensions.swift */,
- 1FF4DA9F2C03351E00C1B952 /* RoomNameTableViewCell.swift */,
- 2CC007C420D90AE50096D91F /* RoomNameTableViewCell.xib */,
- 1FF4DAA12C0338D000C1B952 /* RoomDescriptionTableViewCell.swift */,
- 2C4CDCCB269618230023F403 /* RoomDescriptionTableViewCell.xib */,
- 2C440D0E20EA4A770005F9BB /* RoomInfoTableViewController.h */,
- 2C440D0F20EA4A770005F9BB /* RoomInfoTableViewController.m */,
- 2C440D1020EA4A770005F9BB /* RoomInfoTableViewController.xib */,
- 2C3780BB2107209C003F9AE8 /* NCRoomParticipant.h */,
- 2C3780BC2107209C003F9AE8 /* NCRoomParticipants.m */,
- 2C98F77721622445001A6A73 /* RoomSearchTableViewController.h */,
- 2C98F77821622445001A6A73 /* RoomSearchTableViewController.m */,
- 2CC1FF4228147F10009F7288 /* RoomSharedItemsTableViewController.swift */,
- 2CC1FF4328147F10009F7288 /* RoomSharedItemsTableViewController.xib */,
- 1F3C419E29EDAC7D00F58435 /* RoomAvatarInfoTableViewController.swift */,
- 1F3C41A029EDAC8800F58435 /* RoomAvatarInfoTableViewController.xib */,
- 2CD80F472A4304AD00919057 /* OpenConversationsTableViewController.swift */,
- 2C2D7A162B8C9C0000642373 /* RoomCreationTableViewController.swift */,
- 2C2145672BF6B8E900470C0C /* NewRoomTableViewController.swift */,
- );
- name = Rooms;
- sourceTree = "<group>";
- };
- 2C5521671F7D47BA0077E587 /* Contacts */ = {
- isa = PBXGroup;
- children = (
- 2CA1CCD31F1E664C002FE6A2 /* ContactsTableViewCell.h */,
- 2CA1CCD41F1E664C002FE6A2 /* ContactsTableViewCell.m */,
- 2CA1CCD51F1E664C002FE6A2 /* ContactsTableViewCell.xib */,
- 2CA1CCCB1F181741002FE6A2 /* NCUser.h */,
- 2CA1CCCC1F181741002FE6A2 /* NCUser.m */,
- 2CA1CCCE1F1E1779002FE6A2 /* SearchTableViewController.h */,
- 2CA1CCCF1F1E1779002FE6A2 /* SearchTableViewController.m */,
- 2C7A123F2017872600864818 /* AddParticipantsTableViewController.h */,
- 2C7A12402017872600864818 /* AddParticipantsTableViewController.m */,
- 2C7A12412017872600864818 /* AddParticipantsTableViewController.xib */,
- 2CC007B220D7AE990096D91F /* ResultMultiSelectionTableViewController.h */,
- 2CC007B320D7AE990096D91F /* ResultMultiSelectionTableViewController.m */,
- 2C1ABDCC257E939600AEDFB6 /* NCContact.h */,
- 2C1ABDCD257E939600AEDFB6 /* NCContact.m */,
- 2C1ABDC4257A7CF000AEDFB6 /* NCContactsManager.h */,
- 2C1ABDC5257A7CF000AEDFB6 /* NCContactsManager.m */,
- 2C1ABDE3257F883400AEDFB6 /* ABContact.h */,
- 2C1ABDE4257F883400AEDFB6 /* ABContact.m */,
- 2CD4F6B62C11C80600ED594F /* ContactsSearchResultTableViewContoller.swift */,
- );
- name = Contacts;
- sourceTree = "<group>";
- };
- 2C5521681F7D481C0077E587 /* Login */ = {
- isa = PBXGroup;
- children = (
- 2C90E5D01EE80C870093D85A /* AuthenticationViewController.h */,
- 2C90E5D11EE80C870093D85A /* AuthenticationViewController.m */,
- 2C0574A11EDDA2E300D9E7F2 /* LoginViewController.h */,
- 2C0574A21EDDA2E300D9E7F2 /* LoginViewController.m */,
- 2C0574A31EDDA2E300D9E7F2 /* LoginViewController.xib */,
- 1FA20C89284001D80062B4F3 /* DebounceWebView.swift */,
- 1FB52E752842C75E00AC741B /* QRCodeLoginController.swift */,
- );
- name = Login;
- sourceTree = "<group>";
- };
- 2C5521691F7D48480077E587 /* Calls */ = {
- isa = PBXGroup;
- children = (
- 2C78EFA21F86FF4A008AFA74 /* CallParticipantViewCell.h */,
- 2C78EFA31F86FF4A008AFA74 /* CallParticipantViewCell.m */,
- 2C78EFA41F86FF4A008AFA74 /* CallParticipantViewCell.xib */,
- 2C78EF9D1F828C41008AFA74 /* CallViewController.h */,
- 2C78EF9E1F828C41008AFA74 /* CallViewController.m */,
- 2C78EF9F1F828C41008AFA74 /* CallViewController.xib */,
- 2C78EF9A1F826B22008AFA74 /* NCCallController.h */,
- 2C78EF9B1F826B22008AFA74 /* NCCallController.m */,
- 2C8CDD0421C2EDE8004E2997 /* AvatarBackgroundImageView.h */,
- 2C8CDD0521C2EDE8004E2997 /* AvatarBackgroundImageView.m */,
- 2C4987BB21E640E20060AC27 /* CallKitManager.h */,
- 2C4987BC21E640E20060AC27 /* CallKitManager.m */,
- 2C4DE9F021F732B40096940D /* NCAudioController.h */,
- 2C4DE9F121F732B40096940D /* NCAudioController.m */,
- 2C4446FA265D5BEF00DF1DBC /* CallConstants.h */,
- 1FA732FB2966CBB7003D2103 /* CallFlowLayout.swift */,
- 2C84BCCB29EEB9C6001BA6DA /* CallReactionView.swift */,
- 2C84BCCD29EEDCE8001BA6DA /* CallReactionView.xib */,
- 1FE94733293CE55600D6584C /* NCCameraController.swift */,
- );
- name = Calls;
- sourceTree = "<group>";
- };
- 2C55216A1F7D48850077E587 /* Settings */ = {
- isa = PBXGroup;
- children = (
- 2C2A788C2359CC8800EEB797 /* NCAppBranding.h */,
- 2C2A788D2359CC8800EEB797 /* NCAppBranding.m */,
- 2CA1CC931F014EF9002FE6A2 /* NCSettingsController.h */,
- 2CA1CC941F014EF9002FE6A2 /* NCSettingsController.m */,
- 1FDDB0E42AFD046600FBAFB7 /* NCUtils.swift */,
- DA75580E278EEA1000A48A1B /* SettingsTableViewController.swift */,
- 1F61C766285E35A6004D74D8 /* DiagnosticsTableViewController.swift */,
- 1F7625E42901B0DB00834869 /* CallsFromOldAccountViewController.swift */,
- 1F7625E62901B0E800834869 /* CallsFromOldAccountViewController.xib */,
- 2C7A1235200E0A5700864818 /* UserSettingsTableViewCell.xib */,
- DA755810278EF3EF00A48A1B /* UserSettingsTableViewCell.swift */,
- 2C78E9E125120DE500E3D4CA /* NCUserStatus.h */,
- 2C78E9E225120DE500E3D4CA /* NCUserStatus.m */,
- 1FD6F83D2B87B712004048AB /* NCUserStatusExtensions.swift */,
- 807E30752A83A90F00089D28 /* UserStatusOptionsSwiftUI.swift */,
- 80832B752A822E5100195A97 /* UserStatusSwiftUIView.swift */,
- 80832B772A823D0700195A97 /* UserStatusMessageSwiftUIView.swift */,
- DA8801A127A2DA00009EF248 /* UserProfileTableViewController.swift */,
- DA66582A27B6992F00B46B11 /* UserProfileTableViewController+AvatarSetup.swift */,
- DA66582C27B6A73800B46B11 /* UserProfileTableViewController+DelegateMethods.swift */,
- DA66582E27B6B19C00B46B11 /* UserProfileTableViewController+Actions.swift */,
- DA66583027B6B24E00B46B11 /* UserProfileTableViewController+Utils.swift */,
- DA8801A327AC52AC009EF248 /* TextInputTableViewCell.swift */,
- 2CF9CBFB26025F64002246EF /* TextInputTableViewCell.xib */,
- 2C4446EA265D25BA00DF1DBC /* NCKeyChainController.h */,
- 2C4446EB265D25BA00DF1DBC /* NCKeyChainController.m */,
- 2C444701265D641300DF1DBC /* NCUserDefaults.h */,
- 2C444702265D641300DF1DBC /* NCUserDefaults.m */,
- );
- name = Settings;
- sourceTree = "<group>";
- };
- 2C55216B1F7D48970077E587 /* Network */ = {
- isa = PBXGroup;
- children = (
- 2CA1CCA81F02D1A4002FE6A2 /* NCAPIController.h */,
- 2CA1CCA91F02D1A4002FE6A2 /* NCAPIController.m */,
- 1FB78E1E2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift */,
- 2CA1CC8F1F014354002FE6A2 /* NCConnectionController.h */,
- 2CA1CC901F014354002FE6A2 /* NCConnectionController.m */,
- 1FF4DA862C02626D00C1B952 /* NCBaseSessionManager.swift */,
- 1FF4DA812C025DB900C1B952 /* NCAPISessionManager.swift */,
- 1FF4DA8B2C0263A200C1B952 /* NCPushProxySessionManager.swift */,
- 1FF4DA902C02677C00C1B952 /* NCImageSessionManager.swift */,
- 2C5BFBE928772A9A00E75118 /* NCUnifiedSearchController.swift */,
- 1FF4DA952C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift */,
- 1FF4DAA92C0A114900C1B952 /* OcsResponse.swift */,
- );
- name = Network;
- sourceTree = "<group>";
- };
- 2C62AFA424C08845007E460A /* ShareExtension */ = {
- isa = PBXGroup;
- children = (
- 2C1ABD8325769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.h */,
- 2C1ABD8025769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.m */,
- 2C1ABD8425769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.xib */,
- 2C1ABD8125769E7D00AEDFB6 /* ShareItem.h */,
- 2C1ABD8525769E7D00AEDFB6 /* ShareItem.m */,
- 2C1ABD7F25769E7C00AEDFB6 /* ShareItemController.h */,
- 2C1ABD8225769E7D00AEDFB6 /* ShareItemController.m */,
- 2C3195BB24C1F58A0066F221 /* ShareExtension.entitlements */,
- 2C62AFAB24C08845007E460A /* Info.plist */,
- 2C62AFB524C1A449007E460A /* Share.storyboard */,
- 2C62AFB724C1A4E6007E460A /* ShareViewController.h */,
- 2C62AFB824C1A4E6007E460A /* ShareViewController.m */,
- 2C3195BF24C5E2100066F221 /* ShareTableViewCell.h */,
- 2C3195C024C5E2100066F221 /* ShareTableViewCell.m */,
- 2C3195C124C5E2100066F221 /* ShareTableViewCell.xib */,
- 1F35F8DF2AEEB9DE00044BDA /* ShareConfirmationViewController.swift */,
- 1FDDB0D82AF440DD00FBAFB7 /* BoundsChangedFlowLayout.swift */,
- );
- path = ShareExtension;
- sourceTree = "<group>";
- };
- 2C6DEAB2243CCC7F00AE8437 /* Chat cells */ = {
- isa = PBXGroup;
- children = (
- 1F4DD3EA2571C688007DC98E /* EmojiUtils.swift */,
- 1F1B50332B8E069800B0F2F4 /* BaseChatTableViewCell.swift */,
- 1F1B50372B8E070100B0F2F4 /* BaseChatTableViewCell.xib */,
- 1F1B503D2B8FB12100B0F2F4 /* BaseChatTableViewCell+Message.swift */,
- 1F1B50392B8F9E1300B0F2F4 /* BaseChatTableViewCell+File.swift */,
- 2C21446D2BB5B54D005A6537 /* BaseChatTableViewCell+Location.swift */,
- 2C04248F2CA32D45004772F6 /* BaseChatTableViewCell+Audio.swift */,
- 2C4747E52CB6710F002828F2 /* BaseChatTableViewCell+Poll.swift */,
- 2CC7159220C54D080045C789 /* ChatTableViewCell.h */,
- 2CC7159320C54D080045C789 /* ChatTableViewCell.m */,
- 1F35F9022AEEDEE800044BDA /* AutoCompletionTableViewCell.h */,
- 1F35F9032AEEDF0E00044BDA /* AutoCompletionTableViewCell.m */,
- 2C604BD7211988A700D34DCD /* SystemMessageTableViewCell.h */,
- 2C604BD8211988A700D34DCD /* SystemMessageTableViewCell.m */,
- 2C8E2A19232174C20022BFC9 /* MessageSeparatorTableViewCell.h */,
- 2C8E2A1A232174C20022BFC9 /* MessageSeparatorTableViewCell.m */,
- 1F0A1D432A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift */,
- 1F5683CE2BA7980C0023E151 /* FilePreviewImageView.swift */,
- );
- name = "Chat cells";
- sourceTree = "<group>";
- };
- 2C6DEAB3243CCCCA00AE8437 /* Chat views */ = {
- isa = PBXGroup;
- children = (
- 1F46CE2728E05ACF00E7D88E /* References */,
- 1F46CE2628E05AC100E7D88E /* Polls */,
- 1F46CE2528E05ABB00E7D88E /* Reactions */,
- 2C06BF6520AC647A0031EB46 /* DateHeaderView.h */,
- 2C06BF6620AC647A0031EB46 /* DateHeaderView.m */,
- 2C06BF6320AC64370031EB46 /* DateHeaderView.xib */,
- DA1AEFC2270F1FA90088E519 /* DateLabelCustom.swift */,
- 2CC007CC20E50B0A0096D91F /* MessageBodyTextView.h */,
- 2CC007CD20E50B0A0096D91F /* MessageBodyTextView.m */,
- 2C7381542106136000CDB8DB /* NCChatTitleView.h */,
- 2C7381552106136000CDB8DB /* NCChatTitleView.m */,
- 2C738157210613A200CDB8DB /* NCChatTitleView.xib */,
- 2CA15549208F2E5700CE8EF0 /* NCMessageTextView.h */,
- 2CA1554A208F2E5700CE8EF0 /* NCMessageTextView.m */,
- 2C6E7447238C1A0800AE396C /* QuotedMessageView.h */,
- 2C6E7448238C1A0800AE396C /* QuotedMessageView.m */,
- 2C6E74442386D33200AE396C /* ReplyMessageView.h */,
- 2C6E74452386D33200AE396C /* ReplyMessageView.m */,
- 2CA52AC92670D02800619610 /* VoiceMessageRecordingView.h */,
- 2CA52ACA2670D02800619610 /* VoiceMessageRecordingView.m */,
- 2CA52ACC2670D07900619610 /* VoiceMessageRecordingView.xib */,
- 1F66B71E29FA703B003FB168 /* TypingIndicatorView.swift */,
- 1F66B72029FA7089003FB168 /* TypingIndicatorView.xib */,
- 2C0424992CA33681004772F6 /* AudioPlayerView.swift */,
- 2C0424962CA335C4004772F6 /* AudioPlayerView.xib */,
- );
- name = "Chat views";
- sourceTree = "<group>";
- };
- 2C78EF961F7E720A008AFA74 /* WebRTC */ = {
- isa = PBXGroup;
- children = (
- 2C78EF931F7E70EB008AFA74 /* NCPeerConnection.h */,
- 2C78EF941F7E70EB008AFA74 /* NCPeerConnection.m */,
- 2C78EF971F80F81E008AFA74 /* NCSignalingController.h */,
- 2C78EF981F80F81E008AFA74 /* NCSignalingController.m */,
- 2C2E64231F3462AF00D39CE8 /* NCSignalingMessage.h */,
- 2C2E64241F3462AF00D39CE8 /* NCSignalingMessage.m */,
- 2CD5F3222142781A006B71BF /* NCExternalSignalingController.h */,
- 2CD5F3232142781A006B71BF /* NCExternalSignalingController.m */,
- 2C69323B2923ECAA00017AD2 /* WSMessage.h */,
- 2C69323C2923ECAA00017AD2 /* WSMessage.m */,
- 1F1DF83B2C5C17AF00E5EA86 /* TalkActor.swift */,
- 1F1DF8422C64006E00E5EA86 /* SignalingParticipant.swift */,
- 1F8AAC312C518759004DA20A /* SignalingSettings.swift */,
- 1F8AAC362C519577004DA20A /* TurnServer.swift */,
- 1F8AAC3B2C519689004DA20A /* StunServer.swift */,
- 1F8995B42973547700CABA33 /* WebRTCCommon.swift */,
- );
- name = WebRTC;
- sourceTree = "<group>";
- };
- 2C8A2BCA221F096200DE6D2C /* File sharing */ = {
- isa = PBXGroup;
- children = (
- 1FF4DA7D2C0237D000C1B952 /* DirectoryTableViewCell.swift */,
- 2C8A2BCD221FEEFE00DE6D2C /* DirectoryTableViewCell.xib */,
- 2C8A2BC7221F094F00DE6D2C /* DirectoryTableViewController.h */,
- 2C8A2BC8221F094F00DE6D2C /* DirectoryTableViewController.m */,
- );
- name = "File sharing";
- sourceTree = "<group>";
- };
- 2C90E5621EDDE0FB0093D85A /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 1FDDB0E82AFE8F5C00FBAFB7 /* MobileCoreServices.framework */,
- 1F90EFC225FE489B00F3FA55 /* IntentsUI.framework */,
- 2CA1CCC91F17C503002FE6A2 /* AudioToolbox.framework */,
- 2CA1CC961F016117002FE6A2 /* Security.framework */,
- 2C90E5CE1EDF23A00093D85A /* WebKit.framework */,
- 2C90E5681EDDE13A0093D85A /* UIKit.framework */,
- 2C90E5661EDDE1340093D85A /* CoreGraphics.framework */,
- 2C90E5631EDDE0FB0093D85A /* Foundation.framework */,
- 9B81BB7A4920C391CC2CACFD /* libPods-NotificationServiceExtension.a */,
- 684807120F4439797973DF73 /* libPods-ShareExtension.a */,
- 4F7C31E9D74F550EAF89931B /* libPods-NextcloudTalk.a */,
- 1FF2FD5C2AB99CCB000C9905 /* ReplayKit.framework */,
- 9A3D305FCD7BF7E727A62F35 /* libPods-BroadcastUploadExtension.a */,
- 7005E22D6C2896927FC3AEEC /* libPods-NextcloudTalkTests.a */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- 2C9B0B99217F6E3400A4752C /* Notifications */ = {
- isa = PBXGroup;
- children = (
- 1FA38C8F29A4B3C6008871B8 /* NCNotificationAction.swift */,
- 2C9B0B9A217F756B00A4752C /* NCNotification.h */,
- 2C9B0B9B217F756B00A4752C /* NCNotification.m */,
- 2CBF82AC1FC888FC00636459 /* NCPushNotification.h */,
- 2CBF82AD1FC888FC00636459 /* NCPushNotification.m */,
- 2C9B0B96217F6DBA00A4752C /* NCNotificationController.h */,
- 2C9B0B97217F6DBA00A4752C /* NCNotificationController.m */,
- 2C4446F1265D51A600DF1DBC /* NCPushNotificationsUtils.h */,
- 2C4446F2265D51A600DF1DBC /* NCPushNotificationsUtils.m */,
- );
- name = Notifications;
- sourceTree = "<group>";
- };
- 2CB302F92264775E0053078A /* SlackTextViewController */ = {
- isa = PBXGroup;
- children = (
- 2CB3039B2264775E0053078A /* Source */,
- );
- name = SlackTextViewController;
- path = ThirdParty/SlackTextViewController;
- sourceTree = "<group>";
- };
- 2CB3039B2264775E0053078A /* Source */ = {
- isa = PBXGroup;
- children = (
- 2CB3039C2264775E0053078A /* SLKInputAccessoryView.h */,
- 2CB3039D2264775E0053078A /* SLKInputAccessoryView.m */,
- 2CB3039E2264775E0053078A /* SLKTextInput+Implementation.m */,
- 2CB3039F2264775E0053078A /* SLKTextInput.h */,
- 2CB303A02264775E0053078A /* SLKTextInputbar.h */,
- 2CB303A12264775E0053078A /* SLKTextInputbar.m */,
- 2CB303A22264775E0053078A /* SLKTextView+SLKAdditions.h */,
- 2CB303A32264775E0053078A /* SLKTextView+SLKAdditions.m */,
- 2CB303A42264775E0053078A /* SLKTextView.h */,
- 2CB303A52264775E0053078A /* SLKTextView.m */,
- 2CB303A62264775E0053078A /* SLKTextViewController.h */,
- 2CB303A72264775E0053078A /* SLKTextViewController.m */,
- 2CB303A82264775E0053078A /* SLKVisibleViewProtocol.h */,
- 2CB303AB2264775E0053078A /* SLKUIConstants.h */,
- 2CB303AC2264775E0053078A /* UIResponder+SLKAdditions.h */,
- 2CB303AD2264775E0053078A /* UIResponder+SLKAdditions.m */,
- 2CB303AE2264775E0053078A /* UIScrollView+SLKAdditions.h */,
- 2CB303AF2264775E0053078A /* UIScrollView+SLKAdditions.m */,
- 2CB303B02264775E0053078A /* UIView+SLKAdditions.h */,
- 2CB303B12264775E0053078A /* UIView+SLKAdditions.m */,
- 1F66B72729FA936E003FB168 /* SLKDefaultReplyView.h */,
- 1F66B72829FA936E003FB168 /* SLKDefaultReplyView.m */,
- 1F66B72A29FA9414003FB168 /* SLKDefaultTypingIndicatorView.h */,
- 1F66B72B29FA9414003FB168 /* SLKDefaultTypingIndicatorView.m */,
- );
- path = Source;
- sourceTree = "<group>";
- };
- 2CB6ACA72638489300D3D641 /* Maps */ = {
- isa = PBXGroup;
- children = (
- 2CB6ACB926385A3800D3D641 /* ShareLocationViewController.h */,
- 2CB6ACBA26385A3800D3D641 /* ShareLocationViewController.m */,
- 2CB6ACBB26385A3800D3D641 /* ShareLocationViewController.xib */,
- 2CB6ACC826401D5100D3D641 /* GeoLocationRichObject.h */,
- 2CB6ACC926401D5100D3D641 /* GeoLocationRichObject.m */,
- 2CB6ACE62641954700D3D641 /* MapViewController.h */,
- 2CB6ACE72641954700D3D641 /* MapViewController.m */,
- 2CB6ACE82641954700D3D641 /* MapViewController.xib */,
- );
- name = Maps;
- sourceTree = "<group>";
- };
- 2CBF82B31FCC7DC100636459 /* Security */ = {
- isa = PBXGroup;
- children = (
- 2CBF82B01FCC7DBA00636459 /* CCCertificate.h */,
- 2CBF82B11FCC7DBA00636459 /* CCCertificate.m */,
- );
- name = Security;
- sourceTree = "<group>";
- };
- 2CC0015024A1F0E900A20167 /* NotificationServiceExtension */ = {
- isa = PBXGroup;
- children = (
- 2CC0015B24A1F1D700A20167 /* NotificationServiceExtension.entitlements */,
- 2CC0015124A1F0E900A20167 /* NotificationService.h */,
- 2CC0015224A1F0E900A20167 /* NotificationService.m */,
- 2CC0015424A1F0E900A20167 /* Info.plist */,
- );
- path = NotificationServiceExtension;
- sourceTree = "<group>";
- };
- 2CC1C37F29C0945600C8436B /* DRCellSlideGestureRecognizer */ = {
- isa = PBXGroup;
- children = (
- 2CC1C38029C0945600C8436B /* DRCellSlideGestureRecognizer.m */,
- 2CC1C38129C0945600C8436B /* DRCellSlideAction.h */,
- 2CC1C38229C0945600C8436B /* DRCellSlideActionView.h */,
- 2CC1C38329C0945600C8436B /* DRCellSlideGestureRecognizer.h */,
- 2CC1C38429C0945700C8436B /* DRCellSlideAction.m */,
- 2CC1C38529C0945700C8436B /* DRCellSlideActionView.m */,
- );
- name = DRCellSlideGestureRecognizer;
- path = ThirdParty/DRCellSlideGestureRecognizer/DRCellSlideGestureRecognizer;
- sourceTree = "<group>";
- };
- 2CF0679E208A2A430070A79B /* Chat */ = {
- isa = PBXGroup;
- children = (
- 2C6DEAB2243CCC7F00AE8437 /* Chat cells */,
- 2C6DEAB3243CCCCA00AE8437 /* Chat views */,
- 2CA1553F208E350300CE8EF0 /* NCChatMessage.h */,
- 2CA15540208E350300CE8EF0 /* NCChatMessage.m */,
- 1FF136142BFB74C3006A6101 /* NCChatMessage.swift */,
- 2CC32E9627F5D9BD00BB8C39 /* NCChatReaction.h */,
- 2CC32E9727F5D9BD00BB8C39 /* NCChatReaction.m */,
- 2C42ADB220B58E6300296DEA /* NCChatController.h */,
- 2C42ADB320B58E6300296DEA /* NCChatController.m */,
- 1FEDE3C5257D439500853F79 /* NCChatFileController.h */,
- 1FEDE3C4257D439500853F79 /* NCChatFileController.m */,
- 1FCE3D542C9C189D009C68A9 /* NCChatFileControllerWrapper.swift */,
- 1FF4DA7F2C023FF300C1B952 /* NCChatFileStatus.swift */,
- 2C5BFBF0288A97D800E75118 /* NCPoll.h */,
- 2C5BFBF1288A97D800E75118 /* NCPoll.m */,
- 2C43BA7421309A1000B3068A /* NCMessageParameter.h */,
- 2C43BA7521309A1000B3068A /* NCMessageParameter.m */,
- 1FEDE3CD257D43AB00853F79 /* NCMessageFileParameter.h */,
- 1FEDE3CC257D43AB00853F79 /* NCMessageFileParameter.m */,
- 2CB6ACD82641483800D3D641 /* NCMessageLocationParameter.h */,
- 2CB6ACD92641483800D3D641 /* NCMessageLocationParameter.m */,
- 2CC1FF4628183958009F7288 /* NCDeckCardParameter.h */,
- 2CC1FF4728183958009F7288 /* NCDeckCardParameter.m */,
- 1F785DDC2707865F00AC4B40 /* VoiceMessageTranscribeViewController.h */,
- 1F785DDA2707865F00AC4B40 /* VoiceMessageTranscribeViewController.m */,
- 1F785DDB2707865F00AC4B40 /* VoiceMessageTranscribeViewController.xib */,
- 2CF8AD3D2A0010FB00A4D3E6 /* MessageTranslationViewController.swift */,
- 2CF8AD3E2A0010FB00A4D3E6 /* MessageTranslationViewController.xib */,
- 1F5A24322ADA77DA009939FE /* InputbarViewController.swift */,
- 1FAB2E822AC9EC3F001214EB /* BaseChatViewController.swift */,
- 1FAB2E842ACB482B001214EB /* ChatViewController.swift */,
- 1F35F8FA2AEEDBC600044BDA /* ChatViewControllerExtension.swift */,
- 2C4230F62B207AB00013E1FA /* ContextChatViewController.swift */,
- 1F0B0A712BA264540073FF8D /* MentionSuggestion.swift */,
- );
- name = Chat;
- sourceTree = "<group>";
- };
- 926177EBCFB97EA1273DEDB9 /* Pods */ = {
- isa = PBXGroup;
- children = (
- D6DF51D976DC0F681FF83F7B /* Pods-NotificationServiceExtension.debug.xcconfig */,
- D86091EC1125C3057B9A299B /* Pods-NotificationServiceExtension.release.xcconfig */,
- 584BF273DF09DE4D5EE0DA0F /* Pods-ShareExtension.debug.xcconfig */,
- 95D756208A81284B975853EC /* Pods-ShareExtension.release.xcconfig */,
- 4202C63030F0FFBB1C16D75E /* Pods-NextcloudTalk.debug.xcconfig */,
- 4D4C7BF2F97F47B0D9094618 /* Pods-NextcloudTalk.release.xcconfig */,
- 82CD0527E04B844CAD762ADE /* Pods-BroadcastUploadExtension.debug.xcconfig */,
- A8F95DE6635ABC1E64CA8E4A /* Pods-BroadcastUploadExtension.release.xcconfig */,
- 342600BABD1AD1FCA48B5E59 /* Pods-NextcloudTalkTests.debug.xcconfig */,
- B7874918820589BF8FD69BED /* Pods-NextcloudTalkTests.release.xcconfig */,
- );
- name = Pods;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXNativeTarget section */
- 1F6D8C2F2B2E3756004376B8 /* NextcloudTalkTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 1F6D8C362B2E3756004376B8 /* Build configuration list for PBXNativeTarget "NextcloudTalkTests" */;
- buildPhases = (
- 3A811BF7A761836E61C82B80 /* [CP] Check Pods Manifest.lock */,
- 1F6D8C2C2B2E3756004376B8 /* Sources */,
- 1F6D8C2D2B2E3756004376B8 /* Frameworks */,
- 1F6D8C2E2B2E3756004376B8 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 1F6D8C352B2E3756004376B8 /* PBXTargetDependency */,
- );
- name = NextcloudTalkTests;
- packageProductDependencies = (
- 1F759C082B63B9A7000534AB /* SDWebImage */,
- 1F759C0A2B63B9A7000534AB /* SDWebImageSVGKitPlugin */,
- 1F759C0D2B63B9BA000534AB /* WebRTC */,
- 1F759C0F2B63B9D9000534AB /* OpenSSL */,
- 1F759C132B63B9D9000534AB /* QRCodeReader */,
- 1F759C152B63B9D9000534AB /* NextcloudKit */,
- 1F759C172B63B9D9000534AB /* SwiftyAttributes */,
- 1F759C192B63B9D9000534AB /* CDMarkdownKit */,
- 1F759C1B2B63B9D9000534AB /* TOCropViewController */,
- 1F759C1D2B63B9D9000534AB /* SwiftUIIntrospect */,
- 1F759C332B63CBAA000534AB /* Realm */,
- );
- productName = NextcloudTalkTests;
- productReference = 1F6D8C302B2E3756004376B8 /* NextcloudTalkTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- 1FD8AD892A3A162100787C16 /* NextcloudTalkUITests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 1FD8AD922A3A162100787C16 /* Build configuration list for PBXNativeTarget "NextcloudTalkUITests" */;
- buildPhases = (
- 1FD8AD862A3A162100787C16 /* Sources */,
- 1FD8AD872A3A162100787C16 /* Frameworks */,
- 1FD8AD882A3A162100787C16 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 1FD8AD912A3A162100787C16 /* PBXTargetDependency */,
- );
- name = NextcloudTalkUITests;
- productName = NextcloudTalkUITests;
- productReference = 1FD8AD8A2A3A162100787C16 /* NextcloudTalkUITests.xctest */;
- productType = "com.apple.product-type.bundle.ui-testing";
- };
- 1FF2FD5A2AB99CCB000C9905 /* BroadcastUploadExtension */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 1FF2FD782AB99CCC000C9905 /* Build configuration list for PBXNativeTarget "BroadcastUploadExtension" */;
- buildPhases = (
- CBF95D503F715CE6BE80B113 /* [CP] Check Pods Manifest.lock */,
- 1FF2FD572AB99CCB000C9905 /* Sources */,
- 1FF2FD582AB99CCB000C9905 /* Frameworks */,
- 1FF2FD592AB99CCB000C9905 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = BroadcastUploadExtension;
- packageProductDependencies = (
- 1F77A5EE2AB9A41E007B6037 /* SDWebImage */,
- 1F77A5F02AB9A423007B6037 /* SDWebImageSVGKitPlugin */,
- 1F77A5FF2AB9A50D007B6037 /* NextcloudKit */,
- 1F77A60B2AB9A5BE007B6037 /* CDMarkdownKit */,
- 1F759C312B63CBA5000534AB /* Realm */,
- 1FF136192BFBC841006A6101 /* SwiftyAttributes */,
- );
- productName = BroadcastUploadExtension;
- productReference = 1FF2FD5B2AB99CCB000C9905 /* BroadcastUploadExtension.appex */;
- productType = "com.apple.product-type.app-extension";
- };
- 2C05747C1EDD9E8E00D9E7F2 /* NextcloudTalk */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 2C0574971EDD9E8E00D9E7F2 /* Build configuration list for PBXNativeTarget "NextcloudTalk" */;
- buildPhases = (
- 902A7A3EC0BDCC947AEF3EBF /* [CP] Check Pods Manifest.lock */,
- 2C0574791EDD9E8E00D9E7F2 /* Sources */,
- 2C05747A1EDD9E8E00D9E7F2 /* Frameworks */,
- 2C05747B1EDD9E8E00D9E7F2 /* Resources */,
- A3C686B1B84C4462F93441AB /* [CP] Copy Pods Resources */,
- 2C8035721F950BA800501B5C /* ShellScript */,
- 2C5E72BC27957FCA004ED7FB /* ShellScript */,
- C21100AE204AFC213989DA96 /* [CP] Embed Pods Frameworks */,
- 5EE5ACC62CF48BCA004D7EDB /* Embed Foundation Extensions */,
- );
- buildRules = (
- );
- dependencies = (
- 5EE5ACC52CF48BCA004D7EDB /* PBXTargetDependency */,
- 5EE5ACC92CF48BDA004D7EDB /* PBXTargetDependency */,
- 5EE5ACCC2CF48BDF004D7EDB /* PBXTargetDependency */,
- );
- name = NextcloudTalk;
- packageProductDependencies = (
- 2CCCD21C2835088F00F076CE /* OpenSSL */,
- 1F468E7528DCC6C60099597B /* Dynamic */,
- 1F628CB92842BAAF0083A425 /* QRCodeReader */,
- 1F7AE07729142CA1009F72AD /* NextcloudKit */,
- 1F66B72E29FABD01003FB168 /* SwiftyAttributes */,
- 1F45A1152A01D6EC005FE87D /* SDWebImage */,
- 1F45A1202A01D8BA005FE87D /* SDWebImageSVGKitPlugin */,
- 1F0ECBF42A68274400921E90 /* CDMarkdownKit */,
- 1FAB2E7C2AC99326001214EB /* TOCropViewController */,
- 1FAB2E872ACD44D0001214EB /* WebRTC */,
- 80CDF8C32A8E098900CB57AE /* SwiftUIIntrospect */,
- 1F759C2B2B63CB93000534AB /* Realm */,
- 1FCE3D522C9B5918009C68A9 /* SwiftyGif */,
- );
- productName = NextcloudTalk;
- productReference = 2C05747D1EDD9E8E00D9E7F2 /* NextcloudTalk.app */;
- productType = "com.apple.product-type.application";
- };
- 2C62AFA224C08845007E460A /* ShareExtension */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 2C62AFB124C08845007E460A /* Build configuration list for PBXNativeTarget "ShareExtension" */;
- buildPhases = (
- 25F3EB565BD21EF2FF15F197 /* [CP] Check Pods Manifest.lock */,
- 2C62AF9F24C08845007E460A /* Sources */,
- 2C62AFA024C08845007E460A /* Frameworks */,
- 2C62AFA124C08845007E460A /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = ShareExtension;
- packageProductDependencies = (
- 1F7AE07B29142E6A009F72AD /* NextcloudKit */,
- 1F45A1192A01D70E005FE87D /* SDWebImage */,
- 1F45A1242A01D8F7005FE87D /* SDWebImageSVGKitPlugin */,
- 1F0ECBF82A68277C00921E90 /* CDMarkdownKit */,
- 1FAB2E7E2AC99367001214EB /* TOCropViewController */,
- 1F35F8F42AEEDA9800044BDA /* SwiftyAttributes */,
- 1F759C2F2B63CBA0000534AB /* Realm */,
- );
- productName = ShareExtension;
- productReference = 2C62AFA324C08845007E460A /* ShareExtension.appex */;
- productType = "com.apple.product-type.app-extension";
- };
- 2CC0014E24A1F0E900A20167 /* NotificationServiceExtension */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 2CC0015A24A1F0E900A20167 /* Build configuration list for PBXNativeTarget "NotificationServiceExtension" */;
- buildPhases = (
- E75968B5C5288222BC8FCA99 /* [CP] Check Pods Manifest.lock */,
- 2CC0014B24A1F0E900A20167 /* Sources */,
- 2CC0014C24A1F0E900A20167 /* Frameworks */,
- 2CC0014D24A1F0E900A20167 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = NotificationServiceExtension;
- packageProductDependencies = (
- 1F7AE07929142E62009F72AD /* NextcloudKit */,
- 1F45A11D2A01D719005FE87D /* SDWebImage */,
- 1F45A1222A01D8F1005FE87D /* SDWebImageSVGKitPlugin */,
- 1F0ECBF62A68277000921E90 /* CDMarkdownKit */,
- 1F759C2D2B63CB9A000534AB /* Realm */,
- 1FF1361B2BFBC86A006A6101 /* SwiftyAttributes */,
- );
- productName = NotificationServiceExtension;
- productReference = 2CC0014F24A1F0E900A20167 /* NotificationServiceExtension.appex */;
- productType = "com.apple.product-type.app-extension";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- 2C0574751EDD9E8E00D9E7F2 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastSwiftUpdateCheck = 1510;
- LastUpgradeCheck = 1320;
- ORGANIZATIONNAME = "";
- TargetAttributes = {
- 1F6D8C2F2B2E3756004376B8 = {
- CreatedOnToolsVersion = 15.1;
- LastSwiftMigration = 1520;
- TestTargetID = 2C05747C1EDD9E8E00D9E7F2;
- };
- 1FD8AD892A3A162100787C16 = {
- CreatedOnToolsVersion = 14.3;
- TestTargetID = 2C05747C1EDD9E8E00D9E7F2;
- };
- 1FF2FD5A2AB99CCB000C9905 = {
- CreatedOnToolsVersion = 14.3.1;
- };
- 2C05747C1EDD9E8E00D9E7F2 = {
- CreatedOnToolsVersion = 8.3.2;
- LastSwiftMigration = 1220;
- ProvisioningStyle = Automatic;
- SystemCapabilities = {
- com.apple.ApplicationGroups.iOS = {
- enabled = 1;
- };
- com.apple.BackgroundModes = {
- enabled = 1;
- };
- com.apple.Keychain = {
- enabled = 0;
- };
- com.apple.Push = {
- enabled = 1;
- };
- };
- };
- 2C62AFA224C08845007E460A = {
- CreatedOnToolsVersion = 11.5;
- LastSwiftMigration = 1220;
- ProvisioningStyle = Automatic;
- };
- 2CC0014E24A1F0E900A20167 = {
- CreatedOnToolsVersion = 11.5;
- LastSwiftMigration = 1220;
- ProvisioningStyle = Automatic;
- };
- };
- };
- buildConfigurationList = 2C0574781EDD9E8E00D9E7F2 /* Build configuration list for PBXProject "NextcloudTalk" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 0;
- knownRegions = (
- English,
- en,
- Base,
- es,
- de,
- it,
- tr,
- sl,
- hr,
- pl,
- "pt-BR",
- nl,
- fr,
- el,
- "zh-Hans",
- gl,
- cs,
- hu,
- ko,
- eu,
- ja,
- ar,
- "nb-NO",
- ga,
- sv,
- sr,
- );
- mainGroup = 2C0574741EDD9E8E00D9E7F2;
- packageReferences = (
- 2CCCD21B2835088F00F076CE /* XCRemoteSwiftPackageReference "OpenSSL" */,
- 1F468E7428DCC6C60099597B /* XCRemoteSwiftPackageReference "Dynamic" */,
- 1F628CB82842BAAF0083A425 /* XCRemoteSwiftPackageReference "QRCodeReader" */,
- 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */,
- 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */,
- 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */,
- 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */,
- 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */,
- 1FAB2E7B2AC99326001214EB /* XCRemoteSwiftPackageReference "TOCropViewController" */,
- 1FAB2E862ACD44CF001214EB /* XCRemoteSwiftPackageReference "talk-clients-webrtc" */,
- 80CDF8C22A8E098900CB57AE /* XCRemoteSwiftPackageReference "swiftui-introspect" */,
- 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */,
- 1FCE3D512C9B5918009C68A9 /* XCRemoteSwiftPackageReference "SwiftyGif" */,
- );
- productRefGroup = 2C05747E1EDD9E8E00D9E7F2 /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 2C05747C1EDD9E8E00D9E7F2 /* NextcloudTalk */,
- 2CC0014E24A1F0E900A20167 /* NotificationServiceExtension */,
- 2C62AFA224C08845007E460A /* ShareExtension */,
- 1FF2FD5A2AB99CCB000C9905 /* BroadcastUploadExtension */,
- 1FD8AD892A3A162100787C16 /* NextcloudTalkUITests */,
- 1F6D8C2F2B2E3756004376B8 /* NextcloudTalkTests */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXResourcesBuildPhase section */
- 1F6D8C2E2B2E3756004376B8 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 1FD8AD882A3A162100787C16 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 1FF2FD592AB99CCB000C9905 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1FE7DE332BBC8FA00040EE12 /* PrivacyInfo.xcprivacy in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2C05747B1EDD9E8E00D9E7F2 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2CB052A12BF2297500191349 /* connecting.mp3 in Resources */,
- 2C84BCCE29EEDCE8001BA6DA /* CallReactionView.xib in Resources */,
- 2CC32E9327F45AE000BB8C39 /* ReactionsViewCell.xib in Resources */,
- 2C330372255E6EBC00BDB4E4 /* InfoPlist.strings in Resources */,
- 2C78EFA11F828C41008AFA74 /* CallViewController.xib in Resources */,
- 2C3780C5210F4A26003F9AE8 /* HeaderWithButton.xib in Resources */,
- 1FCE3D592C9C4D21009C68A9 /* ReferenceGiphyView.xib in Resources */,
- 2C7F47AA20289B9600081CC7 /* Localizable.strings in Resources */,
- 2CB997C62A052449003C41AC /* EmojiAvatarPickerViewController.xib in Resources */,
- 2C0574A51EDDA2E300D9E7F2 /* LoginViewController.xib in Resources */,
- 1F46CE2B28E05B3C00E7D88E /* ReferenceDefaultView.xib in Resources */,
- 1F98DF9E28E7485000E05174 /* ReferenceDeckView.xib in Resources */,
- 1F66B72129FA7089003FB168 /* TypingIndicatorView.xib in Resources */,
- 2C738158210613A200CDB8DB /* NCChatTitleView.xib in Resources */,
- 2CA52ACD2670D07900619610 /* VoiceMessageRecordingView.xib in Resources */,
- 2C8A2BCF221FEEFE00DE6D2C /* DirectoryTableViewCell.xib in Resources */,
- 2CC007C620D90AE50096D91F /* RoomNameTableViewCell.xib in Resources */,
- 2C78EFA61F86FF4A008AFA74 /* CallParticipantViewCell.xib in Resources */,
- 2C98F77D216231D3001A6A73 /* RoomTableViewCell.xib in Resources */,
- 1F7625E72901B0E800834869 /* CallsFromOldAccountViewController.xib in Resources */,
- 2CF9CBFF26025F65002246EF /* TextInputTableViewCell.xib in Resources */,
- 1F24B5A428E0649200654457 /* ReferenceGithubView.xib in Resources */,
- 2C0424982CA335C4004772F6 /* AudioPlayerView.xib in Resources */,
- 2CC1FF4528147F11009F7288 /* RoomSharedItemsTableViewController.xib in Resources */,
- 2C06BF6420AC64370031EB46 /* DateHeaderView.xib in Resources */,
- 2C440D1220EA4A770005F9BB /* RoomInfoTableViewController.xib in Resources */,
- 2C7A1237200E0A5700864818 /* UserSettingsTableViewCell.xib in Resources */,
- 2C1D13A3253760EE00EC0533 /* LaunchScreen.xib in Resources */,
- 1FB7B99C2BF0DF360093CE98 /* BannedActorCell.xib in Resources */,
- 2C4747E22CB58FD2002828F2 /* PollMessageView.xib in Resources */,
- 2CA1CCAC1F067F35002FE6A2 /* Images.xcassets in Resources */,
- 2CA1CCD71F1E664C002FE6A2 /* ContactsTableViewCell.xib in Resources */,
- 2C05748E1EDD9E8E00D9E7F2 /* Main.storyboard in Resources */,
- 1F785DDE2707865F00AC4B40 /* VoiceMessageTranscribeViewController.xib in Resources */,
- 2C4CDCCD269618240023F403 /* RoomDescriptionTableViewCell.xib in Resources */,
- 1FFF41642C70938700162F4D /* ReferenceZammadView.xib in Resources */,
- 2CB6ACBF26385A3800D3D641 /* ShareLocationViewController.xib in Resources */,
- 2C5BFBFC2891598A00E75118 /* PollResultTableViewCell.xib in Resources */,
- 1FADECDA2B8227B1007AD94B /* FederationInvitationCell.xib in Resources */,
- 1FEC459C2A02BCAE00A636AA /* ReferenceGithubPermalinkView.xib in Resources */,
- 1FE0C56C2A0531200083576A /* ReferenceTalkView.xib in Resources */,
- 1F1B50382B8E070100B0F2F4 /* BaseChatTableViewCell.xib in Resources */,
- 2C5BFBF828902E3700E75118 /* PollFooterView.xib in Resources */,
- 1FDE7C9C28DE14B000CB718E /* ReferenceView.xib in Resources */,
- 2C444707265E59B500DF1DBC /* ShareConfirmationCollectionViewCell.xib in Resources */,
- 2CC7158920B837140045C789 /* PlaceholderView.xib in Resources */,
- 1F1C0D8729AFB88800D17C6D /* VLCKitVideoViewController.xib in Resources */,
- 2CF8AD402A0010FB00A4D3E6 /* MessageTranslationViewController.xib in Resources */,
- 1FE7DE362BBC8FA10040EE12 /* PrivacyInfo.xcprivacy in Resources */,
- 2C477C1628B79D980044DEB4 /* Localizable.stringsdict in Resources */,
- 2CB6ACEC2641954700D3D641 /* MapViewController.xib in Resources */,
- 1FE7DE322BB459B10040EE12 /* RoomInvitationViewCell.xib in Resources */,
- 2C4CDCD226A84E550023F403 /* ShareTableViewCell.xib in Resources */,
- 1FEC45A52A02F92B00A636AA /* GithubPermalinkViewController.xib in Resources */,
- 2C7A12432017872600864818 /* AddParticipantsTableViewController.xib in Resources */,
- 1F3C41A129EDAC8800F58435 /* RoomAvatarInfoTableViewController.xib in Resources */,
- 1F3C41A529EDF0B800F58435 /* AvatarEditView.xib in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2C62AFA124C08845007E460A /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1F35F8E42AEEBBE500044BDA /* NCChatTitleView.xib in Resources */,
- 2C3195BC24C599130066F221 /* PlaceholderView.xib in Resources */,
- 2C1ABD8825769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.xib in Resources */,
- 2C3195C324C5E2100066F221 /* ShareTableViewCell.xib in Resources */,
- 2C3195BE24C5A7410066F221 /* Images.xcassets in Resources */,
- 1F59446625B8EDF5002AD65F /* Localizable.strings in Resources */,
- 2CB6ACEE2641954700D3D641 /* MapViewController.xib in Resources */,
- 2C62AFB624C1A449007E460A /* Share.storyboard in Resources */,
- 1FE7DE342BBC8FA10040EE12 /* PrivacyInfo.xcprivacy in Resources */,
- 1F35F8F22AEEC25E00044BDA /* TypingIndicatorView.xib in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2CC0014D24A1F0E900A20167 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1F53819129195FA4003DA6B7 /* Images.xcassets in Resources */,
- 1F59446225B8EDF5002AD65F /* Localizable.strings in Resources */,
- 1FE7DE352BBC8FA10040EE12 /* PrivacyInfo.xcprivacy in Resources */,
- 2CB6ACED2641954700D3D641 /* MapViewController.xib in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXShellScriptBuildPhase section */
- 25F3EB565BD21EF2FF15F197 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-ShareExtension-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- 2C5E72BC27957FCA004ED7FB /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- };
- 2C8035721F950BA800501B5C /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- };
- 3A811BF7A761836E61C82B80 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-NextcloudTalkTests-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- 902A7A3EC0BDCC947AEF3EBF /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-NextcloudTalk-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- A3C686B1B84C4462F93441AB /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-NextcloudTalk/Pods-NextcloudTalk-resources.sh",
- "${PODS_ROOT}/DateTools/DateTools/DateTools/DateTools.bundle",
- "${PODS_ROOT}/MaterialComponents/components/ActivityIndicator/src/MaterialActivityIndicator.bundle",
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/DateTools.bundle",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialActivityIndicator.bundle",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NextcloudTalk/Pods-NextcloudTalk-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- C21100AE204AFC213989DA96 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-NextcloudTalk/Pods-NextcloudTalk-frameworks.sh",
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/MobileVLCKit/MobileVLCKit.framework/MobileVLCKit",
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MobileVLCKit.framework",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NextcloudTalk/Pods-NextcloudTalk-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- CBF95D503F715CE6BE80B113 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-BroadcastUploadExtension-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- E75968B5C5288222BC8FCA99 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-NotificationServiceExtension-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- /* End PBXShellScriptBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 1F6D8C2C2B2E3756004376B8 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1FF4DAA62C08D81D00C1B952 /* UnitNCChatMessageTest.swift in Sources */,
- 1F6629FA2C17700E001C6C0E /* IntegrationRoomsManagerTest.swift in Sources */,
- 1FB7B9852BE2EE020093CE98 /* UnitChatViewControllerTest.swift in Sources */,
- 1F6D8C4B2B2F5B61004376B8 /* TestBase.swift in Sources */,
- 1F6D8C332B2E3756004376B8 /* IntegrationRoomTest.swift in Sources */,
- 1FBC3BE92B61BD09003909E0 /* TestBaseRealm.swift in Sources */,
- 1F6D8C4D2B2F8FE5004376B8 /* IntegrationChatTest.swift in Sources */,
- 1FB7B9892BE442400093CE98 /* UnitBaseChatTableViewCellTest.swift in Sources */,
- 1F5CDAE72B3B05110040ECC0 /* UnitColorGeneratorTest.swift in Sources */,
- 1F1DF8412C63C25900E5EA86 /* UnitNCDatabaseManager.swift in Sources */,
- 1FF4DAA82C08DE3A00C1B952 /* UnitNCRoomsManagerTest.swift in Sources */,
- 1F1B0F252BD94A0D003FD766 /* UnitDarwinCenterTest.swift in Sources */,
- 1F6D8C412B2F26D5004376B8 /* TestConstants.swift in Sources */,
- 1FB7B9872BE441450093CE98 /* UIViewExtensions.swift in Sources */,
- 1FBC3BE52B61ACD5003909E0 /* UnitBaseChatViewControllerTest.swift in Sources */,
- 1F8AAC622C596308004DA20A /* UnitSignalingSettings.swift in Sources */,
- 1F0B0A772BA26BE10073FF8D /* UnitMentionSuggestionTest.swift in Sources */,
- 1F6D8C432B2F26EE004376B8 /* Helpers.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 1FD8AD862A3A162100787C16 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1FD8AE6B2A3A216300787C16 /* UIRoomTest.swift in Sources */,
- 1F6D8C3D2B2F23C4004376B8 /* Helpers.swift in Sources */,
- 1F6D8C442B2F2791004376B8 /* TestConstants.swift in Sources */,
- 1F6D8C492B2F2FB7004376B8 /* AAAALoginTest.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 1FF2FD572AB99CCB000C9905 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1F1B504B2B90CF0C00B0F2F4 /* FederatedCapabilities.m in Sources */,
- 1F77A5F22AB9A436007B6037 /* EmojiUtils.swift in Sources */,
- 1F77A5FA2AB9A4DF007B6037 /* NCMessageLocationParameter.m in Sources */,
- 1F77A6022AB9A532007B6037 /* CCCertificate.m in Sources */,
- 1F77A5EC2AB9A405007B6037 /* NCChatBlock.m in Sources */,
- 1F77A5F42AB9A4B2007B6037 /* ABContact.m in Sources */,
- 1F77A6012AB9A51D007B6037 /* NCNotificationAction.swift in Sources */,
- 1F77A6242ABA0003007B6037 /* SampleHandler.swift in Sources */,
- 1FB7B9902BF0CDF80093CE98 /* BannedActor.swift in Sources */,
- 1F77A5F32AB9A43B007B6037 /* SwiftMarkdownObjCBridge.swift in Sources */,
- 1FF4DA832C025DBF00C1B952 /* NCAPISessionManager.swift in Sources */,
- 1FDFC9502BA50B9100670DF4 /* UIFontExtension.swift in Sources */,
- 1F1DF8462C64006E00E5EA86 /* SignalingParticipant.swift in Sources */,
- 1FF2FD832AB99F3B000C9905 /* NCAppBranding.m in Sources */,
- 1F77A5F82AB9A4CD007B6037 /* NCDeckCardParameter.m in Sources */,
- 1F77A5FD2AB9A4F3007B6037 /* ServerCapabilities.m in Sources */,
- 1FF4DA892C0262BB00C1B952 /* NCBaseSessionManager.swift in Sources */,
- 1F8AAC352C518B8B004DA20A /* SignalingSettings.swift in Sources */,
- 1F77A6062AB9A581007B6037 /* NCKeyChainController.m in Sources */,
- 1F0B0A732BA265300073FF8D /* MentionSuggestion.swift in Sources */,
- 1F77A5FB2AB9A4E6007B6037 /* NCMessageParameter.m in Sources */,
- 1F77A5F62AB9A4BF007B6037 /* NCChatReaction.m in Sources */,
- 1FF4DA922C02677F00C1B952 /* NCImageSessionManager.swift in Sources */,
- 1FB78E272B6AE8C900B0D69D /* FederationInvitation.swift in Sources */,
- 1F77A5FE2AB9A4F9007B6037 /* TalkAccount.m in Sources */,
- 1FF136132BFB6FCD006A6101 /* RLMSupport.swift in Sources */,
- 1F77A5ED2AB9A408007B6037 /* NCChatMessage.m in Sources */,
- 1F77A5EB2AB9A3EE007B6037 /* BGTaskHelper.swift in Sources */,
- 1FF136182BFB74D0006A6101 /* NCChatMessage.swift in Sources */,
- 1F77A5FC2AB9A4ED007B6037 /* NCRoom.m in Sources */,
- 1F77A62E2ABAFCC0007B6037 /* DarwinNotificationCenter.swift in Sources */,
- 1F77A60D2AB9A5CC007B6037 /* NCPoll.m in Sources */,
- 1F77A6032AB9A56D007B6037 /* NotificationCenterNotifications.m in Sources */,
- 1F77A60A2AB9A5AE007B6037 /* NCUser.m in Sources */,
- 1F8AAC3F2C519689004DA20A /* StunServer.swift in Sources */,
- 1FF4DA992C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */,
- 1F1DF83F2C5C17AF00E5EA86 /* TalkActor.swift in Sources */,
- 1F1B504A2B90CF0800B0F2F4 /* TalkCapabilities.m in Sources */,
- 2C6955122B0CE1A10070F6E1 /* NCUtils.swift in Sources */,
- 1FF4DA8D2C0264B100C1B952 /* NCPushProxySessionManager.swift in Sources */,
- 1FF2FD802AB99E4D000C9905 /* SampleUploader.swift in Sources */,
- 1F77A5F52AB9A4B9007B6037 /* NCAPIController.m in Sources */,
- 1F77A5F92AB9A4D9007B6037 /* NCMessageFileParameter.m in Sources */,
- 1FF2FD852AB99F51000C9905 /* NCUserStatus.m in Sources */,
- 1F8AAC3A2C519577004DA20A /* TurnServer.swift in Sources */,
- 1FB78E202B6ADBB600B0D69D /* NCAPIControllerExtensions.swift in Sources */,
- 1FF136122BFB4F8C006A6101 /* NCRoom.swift in Sources */,
- 1FF2FD7F2AB99E4D000C9905 /* Atomic.swift in Sources */,
- 1F77A5F72AB9A4C5007B6037 /* NCContact.m in Sources */,
- 1FF2FD822AB99E4D000C9905 /* SocketConnection.swift in Sources */,
- 1F77A6082AB9A58D007B6037 /* NCRoomParticipants.m in Sources */,
- 1FF4DAAD2C0A114900C1B952 /* OcsResponse.swift in Sources */,
- 1FF2FD862AB99F5B000C9905 /* NCDatabaseManager.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2C0574791EDD9E8E00D9E7F2 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2C444703265D641300DF1DBC /* NCUserDefaults.m in Sources */,
- 2C4747E92CB67177002828F2 /* PollMessageView.swift in Sources */,
- 2CD80F482A4304AD00919057 /* OpenConversationsTableViewController.swift in Sources */,
- 1FEC459E2A02BCB900A636AA /* ReferenceGithubPermalinkView.swift in Sources */,
- 2CC1C38729C0945700C8436B /* DRCellSlideAction.m in Sources */,
- 1FEDE3C6257D439500853F79 /* NCChatFileController.m in Sources */,
- 1FEDE3CE257D43AB00853F79 /* NCMessageFileParameter.m in Sources */,
- 2C4446DD2658158000DF1DBC /* NCChatBlock.m in Sources */,
- 1FDCC3F029ECB4CE00DEB39B /* AvatarButton.swift in Sources */,
- 2C06BF6720AC647A0031EB46 /* DateHeaderView.m in Sources */,
- 2CB6ACDA2641483800D3D641 /* NCMessageLocationParameter.m in Sources */,
- 1F61C767285E35A6004D74D8 /* DiagnosticsTableViewController.swift in Sources */,
- 1F1B0F472BE047CE003FD766 /* StandardInteractionController.swift in Sources */,
- 2CD5F3242142781A006B71BF /* NCExternalSignalingController.m in Sources */,
- 2C0574851EDD9E8E00D9E7F2 /* AppDelegate.m in Sources */,
- 2C4987BD21E640E20060AC27 /* CallKitManager.m in Sources */,
- 1F1B0F4C2BE18FF3003FD766 /* CustomPresentableNavigationController.swift in Sources */,
- 2C4446F3265D51A600DF1DBC /* NCPushNotificationsUtils.m in Sources */,
- 2C0424902CA32D45004772F6 /* BaseChatTableViewCell+Audio.swift in Sources */,
- 2C1ABDE5257F883400AEDFB6 /* ABContact.m in Sources */,
- 2C5BFBEF288A947900E75118 /* PollVotingView.swift in Sources */,
- 1FAB2EF02AD1EAA3001214EB /* RLMSupport.swift in Sources */,
- 1F1B50342B8E069800B0F2F4 /* BaseChatTableViewCell.swift in Sources */,
- 2C1EF36B25505DCE007C9768 /* NCNavigationController.m in Sources */,
- DA755811278EF3EF00A48A1B /* UserSettingsTableViewCell.swift in Sources */,
- 1FA38C9029A4B3C6008871B8 /* NCNotificationAction.swift in Sources */,
- 2C44B4D127FF05A000AD1C86 /* ReactionsSummaryView.swift in Sources */,
- 2CD4F6B72C11C80600ED594F /* ContactsSearchResultTableViewContoller.swift in Sources */,
- 1FB7B99A2BF0DF290093CE98 /* BannedActorCell.swift in Sources */,
- 1F35F8FB2AEEDBC600044BDA /* ChatViewControllerExtension.swift in Sources */,
- 2CC007B420D7AE990096D91F /* ResultMultiSelectionTableViewController.m in Sources */,
- 2CA1CCC31F166CC5002FE6A2 /* NCRoom.m in Sources */,
- 2C06BF5D20A89F510031EB46 /* NCRoomsManager.m in Sources */,
- 2CB6ACCA26401D5200D3D641 /* GeoLocationRichObject.m in Sources */,
- 2C78EF9C1F826B22008AFA74 /* NCCallController.m in Sources */,
- 1F1B50442B9095D100B0F2F4 /* FederatedCapabilities.m in Sources */,
- 1FF4DAA22C0338D000C1B952 /* RoomDescriptionTableViewCell.swift in Sources */,
- 2C5BFBF628902E0300E75118 /* PollFooterView.swift in Sources */,
- 2C4D7D761F30F7B600FF4A0D /* ARDUtilities.m in Sources */,
- 1FF4DA7E2C0237D000C1B952 /* DirectoryTableViewCell.swift in Sources */,
- 2CB6ACE92641954700D3D641 /* MapViewController.m in Sources */,
- 1FF1360F2BFB4F8C006A6101 /* NCRoom.swift in Sources */,
- 1F8995B32970644C00CABA33 /* ColorGenerator.swift in Sources */,
- 1F1B0F2C2BDBB3AC003FD766 /* NCMediaViewerViewController.swift in Sources */,
- 1FB7B98E2BF0CBA60093CE98 /* BannedActor.swift in Sources */,
- 1F1B503A2B8F9E1300B0F2F4 /* BaseChatTableViewCell+File.swift in Sources */,
- 1F5813F928EB23EF00318FC3 /* NCSplitViewPlaceholderViewController.swift in Sources */,
- 2CC32E9227F45AE000BB8C39 /* ReactionsViewCell.swift in Sources */,
- 1F1B0F452BE047CE003FD766 /* ModalPresentationController.swift in Sources */,
- 2CBF82AE1FC888FC00636459 /* NCPushNotification.m in Sources */,
- 2CC7159420C54D080045C789 /* ChatTableViewCell.m in Sources */,
- 1F8AAC322C518759004DA20A /* SignalingSettings.swift in Sources */,
- 1F1B0F272BDA61C5003FD766 /* AllocationTracker.swift in Sources */,
- 2CA1CCAA1F02D1A4002FE6A2 /* NCAPIController.m in Sources */,
- 1F1B0F302BDBC9D6003FD766 /* NCMediaViewerPageViewController.swift in Sources */,
- DA66582B27B6992F00B46B11 /* UserProfileTableViewController+AvatarSetup.swift in Sources */,
- 2C69323D2923ECAA00017AD2 /* WSMessage.m in Sources */,
- 2C3780C3210F49DC003F9AE8 /* HeaderWithButton.m in Sources */,
- 1FB7B9952BF0DF1C0093CE98 /* BannedActorTableViewController.swift in Sources */,
- 2C1ABDC6257A7CF000AEDFB6 /* NCContactsManager.m in Sources */,
- 2C5BFBEA28772A9A00E75118 /* NCUnifiedSearchController.swift in Sources */,
- 1F4DD3EB2571C688007DC98E /* EmojiUtils.swift in Sources */,
- 2C4D7D731F309DA500FF4A0D /* RTCSessionDescription+JSON.m in Sources */,
- 2CB3041C2264775E0053078A /* SLKTextView+SLKAdditions.m in Sources */,
- 2C57CD8428C2255000B22E03 /* PollCreationViewController.swift in Sources */,
- 1F77A6272ABA0CD9007B6037 /* NCScreensharingController.m in Sources */,
- 2CEDA88C26F492610044552B /* NSMutableAttributedString+Extensions.swift in Sources */,
- 2C5BFBFB2891598A00E75118 /* PollResultTableViewCell.swift in Sources */,
- 1FA20C8A284001D80062B4F3 /* DebounceWebView.swift in Sources */,
- 1F1B0F322BDC57E3003FD766 /* UIPageViewControllerExtension.swift in Sources */,
- 2C4CDCD126A84E500023F403 /* ShareTableViewCell.m in Sources */,
- 2C8CDD0621C2EDE8004E2997 /* AvatarBackgroundImageView.m in Sources */,
- 2C9B0B9C217F756B00A4752C /* NCNotification.m in Sources */,
- 2C2D7A172B8C9C0000642373 /* RoomCreationTableViewController.swift in Sources */,
- 1F8995B52973547700CABA33 /* WebRTCCommon.swift in Sources */,
- 1F8AAC3C2C519689004DA20A /* StunServer.swift in Sources */,
- 2C2145682BF6B8E900470C0C /* NewRoomTableViewController.swift in Sources */,
- 1F1B503E2B8FB12100B0F2F4 /* BaseChatTableViewCell+Message.swift in Sources */,
- DA66583127B6B24E00B46B11 /* UserProfileTableViewController+Utils.swift in Sources */,
- 1F1B0F422BE047CE003FD766 /* UIViewController+Transitions.swift in Sources */,
- 1F90EFBC25FE39F800F3FA55 /* NCIntentController.m in Sources */,
- 2C1ABD9925769F7500AEDFB6 /* ShareItem.m in Sources */,
- 2C2E64251F3462AF00D39CE8 /* NCSignalingMessage.m in Sources */,
- 2CA1554B208F2E5700CE8EF0 /* NCMessageTextView.m in Sources */,
- 2C4D7D721F309DA500FF4A0D /* RTCIceCandidate+JSON.m in Sources */,
- 1F77A62F2ABAFCEB007B6037 /* DarwinNotificationCenter.swift in Sources */,
- 2C9E6CCE1F6F34F000399B7A /* ARDSDPUtils.m in Sources */,
- 2C06330F2046CC8B0043481A /* NCUserInterfaceController.m in Sources */,
- 2CB304222264775E0053078A /* UIView+SLKAdditions.m in Sources */,
- 1F11FB7229C07B04001E21E7 /* NCZoomableView.swift in Sources */,
- 2C4446F0265D454200DF1DBC /* NotificationCenterNotifications.m in Sources */,
- 2C6955152B0CE1A30070F6E1 /* NCUtils.swift in Sources */,
- 1FB78E1F2B6ADBAA00B0D69D /* NCAPIControllerExtensions.swift in Sources */,
- 1F3D3B22255F109E00230DAE /* BarButtonItemWithActivity.m in Sources */,
- 2C0574821EDD9E8E00D9E7F2 /* main.m in Sources */,
- 1FDE7C9A28DE14A200CB718E /* ReferenceView.swift in Sources */,
- 2CC32E9827F5D9BD00BB8C39 /* NCChatReaction.m in Sources */,
- 2C40281522832EED0000DDFC /* NCDatabaseManager.m in Sources */,
- 1F1B0F362BDD8B9C003FD766 /* NCActivityIndicator.swift in Sources */,
- 1F3C419F29EDAC7D00F58435 /* RoomAvatarInfoTableViewController.swift in Sources */,
- 1FF4DAAA2C0A114900C1B952 /* OcsResponse.swift in Sources */,
- 1FAB2E852ACB482B001214EB /* ChatViewController.swift in Sources */,
- 1F5813F828EB23EF00318FC3 /* NCSplitViewController.swift in Sources */,
- 2C5BFBFE2891C3DF00E75118 /* PollResultsDetailsViewController.swift in Sources */,
- 1F8AAC372C519577004DA20A /* TurnServer.swift in Sources */,
- 2CA1CCA41F025F64002FE6A2 /* RoomsTableViewController.m in Sources */,
- 2CB3041A2264775E0053078A /* SLKTextInput+Implementation.m in Sources */,
- 2C90E5D31EE80C870093D85A /* AuthenticationViewController.m in Sources */,
- 2C604BD9211988A700D34DCD /* SystemMessageTableViewCell.m in Sources */,
- 1F1B50472B90CDF800B0F2F4 /* TalkCapabilities.m in Sources */,
- 2CA1CCD01F1E1779002FE6A2 /* SearchTableViewController.m in Sources */,
- 1F1C0D8929AFB89900D17C6D /* VLCKitVideoViewController.swift in Sources */,
- 2C9B0B98217F6DBA00A4752C /* NCNotificationController.m in Sources */,
- 2C36A04A261487BC0026F04A /* DetailedOptionsSelectorTableViewController.m in Sources */,
- 2CA52ACB2670D02800619610 /* VoiceMessageRecordingView.m in Sources */,
- 2C7381562106136000CDB8DB /* NCChatTitleView.m in Sources */,
- 1FF4DA872C02626D00C1B952 /* NCBaseSessionManager.swift in Sources */,
- 1FADECD62B821E24007AD94B /* FederationInvitationTableViewController.swift in Sources */,
- 2C98F77921622445001A6A73 /* RoomSearchTableViewController.m in Sources */,
- 2CB3041B2264775E0053078A /* SLKTextInputbar.m in Sources */,
- 1F1B0F432BE047CE003FD766 /* ModalTransitionAnimator.swift in Sources */,
- 2C78E9E325120DE600E3D4CA /* NCUserStatus.m in Sources */,
- 2C0574A41EDDA2E300D9E7F2 /* LoginViewController.m in Sources */,
- 2C78EFA51F86FF4A008AFA74 /* CallParticipantViewCell.m in Sources */,
- 1F66B72C29FA9414003FB168 /* SLKDefaultTypingIndicatorView.m in Sources */,
- 1F46CE2928E05B3200E7D88E /* ReferenceDefaultView.swift in Sources */,
- 2C444706265E59B100DF1DBC /* ShareConfirmationCollectionViewCell.m in Sources */,
- 1FCE3D552C9C189D009C68A9 /* NCChatFileControllerWrapper.swift in Sources */,
- 2C78EF991F80F81E008AFA74 /* NCSignalingController.m in Sources */,
- 1FDB47F82C9C7E3F00D6F423 /* NCDatabaseManager.swift in Sources */,
- 2CB304202264775E0053078A /* UIResponder+SLKAdditions.m in Sources */,
- 2C8E2A1B232174C20022BFC9 /* MessageSeparatorTableViewCell.m in Sources */,
- 1FAB2EEE2AD1BC1B001214EB /* UIControlExtensions.swift in Sources */,
- 1F7625E52901B0DB00834869 /* CallsFromOldAccountViewController.swift in Sources */,
- 2CB3041E2264775E0053078A /* SLKTextViewController.m in Sources */,
- 2CC007CE20E50B0A0096D91F /* MessageBodyTextView.m in Sources */,
- 2CBF82B21FCC7DBA00636459 /* CCCertificate.m in Sources */,
- 2CC1FF4828183958009F7288 /* NCDeckCardParameter.m in Sources */,
- 2C3780BD2107209C003F9AE8 /* NCRoomParticipants.m in Sources */,
- 1F5683CF2BA7980C0023E151 /* FilePreviewImageView.swift in Sources */,
- 1F0B0A722BA264540073FF8D /* MentionSuggestion.swift in Sources */,
- 2CA1CCCD1F181741002FE6A2 /* NCUser.m in Sources */,
- 1F77A6162AB9B161007B6037 /* ScreenCaptureController.m in Sources */,
- 2CF8AD3F2A0010FB00A4D3E6 /* MessageTranslationViewController.swift in Sources */,
- 2C21446E2BB5B54D005A6537 /* BaseChatTableViewCell+Location.swift in Sources */,
- 2C4230F72B207AB00013E1FA /* ContextChatViewController.swift in Sources */,
- 2CBD0D5A2C8770A40013C089 /* UIImageExtension.swift in Sources */,
- 1F90DA0429E9A28E00E81E3D /* AvatarManager.swift in Sources */,
- 1F1DF8432C64006E00E5EA86 /* SignalingParticipant.swift in Sources */,
- 2CC1FF4428147F11009F7288 /* RoomSharedItemsTableViewController.swift in Sources */,
- 2CC1C38629C0945700C8436B /* DRCellSlideGestureRecognizer.m in Sources */,
- 1FF4DA9B2C032AAC00C1B952 /* RoomTableViewCell.swift in Sources */,
- 1FB52E762842C75E00AC741B /* QRCodeLoginController.swift in Sources */,
- 1F5A24332ADA77DA009939FE /* InputbarViewController.swift in Sources */,
- 807E30762A83A90F00089D28 /* UserStatusOptionsSwiftUI.swift in Sources */,
- 2C4446D8265814D100DF1DBC /* ServerCapabilities.m in Sources */,
- DA66582D27B6A73800B46B11 /* UserProfileTableViewController+DelegateMethods.swift in Sources */,
- 1F371A372A7B921A006CBFB3 /* DatePickerTextField.swift in Sources */,
- 1F1B0F482BE047CE003FD766 /* CustomPresentable.swift in Sources */,
- 1FE0C56E2A0531270083576A /* ReferenceTalkView.swift in Sources */,
- 1FE7DE302BB4598F0040EE12 /* RoomInvitationViewCell.swift in Sources */,
- 1F77A6222AB9EB06007B6037 /* SocketConnection.m in Sources */,
- 1FF136152BFB74C3006A6101 /* NCChatMessage.swift in Sources */,
- 1FDB47F62C9C71CE00D6F423 /* TalkAccount.swift in Sources */,
- 2CC1C38829C0945700C8436B /* DRCellSlideActionView.m in Sources */,
- 1FA732FC2966CBB7003D2103 /* CallFlowLayout.swift in Sources */,
- 2C78EF951F7E70EB008AFA74 /* NCPeerConnection.m in Sources */,
- 2C06BF6C20AEB0030031EB46 /* RoundedNumberView.m in Sources */,
- 2C78EFA01F828C41008AFA74 /* CallViewController.m in Sources */,
- 1FDDB0DB2AF440E100FBAFB7 /* BoundsChangedFlowLayout.swift in Sources */,
- DA1AEFC3270F1FA90088E519 /* DateLabelCustom.swift in Sources */,
- 2C6E74462386D33200AE396C /* ReplyMessageView.m in Sources */,
- DA8801A227A2DA00009EF248 /* UserProfileTableViewController.swift in Sources */,
- 1F0A1D442A5F1FA800A25433 /* SwiftMarkdownObjCBridge.swift in Sources */,
- 2C16A82C28E7284D00EDE523 /* NCButton.swift in Sources */,
- DA75580F278EEA1000A48A1B /* SettingsTableViewController.swift in Sources */,
- 1FF4DA962C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */,
- 2CB3041D2264775E0053078A /* SLKTextView.m in Sources */,
- 1F1B0F4A2BE047D5003FD766 /* OneWayPanGestureRecognizer.swift in Sources */,
- 1FE94734293CE55600D6584C /* NCCameraController.swift in Sources */,
- 2CB304212264775E0053078A /* UIScrollView+SLKAdditions.m in Sources */,
- 2C4446D32658147900DF1DBC /* TalkAccount.m in Sources */,
- 2CA1CCD61F1E664C002FE6A2 /* ContactsTableViewCell.m in Sources */,
- 1F77A6172AB9B161007B6037 /* ScreenCapturer.m in Sources */,
- 1FCE3D572C9C4D18009C68A9 /* ReferenceGiphyView.swift in Sources */,
- 1FFF41622C70937B00162F4D /* ReferenceZammadView.swift in Sources */,
- 1F98DF9C28E7484700E05174 /* ReferenceDeckView.swift in Sources */,
- DA66582F27B6B19C00B46B11 /* UserProfileTableViewController+Actions.swift in Sources */,
- 2C6E7449238C1A0800AE396C /* QuotedMessageView.m in Sources */,
- 2C1ABDCE257E939600AEDFB6 /* NCContact.m in Sources */,
- 2C7A12422017872600864818 /* AddParticipantsTableViewController.m in Sources */,
- 2C84BCCC29EEB9C6001BA6DA /* CallReactionView.swift in Sources */,
- 2C43BA7621309A1000B3068A /* NCMessageParameter.m in Sources */,
- 2CC32E8D27F4540E00BB8C39 /* ReactionsView.swift in Sources */,
- 2C4DE9F221F732B40096940D /* NCAudioController.m in Sources */,
- 80832B782A823D0700195A97 /* UserStatusMessageSwiftUIView.swift in Sources */,
- 2C8A2BC9221F094F00DE6D2C /* DirectoryTableViewController.m in Sources */,
- 1FADECD82B82269E007AD94B /* FederationInvitationCell.swift in Sources */,
- 1F61C76B285F65E1004D74D8 /* SimpleTableViewController.swift in Sources */,
- 2CB997C52A052449003C41AC /* EmojiAvatarPickerViewController.swift in Sources */,
- 1F1B0F442BE047CE003FD766 /* ModalTransitionManager.swift in Sources */,
- 2C5BFBF2288A97D800E75118 /* NCPoll.m in Sources */,
- 1F66B71F29FA703B003FB168 /* TypingIndicatorView.swift in Sources */,
- 1F35F9042AEEDF0E00044BDA /* AutoCompletionTableViewCell.m in Sources */,
- 2C42ADB420B58E6300296DEA /* NCChatController.m in Sources */,
- 2C4CDCD026A84AEA0023F403 /* ShareViewController.m in Sources */,
- 1FD9182928C55A73009092AB /* BGTaskHelper.swift in Sources */,
- 1F66B72929FA936E003FB168 /* SLKDefaultReplyView.m in Sources */,
- 1F785DDD2707865F00AC4B40 /* VoiceMessageTranscribeViewController.m in Sources */,
- 2C4446EC265D25BA00DF1DBC /* NCKeyChainController.m in Sources */,
- 1FD6F83C2B825069004048AB /* NCRoomsManagerExtensions.swift in Sources */,
- 1FF4DA802C023FF300C1B952 /* NCChatFileStatus.swift in Sources */,
- DA8801A427AC52AC009EF248 /* TextInputTableViewCell.swift in Sources */,
- 2C2A788E2359CC8800EEB797 /* NCAppBranding.m in Sources */,
- 1F3C41A329EDF05700F58435 /* AvatarEditView.swift in Sources */,
- 2CA15541208E350300CE8EF0 /* NCChatMessage.m in Sources */,
- 2CB304192264775E0053078A /* SLKInputAccessoryView.m in Sources */,
- 2CA1CC911F014354002FE6A2 /* NCConnectionController.m in Sources */,
- 1FB6678F28CE381300D29F8D /* SubtitleTableViewCell.swift in Sources */,
- 1FF4DA912C02677C00C1B952 /* NCImageSessionManager.swift in Sources */,
- 1F24B5A228E0648600654457 /* ReferenceGithubView.swift in Sources */,
- 2C4D7D691F2F7DBC00FF4A0D /* ARDSettingsModel.m in Sources */,
- 1FF4DA8C2C0263A200C1B952 /* NCPushProxySessionManager.swift in Sources */,
- 2CB6ACBC26385A3800D3D641 /* ShareLocationViewController.m in Sources */,
- 2C04249B2CA33681004772F6 /* AudioPlayerView.swift in Sources */,
- 1F1B0F462BE047CE003FD766 /* InteractionControlling.swift in Sources */,
- 1FDCC3D429EBF6E700DEB39B /* AvatarImageView.swift in Sources */,
- 1FB78E262B6AE5A600B0D69D /* FederationInvitation.swift in Sources */,
- 1FDFC94D2BA50B9100670DF4 /* UIFontExtension.swift in Sources */,
- 1F468E7828DCC7310099597B /* EmojiTextField.swift in Sources */,
- 80832B762A822E5100195A97 /* UserStatusSwiftUIView.swift in Sources */,
- 1FF4DA822C025DB900C1B952 /* NCAPISessionManager.swift in Sources */,
- 1F1DF83C2C5C17AF00E5EA86 /* TalkActor.swift in Sources */,
- 2C4747E62CB6711F002828F2 /* BaseChatTableViewCell+Poll.swift in Sources */,
- 2C444708265E59BC00DF1DBC /* ShareItemController.m in Sources */,
- 2CA1CC951F014EF9002FE6A2 /* NCSettingsController.m in Sources */,
- 2C440D1120EA4A770005F9BB /* RoomInfoTableViewController.m in Sources */,
- 1FAB2E832AC9EC3F001214EB /* BaseChatViewController.swift in Sources */,
- 2C4D7D631F2F7C2C00FF4A0D /* ARDCaptureController.m in Sources */,
- 2C4D7D6A1F2F7DBC00FF4A0D /* ARDSettingsStore.m in Sources */,
- 1F35F8E02AEEB9DE00044BDA /* ShareConfirmationViewController.swift in Sources */,
- 1FF4DAA02C03351E00C1B952 /* RoomNameTableViewCell.swift in Sources */,
- 2C9200C32474262C0050084F /* UIBarButtonItem+Badge.m in Sources */,
- 1FD6F83E2B87B712004048AB /* NCUserStatusExtensions.swift in Sources */,
- 1FEC45A32A02F92700A636AA /* GithubPermalinkViewController.swift in Sources */,
- 2CC7158C20B8394A0045C789 /* PlaceholderView.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2C62AF9F24C08845007E460A /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1F4DD3ED2571C688007DC98E /* EmojiUtils.swift in Sources */,
- 1F35F8EB2AEEBC1100044BDA /* UIResponder+SLKAdditions.m in Sources */,
- 2C62B02424C1BDCF007E460A /* NCAppBranding.m in Sources */,
- 2C1ABD8625769E7D00AEDFB6 /* ShareConfirmationCollectionViewCell.m in Sources */,
- 1F35F90B2AEEE76C00044BDA /* ReplyMessageView.m in Sources */,
- 1F1C999E2909846400EACF02 /* BGTaskHelper.swift in Sources */,
- 1F35F8F12AEEC25B00044BDA /* TypingIndicatorView.swift in Sources */,
- 2C62AFFD24C1BDA5007E460A /* NCMessageParameter.m in Sources */,
- 1F35F8EC2AEEBC1400044BDA /* UIScrollView+SLKAdditions.m in Sources */,
- 1FF136172BFB74CF006A6101 /* NCChatMessage.swift in Sources */,
- 1FF4DA8A2C0262BB00C1B952 /* NCBaseSessionManager.swift in Sources */,
- 2C62B00C24C1BDC1007E460A /* NCNotification.m in Sources */,
- 1F8AAC3E2C519689004DA20A /* StunServer.swift in Sources */,
- 1F1C0D7F29A7F33600D17C6D /* NCNotificationAction.swift in Sources */,
- 1F35F8E62AEEBC0300044BDA /* SLKTextInput+Implementation.m in Sources */,
- 1FF4DA982C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */,
- 1F35F8E72AEEBC0600044BDA /* SLKTextInputbar.m in Sources */,
- 1F35F8E52AEEBC0100044BDA /* SLKInputAccessoryView.m in Sources */,
- 1F35F8E92AEEBC0C00044BDA /* SLKTextView.m in Sources */,
- 2C4446FC265D5C5800DF1DBC /* NCRoomParticipants.m in Sources */,
- 2CB6ACDC2641483800D3D641 /* NCMessageLocationParameter.m in Sources */,
- 1F35F8E82AEEBC0800044BDA /* SLKTextView+SLKAdditions.m in Sources */,
- 1F35F9052AEEDF0E00044BDA /* AutoCompletionTableViewCell.m in Sources */,
- 2C1ABD8925769E7D00AEDFB6 /* ShareItem.m in Sources */,
- 1F35F90A2AEEE76A00044BDA /* QuotedMessageView.m in Sources */,
- 2C62B02E24C1BDD7007E460A /* PlaceholderView.m in Sources */,
- 2C62B01024C1BDC5007E460A /* NCRoom.m in Sources */,
- 1FDCC3ED29EC7E6700DEB39B /* AvatarImageView.swift in Sources */,
- 1F35F8E32AEEBBE000044BDA /* NCChatTitleView.m in Sources */,
- 1FDCC3EE29EC7E8500DEB39B /* AvatarManager.swift in Sources */,
- 1F0B0A742BA265310073FF8D /* MentionSuggestion.swift in Sources */,
- 2C62B00D24C1BDC1007E460A /* NCPushNotification.m in Sources */,
- 1F1B50492B90CF0800B0F2F4 /* TalkCapabilities.m in Sources */,
- 1F1DF83E2C5C17AF00E5EA86 /* TalkActor.swift in Sources */,
- 1FB7B9912BF0CDF80093CE98 /* BannedActor.swift in Sources */,
- 2C62B01C24C1BDC9007E460A /* CCCertificate.m in Sources */,
- 2C4446F9265D5A0700DF1DBC /* NotificationCenterNotifications.m in Sources */,
- 1F35F8ED2AEEBC1600044BDA /* UIView+SLKAdditions.m in Sources */,
- 2C1ABD8725769E7D00AEDFB6 /* ShareItemController.m in Sources */,
- 1FDFC94F2BA50B9100670DF4 /* UIFontExtension.swift in Sources */,
- 1F35F8EA2AEEBC0E00044BDA /* SLKTextViewController.m in Sources */,
- 2C6955132B0CE1A20070F6E1 /* NCUtils.swift in Sources */,
- 1F8AAC342C518B8A004DA20A /* SignalingSettings.swift in Sources */,
- 2C62AFFF24C1BDAA007E460A /* NCUser.m in Sources */,
- 1FAB2EF22AD1EAA3001214EB /* RLMSupport.swift in Sources */,
- 1FB78E212B6ADBB700B0D69D /* NCAPIControllerExtensions.swift in Sources */,
- 2C62B00724C1BDBD007E460A /* NCAPIController.m in Sources */,
- 2C1ABDD0257E939600AEDFB6 /* NCContact.m in Sources */,
- 2C4446FE265D5DFA00DF1DBC /* ABContact.m in Sources */,
- 1F35F8EF2AEEBC1A00044BDA /* SLKDefaultReplyView.m in Sources */,
- 1F35F8E22AEEBAF900044BDA /* InputbarViewController.swift in Sources */,
- 1F35F8E12AEEB9DE00044BDA /* ShareConfirmationViewController.swift in Sources */,
- 1F90EFBE25FE39F800F3FA55 /* NCIntentController.m in Sources */,
- 1FF4DA842C025DC000C1B952 /* NCAPISessionManager.swift in Sources */,
- 1F1DF8452C64006E00E5EA86 /* SignalingParticipant.swift in Sources */,
- 2C3195C224C5E2100066F221 /* ShareTableViewCell.m in Sources */,
- 2CC1FF4A2818395F009F7288 /* NCDeckCardParameter.m in Sources */,
- 1FF136112BFB4F8C006A6101 /* NCRoom.swift in Sources */,
- 2C4446DA265814D100DF1DBC /* ServerCapabilities.m in Sources */,
- 1FF4DA932C02678000C1B952 /* NCImageSessionManager.swift in Sources */,
- 2C444705265D641300DF1DBC /* NCUserDefaults.m in Sources */,
- 1FF4DA8E2C0264B200C1B952 /* NCPushProxySessionManager.swift in Sources */,
- 2C4446F5265D583200DF1DBC /* NCKeyChainController.m in Sources */,
- 1FDDB0D92AF440DD00FBAFB7 /* BoundsChangedFlowLayout.swift in Sources */,
- 2C62AFFA24C1BDA5007E460A /* NCChatMessage.m in Sources */,
- 1FC940BA2A5F21FD00FFFADE /* SwiftMarkdownObjCBridge.swift in Sources */,
- 2C4446D52658147900DF1DBC /* TalkAccount.m in Sources */,
- 1F35F9062AEEE3C400044BDA /* NCMessageTextView.m in Sources */,
- 2C1EF36D25505DCE007C9768 /* NCNavigationController.m in Sources */,
- 1F35F8F02AEEBC1D00044BDA /* SLKDefaultTypingIndicatorView.m in Sources */,
- 1F35F8FC2AEEDBC600044BDA /* ChatViewControllerExtension.swift in Sources */,
- 1FEDE3D0257D43AB00853F79 /* NCMessageFileParameter.m in Sources */,
- 2C62AFB924C1A4E6007E460A /* ShareViewController.m in Sources */,
- 1F8AAC392C519577004DA20A /* TurnServer.swift in Sources */,
- 1F35F8F32AEEC29A00044BDA /* AvatarButton.swift in Sources */,
- 2C4446DF2658158000DF1DBC /* NCChatBlock.m in Sources */,
- 1FF4DAAC2C0A114900C1B952 /* OcsResponse.swift in Sources */,
- 1F1B504C2B90CF0C00B0F2F4 /* FederatedCapabilities.m in Sources */,
- 1FB78E282B6AE8C900B0D69D /* FederationInvitation.swift in Sources */,
- 2CC32E9A27F5DADB00BB8C39 /* NCChatReaction.m in Sources */,
- 2C62AFBB24C1B7B1007E460A /* NCDatabaseManager.m in Sources */,
- 2C5BFBF4288AA37F00E75118 /* NCPoll.m in Sources */,
- 1F35F9072AEEE3EC00044BDA /* NCUserStatus.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2CC0014B24A1F0E900A20167 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2C1ABDCF257E939600AEDFB6 /* NCContact.m in Sources */,
- 2CC001DC24A37AD400A20167 /* NCAppBranding.m in Sources */,
- 2C4446D42658147900DF1DBC /* TalkAccount.m in Sources */,
- 1FDCC3E329EC787400DEB39B /* AvatarManager.swift in Sources */,
- 2CC0015324A1F0E900A20167 /* NotificationService.m in Sources */,
- 1FF4DA852C025DC000C1B952 /* NCAPISessionManager.swift in Sources */,
- 1FEDE3CF257D43AB00853F79 /* NCMessageFileParameter.m in Sources */,
- 1FB78E222B6ADBB700B0D69D /* NCAPIControllerExtensions.swift in Sources */,
- 1F1C999D2909846400EACF02 /* BGTaskHelper.swift in Sources */,
- 1FAB2EF12AD1EAA3001214EB /* RLMSupport.swift in Sources */,
- 1FDFC94E2BA50B9100670DF4 /* UIFontExtension.swift in Sources */,
- 2C4446F4265D51A600DF1DBC /* NCPushNotificationsUtils.m in Sources */,
- 1FA38C9129A4B3C6008871B8 /* NCNotificationAction.swift in Sources */,
- 1F1DF83D2C5C17AF00E5EA86 /* TalkActor.swift in Sources */,
- 1F1B504D2B90CF0C00B0F2F4 /* FederatedCapabilities.m in Sources */,
- 2C4446DE2658158000DF1DBC /* NCChatBlock.m in Sources */,
- 2C5BFBF3288AA37F00E75118 /* NCPoll.m in Sources */,
- 2C4446D9265814D100DF1DBC /* ServerCapabilities.m in Sources */,
- 2CC001CE24A37ACA00A20167 /* NCRoom.m in Sources */,
- 1FF136162BFB74CF006A6101 /* NCChatMessage.swift in Sources */,
- 1FB7B9922BF0CDF90093CE98 /* BannedActor.swift in Sources */,
- 1F8AAC382C519577004DA20A /* TurnServer.swift in Sources */,
- 2CC001C124A37AC500A20167 /* NCNotification.m in Sources */,
- 2C4446FD265D5DFA00DF1DBC /* ABContact.m in Sources */,
- 1F1DF8442C64006E00E5EA86 /* SignalingParticipant.swift in Sources */,
- 1F8AAC3D2C519689004DA20A /* StunServer.swift in Sources */,
- 2C4446F8265D5A0700DF1DBC /* NotificationCenterNotifications.m in Sources */,
- 2C6955142B0CE1A20070F6E1 /* NCUtils.swift in Sources */,
- 1FF4DA942C02678000C1B952 /* NCImageSessionManager.swift in Sources */,
- 1F0B0A752BA265310073FF8D /* MentionSuggestion.swift in Sources */,
- 1FC940B92A5F21FC00FFFADE /* SwiftMarkdownObjCBridge.swift in Sources */,
- 1FF4DA882C0262BA00C1B952 /* NCBaseSessionManager.swift in Sources */,
- 1F8AAC332C518B8A004DA20A /* SignalingSettings.swift in Sources */,
- 2CB6ACDB2641483800D3D641 /* NCMessageLocationParameter.m in Sources */,
- 2C4446FB265D5C5700DF1DBC /* NCRoomParticipants.m in Sources */,
- 2CC1FF492818395E009F7288 /* NCDeckCardParameter.m in Sources */,
- 2CC001C224A37AC500A20167 /* NCPushNotification.m in Sources */,
- 1FF4DA972C0327FF00C1B952 /* NCWebImageDownloaderOperation.swift in Sources */,
- 1FF4DAAB2C0A114900C1B952 /* OcsResponse.swift in Sources */,
- 1F90EFBD25FE39F800F3FA55 /* NCIntentController.m in Sources */,
- 2CC001DB24A37AD000A20167 /* CCCertificate.m in Sources */,
- 1F4DD3EC2571C688007DC98E /* EmojiUtils.swift in Sources */,
- 2C4446ED265D25BA00DF1DBC /* NCKeyChainController.m in Sources */,
- 1F1B50482B90CF0800B0F2F4 /* TalkCapabilities.m in Sources */,
- 2CC0016724A25BE100A20167 /* NCChatMessage.m in Sources */,
- 1FF4DA8F2C0264B200C1B952 /* NCPushProxySessionManager.swift in Sources */,
- 2CC0016324A25B7400A20167 /* NCDatabaseManager.m in Sources */,
- 1FF136102BFB4F8C006A6101 /* NCRoom.swift in Sources */,
- 2CC0016924A25C3400A20167 /* NCMessageParameter.m in Sources */,
- 1FB78E292B6AE8CA00B0D69D /* FederationInvitation.swift in Sources */,
- 2C444704265D641300DF1DBC /* NCUserDefaults.m in Sources */,
- 2CC001B724A37A9A00A20167 /* NCUser.m in Sources */,
- 2CC0016124A25B5500A20167 /* NCAPIController.m in Sources */,
- 2CC32E9927F5DADA00BB8C39 /* NCChatReaction.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXTargetDependency section */
- 1F6D8C352B2E3756004376B8 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 2C05747C1EDD9E8E00D9E7F2 /* NextcloudTalk */;
- targetProxy = 1F6D8C342B2E3756004376B8 /* PBXContainerItemProxy */;
- };
- 1FD8AD912A3A162100787C16 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 2C05747C1EDD9E8E00D9E7F2 /* NextcloudTalk */;
- targetProxy = 1FD8AD902A3A162100787C16 /* PBXContainerItemProxy */;
- };
- 5EE5ACC52CF48BCA004D7EDB /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 1FF2FD5A2AB99CCB000C9905 /* BroadcastUploadExtension */;
- targetProxy = 5EE5ACC42CF48BCA004D7EDB /* PBXContainerItemProxy */;
- };
- 5EE5ACC92CF48BDA004D7EDB /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 2CC0014E24A1F0E900A20167 /* NotificationServiceExtension */;
- targetProxy = 5EE5ACC82CF48BDA004D7EDB /* PBXContainerItemProxy */;
- };
- 5EE5ACCC2CF48BDF004D7EDB /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 2C62AFA224C08845007E460A /* ShareExtension */;
- targetProxy = 5EE5ACCB2CF48BDF004D7EDB /* PBXContainerItemProxy */;
- };
- /* End PBXTargetDependency section */
- /* Begin PBXVariantGroup section */
- 2C05748C1EDD9E8E00D9E7F2 /* Main.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- 2C05748D1EDD9E8E00D9E7F2 /* Base */,
- );
- name = Main.storyboard;
- sourceTree = "<group>";
- };
- 2C1D13A1253760EE00EC0533 /* LaunchScreen.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 2C1D13A2253760EE00EC0533 /* Base */,
- );
- name = LaunchScreen.xib;
- sourceTree = "<group>";
- };
- 2C330374255E6EBC00BDB4E4 /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 2C330373255E6EBC00BDB4E4 /* en */,
- 2CA80EDC256C1249006BA449 /* es */,
- 2CA80EDE256C1296006BA449 /* de */,
- 2CA80EE0256C12E7006BA449 /* it */,
- 2C604A2B25E4556E00F23615 /* tr */,
- 2C604A2D25E455AC00F23615 /* sl */,
- 2C604A2F25E455C500F23615 /* hr */,
- 2C604A3125E455D900F23615 /* pl */,
- 2C604A3325E455ED00F23615 /* pt-BR */,
- 2C604A3925E4568400F23615 /* nl */,
- 2C604A3B25E4569300F23615 /* fr */,
- 2C604A3D25E4569F00F23615 /* el */,
- 2C604A4125E45A9400F23615 /* zh-Hans */,
- 2C604A4325E45BAE00F23615 /* gl */,
- 2C928BD3268A06BB00729332 /* cs */,
- 2C928BD5268A0AAD00729332 /* hu */,
- 2C928BD7268A0B2800729332 /* ko */,
- 2C928BD9268A0BC000729332 /* eu */,
- 2C4CDCD426AF16650023F403 /* ar */,
- 1F21A0622C77863500ED8C0C /* nb-NO */,
- 1F21A0652C77865D00ED8C0C /* ga */,
- 1F21A06A2C77868000ED8C0C /* sv */,
- 1F21A06B2C77869600ED8C0C /* sr */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
- 2C477C1828B79D980044DEB4 /* Localizable.stringsdict */ = {
- isa = PBXVariantGroup;
- children = (
- 2C477C1728B79D980044DEB4 /* en */,
- 2CEA990828B8B5780029216A /* de */,
- 2CB2B24D28BCB9D900A9D606 /* cs */,
- 2CB2B24E28BCB9E800A9D606 /* hu */,
- 2CB2B24F28BCBABC00A9D606 /* pl */,
- 2CB2B25128BF957100A9D606 /* tr */,
- 2C57CD8228C204C600B22E03 /* es */,
- 2C57CD8528CB3FAF00B22E03 /* eu */,
- 2C67905128D35BEB00762744 /* sl */,
- 1F21A0642C77863500ED8C0C /* nb-NO */,
- 1F21A0662C77865D00ED8C0C /* ga */,
- 1F21A0682C77868000ED8C0C /* sv */,
- 1F21A06D2C77869600ED8C0C /* sr */,
- );
- name = Localizable.stringsdict;
- sourceTree = "<group>";
- };
- 2C7F47AC20289B9600081CC7 /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 2C7F47AB20289B9600081CC7 /* en */,
- 2CA80EDB256C1249006BA449 /* es */,
- 2CA80EDD256C1296006BA449 /* de */,
- 2CA80EDF256C12E7006BA449 /* it */,
- 2C604A2A25E4556E00F23615 /* tr */,
- 2C604A2C25E455AC00F23615 /* sl */,
- 2C604A2E25E455C500F23615 /* hr */,
- 2C604A3025E455D900F23615 /* pl */,
- 2C604A3225E455ED00F23615 /* pt-BR */,
- 2C604A3825E4568400F23615 /* nl */,
- 2C604A3A25E4569300F23615 /* fr */,
- 2C604A3C25E4569F00F23615 /* el */,
- 2C604A4025E45A9400F23615 /* zh-Hans */,
- 2C604A4225E45BAE00F23615 /* gl */,
- 2C928BD2268A06BB00729332 /* cs */,
- 2C928BD4268A0AAD00729332 /* hu */,
- 2C928BD6268A0B2800729332 /* ko */,
- 2C928BD8268A0BC000729332 /* eu */,
- 2C928BDA268A103600729332 /* ja */,
- 2C4CDCD326AF16650023F403 /* ar */,
- 1F21A0632C77863500ED8C0C /* nb-NO */,
- 1F21A0672C77865D00ED8C0C /* ga */,
- 1F21A0692C77868000ED8C0C /* sv */,
- 1F21A06C2C77869600ED8C0C /* sr */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
- /* End PBXVariantGroup section */
- /* Begin XCBuildConfiguration section */
- 1F6D8C372B2E3756004376B8 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 342600BABD1AD1FCA48B5E59 /* Pods-NextcloudTalkTests.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = L8PXSNYX82;
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
- GCC_C_LANGUAGE_STANDARD = gnu17;
- GENERATE_INFOPLIST_FILE = YES;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/Headers/Public\"",
- "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
- "\"${PODS_ROOT}/Headers/Public/DateTools\"",
- "\"${PODS_ROOT}/Headers/Public/GoogleToolboxForMac\"",
- "\"${PODS_ROOT}/Headers/Public/GoogleWebRTC\"",
- "\"${PODS_ROOT}/Headers/Public/Protobuf\"",
- "\"${PODS_ROOT}/Headers/Public/nanopb\"",
- "\"$(PROJECT_DIR)/ThirdParty\"/**",
- );
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
- MARKETING_VERSION = 1.0;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = com.nextcloud.Talk.NextcloudTalkTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
- SWIFT_EMIT_LOC_STRINGS = NO;
- SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header.h";
- SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NextcloudTalk.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/NextcloudTalk";
- };
- name = Debug;
- };
- 1F6D8C382B2E3756004376B8 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = B7874918820589BF8FD69BED /* Pods-NextcloudTalkTests.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = L8PXSNYX82;
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
- GCC_C_LANGUAGE_STANDARD = gnu17;
- GENERATE_INFOPLIST_FILE = YES;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/Headers/Public\"",
- "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
- "\"${PODS_ROOT}/Headers/Public/DateTools\"",
- "\"${PODS_ROOT}/Headers/Public/GoogleToolboxForMac\"",
- "\"${PODS_ROOT}/Headers/Public/GoogleWebRTC\"",
- "\"${PODS_ROOT}/Headers/Public/Protobuf\"",
- "\"${PODS_ROOT}/Headers/Public/nanopb\"",
- "\"$(PROJECT_DIR)/ThirdParty\"/**",
- );
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
- MARKETING_VERSION = 1.0;
- MTL_FAST_MATH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = com.nextcloud.Talk.NextcloudTalkTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_EMIT_LOC_STRINGS = NO;
- SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header.h";
- SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NextcloudTalk.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/NextcloudTalk";
- };
- name = Release;
- };
- 1FD8AD932A3A162100787C16 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = L8PXSNYX82;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GENERATE_INFOPLIST_FILE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- MARKETING_VERSION = 1.0;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = com.sharix.rooms.NextcloudTalkUITests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- SUPPORTS_MACCATALYST = NO;
- SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
- SWIFT_EMIT_LOC_STRINGS = NO;
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_TARGET_NAME = NextcloudTalk;
- };
- name = Debug;
- };
- 1FD8AD942A3A162100787C16 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = L8PXSNYX82;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GENERATE_INFOPLIST_FILE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- MARKETING_VERSION = 1.0;
- MTL_FAST_MATH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = com.sharix.rooms.NextcloudTalkUITests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- SUPPORTS_MACCATALYST = NO;
- SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
- SWIFT_EMIT_LOC_STRINGS = NO;
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_TARGET_NAME = NextcloudTalk;
- };
- name = Release;
- };
- 1FF2FD732AB99CCB000C9905 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 82CD0527E04B844CAD762ADE /* Pods-BroadcastUploadExtension.debug.xcconfig */;
- buildSettings = {
- BUILD_LIBRARY_FOR_DISTRIBUTION = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_ENTITLEMENTS = BroadcastUploadExtension/BroadcastUploadExtension.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = L8PXSNYX82;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- "COCOAPODS=1",
- "APP_EXTENSION=1",
- );
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_FILE = BroadcastUploadExtension/Info.plist;
- INFOPLIST_KEY_CFBundleDisplayName = "Nextcloud Talk";
- INFOPLIST_KEY_NSHumanReadableCopyright = "";
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@executable_path/../../Frameworks",
- );
- MARKETING_VERSION = 1.0;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- ONLY_ACTIVE_ARCH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms.BroadcastUploadExtension;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- SUPPORTS_MACCATALYST = NO;
- SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = APP_EXTENSION;
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header-Extensions.h";
- SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 1FF2FD742AB99CCB000C9905 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = A8F95DE6635ABC1E64CA8E4A /* Pods-BroadcastUploadExtension.release.xcconfig */;
- buildSettings = {
- BUILD_LIBRARY_FOR_DISTRIBUTION = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_ENTITLEMENTS = BroadcastUploadExtension/BroadcastUploadExtension.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Distribution: Nextcloud GmbH (NKUJUXUJ3B)";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = L8PXSNYX82;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- "COCOAPODS=1",
- "APP_EXTENSION=1",
- );
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_FILE = BroadcastUploadExtension/Info.plist;
- INFOPLIST_KEY_CFBundleDisplayName = "Nextcloud Talk";
- INFOPLIST_KEY_NSHumanReadableCopyright = "";
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@executable_path/../../Frameworks",
- );
- MARKETING_VERSION = 1.0;
- MTL_FAST_MATH = YES;
- ONLY_ACTIVE_ARCH = NO;
- PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms.BroadcastUploadExtension;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- SUPPORTS_MACCATALYST = NO;
- SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = APP_EXTENSION;
- SWIFT_EMIT_LOC_STRINGS = YES;
- SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header-Extensions.h";
- SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- 2C0574951EDD9E8E00D9E7F2 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- DEFINES_MODULE = YES;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 2C0574961EDD9E8E00D9E7F2 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEFINES_MODULE = YES;
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- SWIFT_COMPILATION_MODE = wholemodule;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 2C0574981EDD9E8E00D9E7F2 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 4202C63030F0FFBB1C16D75E /* Pods-NextcloudTalk.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CODE_SIGN_ENTITLEMENTS = NextcloudTalk/NextcloudTalk.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DEVELOPMENT_TEAM = L8PXSNYX82;
- ENABLE_BITCODE = NO;
- FRAMEWORK_SEARCH_PATHS = "$(inherited)";
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/Headers/Public\"",
- "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
- "\"${PODS_ROOT}/Headers/Public/DateTools\"",
- "\"${PODS_ROOT}/Headers/Public/GoogleToolboxForMac\"",
- "\"${PODS_ROOT}/Headers/Public/GoogleWebRTC\"",
- "\"${PODS_ROOT}/Headers/Public/Protobuf\"",
- "\"${PODS_ROOT}/Headers/Public/nanopb\"",
- "\"$(PROJECT_DIR)/ThirdParty\"/**",
- );
- "HEADER_SEARCH_PATHS[arch=*]" = (
- "$(inherited)",
- "\"${PODS_ROOT}/Headers/Public\"",
- "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
- "\"${PODS_ROOT}/Headers/Public/DateTools\"",
- "\"${PODS_ROOT}/Headers/Public/GoogleToolboxForMac\"",
- "\"${PODS_ROOT}/Headers/Public/GoogleWebRTC\"",
- "\"${PODS_ROOT}/Headers/Public/Protobuf\"",
- "\"${PODS_ROOT}/Headers/Public/nanopb\"",
- "\"$(PROJECT_DIR)/ThirdParty\"/**",
- );
- INFOPLIST_FILE = NextcloudTalk/Info.plist;
- INFOPLIST_KEY_CFBundleDisplayName = "SX Rooms";
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- LIBRARY_SEARCH_PATHS = "$(inherited)";
- MARKETING_VERSION = 20.0.5;
- PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms;
- PRODUCT_NAME = "$(TARGET_NAME)";
- PROVISIONING_PROFILE_SPECIFIER = "";
- SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header.h";
- SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- };
- name = Debug;
- };
- 2C0574991EDD9E8E00D9E7F2 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 4D4C7BF2F97F47B0D9094618 /* Pods-NextcloudTalk.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CODE_SIGN_ENTITLEMENTS = NextcloudTalk/NextcloudTalk.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Distribution: Nextcloud GmbH (NKUJUXUJ3B)";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DEVELOPMENT_TEAM = L8PXSNYX82;
- ENABLE_BITCODE = NO;
- FRAMEWORK_SEARCH_PATHS = "$(inherited)";
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/Headers/Public\"",
- "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
- "\"${PODS_ROOT}/Headers/Public/DateTools\"",
- "\"${PODS_ROOT}/Headers/Public/GoogleToolboxForMac\"",
- "\"${PODS_ROOT}/Headers/Public/GoogleWebRTC\"",
- "\"${PODS_ROOT}/Headers/Public/Protobuf\"",
- "\"${PODS_ROOT}/Headers/Public/nanopb\"",
- "\"$(PROJECT_DIR)/ThirdParty\"/**",
- );
- INFOPLIST_FILE = NextcloudTalk/Info.plist;
- INFOPLIST_KEY_CFBundleDisplayName = "SX Rooms";
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- LIBRARY_SEARCH_PATHS = "$(inherited)";
- MARKETING_VERSION = 20.0.5;
- PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms;
- PRODUCT_NAME = "SX Rooms";
- PROVISIONING_PROFILE_SPECIFIER = "";
- SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header.h";
- SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
- SWIFT_VERSION = 5.0;
- };
- name = Release;
- };
- 2C62AFAF24C08845007E460A /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 584BF273DF09DE4D5EE0DA0F /* Pods-ShareExtension.debug.xcconfig */;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_ENTITLEMENTS = ShareExtension/ShareExtension.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DEVELOPMENT_TEAM = L8PXSNYX82;
- ENABLE_BITCODE = NO;
- FRAMEWORK_SEARCH_PATHS = "$(inherited)";
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- "APP_EXTENSION=1",
- );
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/Headers/Public\"",
- "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
- "\"${PODS_ROOT}/Headers/Public/AFViewShaker\"",
- "\"${PODS_ROOT}/Headers/Public/BKPasscodeView\"",
- "\"${PODS_ROOT}/Headers/Public/DBImageColorPicker\"",
- "\"${PODS_ROOT}/Headers/Public/DateTools\"",
- "\"${PODS_ROOT}/Headers/Public/JDStatusBarNotification\"",
- "\"${PODS_ROOT}/Headers/Public/MDFInternationalization\"",
- "\"${PODS_ROOT}/Headers/Public/MaterialComponents\"",
- "\"${PODS_ROOT}/Headers/Public/MotionAnimator\"",
- "\"${PODS_ROOT}/Headers/Public/MotionInterchange\"",
- "\"${PODS_ROOT}/Headers/Public/PulsingHalo\"",
- "\"${PODS_ROOT}/Headers/Public/Realm\"",
- "\"${PODS_ROOT}/Headers/Public/SocketRocket\"",
- "\"${PODS_ROOT}/Headers/Public/Toast\"",
- "\"${PODS_ROOT}/Headers/Public/UICKeyChainStore\"",
- "\"$(PROJECT_DIR)/ThirdParty\"/**",
- );
- INFOPLIST_FILE = ShareExtension/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@executable_path/../../Frameworks",
- );
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/AFViewShaker\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/BKPasscodeView\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/DBImageColorPicker\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/DateTools\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/JDStatusBarNotification\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/MDFInternationalization\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/MaterialComponents\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/MotionAnimator\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/MotionInterchange\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/PulsingHalo\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Realm\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Toast\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/UICKeyChainStore\"",
- "\"${PODS_ROOT}/Realm/core\"",
- );
- MARKETING_VERSION = 20.0.5;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- ONLY_ACTIVE_ARCH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms.ShareExtension;
- PRODUCT_NAME = ShareExtension;
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = APP_EXTENSION;
- SWIFT_INSTALL_OBJC_HEADER = YES;
- SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header-Extensions.h";
- SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 2C62AFB024C08845007E460A /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 95D756208A81284B975853EC /* Pods-ShareExtension.release.xcconfig */;
- buildSettings = {
- APPLICATION_EXTENSION_API_ONLY = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_ENTITLEMENTS = ShareExtension/ShareExtension.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Distribution: Nextcloud GmbH (NKUJUXUJ3B)";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEFINES_MODULE = YES;
- DEVELOPMENT_TEAM = L8PXSNYX82;
- ENABLE_BITCODE = NO;
- FRAMEWORK_SEARCH_PATHS = "$(inherited)";
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- "APP_EXTENSION=1",
- );
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/Headers/Public\"",
- "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
- "\"${PODS_ROOT}/Headers/Public/AFViewShaker\"",
- "\"${PODS_ROOT}/Headers/Public/BKPasscodeView\"",
- "\"${PODS_ROOT}/Headers/Public/DBImageColorPicker\"",
- "\"${PODS_ROOT}/Headers/Public/DateTools\"",
- "\"${PODS_ROOT}/Headers/Public/JDStatusBarNotification\"",
- "\"${PODS_ROOT}/Headers/Public/MDFInternationalization\"",
- "\"${PODS_ROOT}/Headers/Public/MaterialComponents\"",
- "\"${PODS_ROOT}/Headers/Public/MotionAnimator\"",
- "\"${PODS_ROOT}/Headers/Public/MotionInterchange\"",
- "\"${PODS_ROOT}/Headers/Public/PulsingHalo\"",
- "\"${PODS_ROOT}/Headers/Public/Realm\"",
- "\"${PODS_ROOT}/Headers/Public/SocketRocket\"",
- "\"${PODS_ROOT}/Headers/Public/Toast\"",
- "\"${PODS_ROOT}/Headers/Public/UICKeyChainStore\"",
- "\"$(PROJECT_DIR)/ThirdParty\"/**",
- );
- INFOPLIST_FILE = ShareExtension/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@executable_path/../../Frameworks",
- );
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/AFViewShaker\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/BKPasscodeView\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/DBImageColorPicker\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/DateTools\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/JDStatusBarNotification\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/MDFInternationalization\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/MaterialComponents\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/MotionAnimator\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/MotionInterchange\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/PulsingHalo\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Realm\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/Toast\"",
- "\"${PODS_CONFIGURATION_BUILD_DIR}/UICKeyChainStore\"",
- "\"${PODS_ROOT}/Realm/core\"",
- );
- MARKETING_VERSION = 20.0.5;
- MTL_FAST_MATH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms.ShareExtension;
- PRODUCT_NAME = ShareExtension;
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = APP_EXTENSION;
- SWIFT_INSTALL_OBJC_HEADER = YES;
- SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header-Extensions.h";
- SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- 2CC0015824A1F0E900A20167 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = D6DF51D976DC0F681FF83F7B /* Pods-NotificationServiceExtension.debug.xcconfig */;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
- APPLICATION_EXTENSION_API_ONLY = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_ENTITLEMENTS = NotificationServiceExtension/NotificationServiceExtension.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = L8PXSNYX82;
- ENABLE_BITCODE = NO;
- FRAMEWORK_SEARCH_PATHS = "$(inherited)";
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- "APP_EXTENSION=1",
- );
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/Headers/Public\"",
- "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
- "\"${PODS_ROOT}/Headers/Public/AFViewShaker\"",
- "\"${PODS_ROOT}/Headers/Public/BKPasscodeView\"",
- "\"${PODS_ROOT}/Headers/Public/DBImageColorPicker\"",
- "\"${PODS_ROOT}/Headers/Public/DateTools\"",
- "\"${PODS_ROOT}/Headers/Public/JDStatusBarNotification\"",
- "\"${PODS_ROOT}/Headers/Public/MDFInternationalization\"",
- "\"${PODS_ROOT}/Headers/Public/MaterialComponents\"",
- "\"${PODS_ROOT}/Headers/Public/MotionAnimator\"",
- "\"${PODS_ROOT}/Headers/Public/MotionInterchange\"",
- "\"${PODS_ROOT}/Headers/Public/PulsingHalo\"",
- "\"${PODS_ROOT}/Headers/Public/Realm\"",
- "\"${PODS_ROOT}/Headers/Public/SocketRocket\"",
- "\"${PODS_ROOT}/Headers/Public/Toast\"",
- "\"${PODS_ROOT}/Headers/Public/UICKeyChainStore\"",
- "\"$(PROJECT_DIR)/ThirdParty\"/**",
- );
- INFOPLIST_FILE = NotificationServiceExtension/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@executable_path/../../Frameworks",
- );
- LIBRARY_SEARCH_PATHS = "$(inherited)";
- MARKETING_VERSION = 20.0.5;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms.NotificationServiceExtension;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = APP_EXTENSION;
- SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header-Extensions.h";
- SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 2CC0015924A1F0E900A20167 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = D86091EC1125C3057B9A299B /* Pods-NotificationServiceExtension.release.xcconfig */;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
- APPLICATION_EXTENSION_API_ONLY = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CODE_SIGN_ENTITLEMENTS = NotificationServiceExtension/NotificationServiceExtension.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Distribution: Nextcloud GmbH (NKUJUXUJ3B)";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = L8PXSNYX82;
- ENABLE_BITCODE = NO;
- FRAMEWORK_SEARCH_PATHS = "$(inherited)";
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- "APP_EXTENSION=1",
- );
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/Headers/Public\"",
- "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
- "\"${PODS_ROOT}/Headers/Public/AFViewShaker\"",
- "\"${PODS_ROOT}/Headers/Public/BKPasscodeView\"",
- "\"${PODS_ROOT}/Headers/Public/DBImageColorPicker\"",
- "\"${PODS_ROOT}/Headers/Public/DateTools\"",
- "\"${PODS_ROOT}/Headers/Public/JDStatusBarNotification\"",
- "\"${PODS_ROOT}/Headers/Public/MDFInternationalization\"",
- "\"${PODS_ROOT}/Headers/Public/MaterialComponents\"",
- "\"${PODS_ROOT}/Headers/Public/MotionAnimator\"",
- "\"${PODS_ROOT}/Headers/Public/MotionInterchange\"",
- "\"${PODS_ROOT}/Headers/Public/PulsingHalo\"",
- "\"${PODS_ROOT}/Headers/Public/Realm\"",
- "\"${PODS_ROOT}/Headers/Public/SocketRocket\"",
- "\"${PODS_ROOT}/Headers/Public/Toast\"",
- "\"${PODS_ROOT}/Headers/Public/UICKeyChainStore\"",
- "\"$(PROJECT_DIR)/ThirdParty\"/**",
- );
- INFOPLIST_FILE = NotificationServiceExtension/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@executable_path/../../Frameworks",
- );
- LIBRARY_SEARCH_PATHS = "$(inherited)";
- MARKETING_VERSION = 20.0.5;
- MTL_FAST_MATH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = com.sharix.sxrooms.NotificationServiceExtension;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = APP_EXTENSION;
- SWIFT_OBJC_BRIDGING_HEADER = "NextcloudTalk/NextcloudTalk-Bridging-Header-Extensions.h";
- SWIFT_OBJC_INTERFACE_HEADER_NAME = "NextcloudTalk-Swift.h";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 1F6D8C362B2E3756004376B8 /* Build configuration list for PBXNativeTarget "NextcloudTalkTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 1F6D8C372B2E3756004376B8 /* Debug */,
- 1F6D8C382B2E3756004376B8 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 1FD8AD922A3A162100787C16 /* Build configuration list for PBXNativeTarget "NextcloudTalkUITests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 1FD8AD932A3A162100787C16 /* Debug */,
- 1FD8AD942A3A162100787C16 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 1FF2FD782AB99CCC000C9905 /* Build configuration list for PBXNativeTarget "BroadcastUploadExtension" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 1FF2FD732AB99CCB000C9905 /* Debug */,
- 1FF2FD742AB99CCB000C9905 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 2C0574781EDD9E8E00D9E7F2 /* Build configuration list for PBXProject "NextcloudTalk" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2C0574951EDD9E8E00D9E7F2 /* Debug */,
- 2C0574961EDD9E8E00D9E7F2 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 2C0574971EDD9E8E00D9E7F2 /* Build configuration list for PBXNativeTarget "NextcloudTalk" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2C0574981EDD9E8E00D9E7F2 /* Debug */,
- 2C0574991EDD9E8E00D9E7F2 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 2C62AFB124C08845007E460A /* Build configuration list for PBXNativeTarget "ShareExtension" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2C62AFAF24C08845007E460A /* Debug */,
- 2C62AFB024C08845007E460A /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 2CC0015A24A1F0E900A20167 /* Build configuration list for PBXNativeTarget "NotificationServiceExtension" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2CC0015824A1F0E900A20167 /* Debug */,
- 2CC0015924A1F0E900A20167 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- /* End XCConfigurationList section */
- /* Begin XCRemoteSwiftPackageReference section */
- 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/nextcloud-deps/CDMarkdownKit.git";
- requirement = {
- kind = revision;
- revision = 818927d8bcbcc70e2395232f9b733cfc40e8f0bd;
- };
- };
- 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/SDWebImage/SDWebImage.git";
- requirement = {
- kind = exactVersion;
- version = 5.15.7;
- };
- };
- 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/SDWebImage/SDWebImageSVGKitPlugin.git";
- requirement = {
- kind = exactVersion;
- version = 1.4.0;
- };
- };
- 1F468E7428DCC6C60099597B /* XCRemoteSwiftPackageReference "Dynamic" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/mhdhejazi/Dynamic.git";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 1.0.0;
- };
- };
- 1F628CB82842BAAF0083A425 /* XCRemoteSwiftPackageReference "QRCodeReader" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/yannickl/QRCodeReader.swift";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 10.1.1;
- };
- };
- 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/eddiekaiger/SwiftyAttributes.git";
- requirement = {
- kind = revision;
- revision = 1ae513a1617309455a115c3fc2d558f744b43788;
- };
- };
- 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/nextcloud-deps/realm-swift-binary";
- requirement = {
- kind = revision;
- revision = cab57855cff4612dc8c290191b41f5036befb2ec;
- };
- };
- 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/nextcloud/NextcloudKit";
- requirement = {
- kind = exactVersion;
- version = 2.6.0;
- };
- };
- 1FAB2E7B2AC99326001214EB /* XCRemoteSwiftPackageReference "TOCropViewController" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/TimOliver/TOCropViewController";
- requirement = {
- kind = exactVersion;
- version = 2.6.1;
- };
- };
- 1FAB2E862ACD44CF001214EB /* XCRemoteSwiftPackageReference "talk-clients-webrtc" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/nextcloud-releases/talk-clients-webrtc";
- requirement = {
- kind = revision;
- revision = 5f15c82f4b02072c1595980580eade9325e1819f;
- };
- };
- 1FCE3D512C9B5918009C68A9 /* XCRemoteSwiftPackageReference "SwiftyGif" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/alexiscreuzot/SwiftyGif";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 5.4.5;
- };
- };
- 2CCCD21B2835088F00F076CE /* XCRemoteSwiftPackageReference "OpenSSL" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/krzyzanowskim/OpenSSL";
- requirement = {
- kind = exactVersion;
- version = 3.1.6000;
- };
- };
- 80CDF8C22A8E098900CB57AE /* XCRemoteSwiftPackageReference "swiftui-introspect" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/siteline/swiftui-introspect";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 0.9.2;
- };
- };
- /* End XCRemoteSwiftPackageReference section */
- /* Begin XCSwiftPackageProductDependency section */
- 1F0ECBF42A68274400921E90 /* CDMarkdownKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */;
- productName = CDMarkdownKit;
- };
- 1F0ECBF62A68277000921E90 /* CDMarkdownKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */;
- productName = CDMarkdownKit;
- };
- 1F0ECBF82A68277C00921E90 /* CDMarkdownKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */;
- productName = CDMarkdownKit;
- };
- 1F35F8F42AEEDA9800044BDA /* SwiftyAttributes */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */;
- productName = SwiftyAttributes;
- };
- 1F45A1152A01D6EC005FE87D /* SDWebImage */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */;
- productName = SDWebImage;
- };
- 1F45A1192A01D70E005FE87D /* SDWebImage */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */;
- productName = SDWebImage;
- };
- 1F45A11D2A01D719005FE87D /* SDWebImage */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */;
- productName = SDWebImage;
- };
- 1F45A1202A01D8BA005FE87D /* SDWebImageSVGKitPlugin */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */;
- productName = SDWebImageSVGKitPlugin;
- };
- 1F45A1222A01D8F1005FE87D /* SDWebImageSVGKitPlugin */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */;
- productName = SDWebImageSVGKitPlugin;
- };
- 1F45A1242A01D8F7005FE87D /* SDWebImageSVGKitPlugin */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */;
- productName = SDWebImageSVGKitPlugin;
- };
- 1F468E7528DCC6C60099597B /* Dynamic */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F468E7428DCC6C60099597B /* XCRemoteSwiftPackageReference "Dynamic" */;
- productName = Dynamic;
- };
- 1F628CB92842BAAF0083A425 /* QRCodeReader */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F628CB82842BAAF0083A425 /* XCRemoteSwiftPackageReference "QRCodeReader" */;
- productName = QRCodeReader;
- };
- 1F66B72E29FABD01003FB168 /* SwiftyAttributes */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */;
- productName = SwiftyAttributes;
- };
- 1F759C082B63B9A7000534AB /* SDWebImage */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */;
- productName = SDWebImage;
- };
- 1F759C0A2B63B9A7000534AB /* SDWebImageSVGKitPlugin */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */;
- productName = SDWebImageSVGKitPlugin;
- };
- 1F759C0D2B63B9BA000534AB /* WebRTC */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1FAB2E862ACD44CF001214EB /* XCRemoteSwiftPackageReference "talk-clients-webrtc" */;
- productName = WebRTC;
- };
- 1F759C0F2B63B9D9000534AB /* OpenSSL */ = {
- isa = XCSwiftPackageProductDependency;
- package = 2CCCD21B2835088F00F076CE /* XCRemoteSwiftPackageReference "OpenSSL" */;
- productName = OpenSSL;
- };
- 1F759C132B63B9D9000534AB /* QRCodeReader */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F628CB82842BAAF0083A425 /* XCRemoteSwiftPackageReference "QRCodeReader" */;
- productName = QRCodeReader;
- };
- 1F759C152B63B9D9000534AB /* NextcloudKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */;
- productName = NextcloudKit;
- };
- 1F759C172B63B9D9000534AB /* SwiftyAttributes */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */;
- productName = SwiftyAttributes;
- };
- 1F759C192B63B9D9000534AB /* CDMarkdownKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */;
- productName = CDMarkdownKit;
- };
- 1F759C1B2B63B9D9000534AB /* TOCropViewController */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1FAB2E7B2AC99326001214EB /* XCRemoteSwiftPackageReference "TOCropViewController" */;
- productName = TOCropViewController;
- };
- 1F759C1D2B63B9D9000534AB /* SwiftUIIntrospect */ = {
- isa = XCSwiftPackageProductDependency;
- package = 80CDF8C22A8E098900CB57AE /* XCRemoteSwiftPackageReference "swiftui-introspect" */;
- productName = SwiftUIIntrospect;
- };
- 1F759C2B2B63CB93000534AB /* Realm */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */;
- productName = Realm;
- };
- 1F759C2D2B63CB9A000534AB /* Realm */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */;
- productName = Realm;
- };
- 1F759C2F2B63CBA0000534AB /* Realm */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */;
- productName = Realm;
- };
- 1F759C312B63CBA5000534AB /* Realm */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */;
- productName = Realm;
- };
- 1F759C332B63CBAA000534AB /* Realm */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F759C2A2B63CB93000534AB /* XCRemoteSwiftPackageReference "realm-swift-binary" */;
- productName = Realm;
- };
- 1F77A5EE2AB9A41E007B6037 /* SDWebImage */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F45A1142A01D6EC005FE87D /* XCRemoteSwiftPackageReference "SDWebImage" */;
- productName = SDWebImage;
- };
- 1F77A5F02AB9A423007B6037 /* SDWebImageSVGKitPlugin */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F45A11F2A01D8BA005FE87D /* XCRemoteSwiftPackageReference "SDWebImageSVGKitPlugin" */;
- productName = SDWebImageSVGKitPlugin;
- };
- 1F77A5FF2AB9A50D007B6037 /* NextcloudKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */;
- productName = NextcloudKit;
- };
- 1F77A60B2AB9A5BE007B6037 /* CDMarkdownKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F0ECBF32A68274400921E90 /* XCRemoteSwiftPackageReference "CDMarkdownKit" */;
- productName = CDMarkdownKit;
- };
- 1F7AE07729142CA1009F72AD /* NextcloudKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */;
- productName = NextcloudKit;
- };
- 1F7AE07929142E62009F72AD /* NextcloudKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */;
- productName = NextcloudKit;
- };
- 1F7AE07B29142E6A009F72AD /* NextcloudKit */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F7AE07629142CA1009F72AD /* XCRemoteSwiftPackageReference "NextcloudKit" */;
- productName = NextcloudKit;
- };
- 1FAB2E7C2AC99326001214EB /* TOCropViewController */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1FAB2E7B2AC99326001214EB /* XCRemoteSwiftPackageReference "TOCropViewController" */;
- productName = TOCropViewController;
- };
- 1FAB2E7E2AC99367001214EB /* TOCropViewController */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1FAB2E7B2AC99326001214EB /* XCRemoteSwiftPackageReference "TOCropViewController" */;
- productName = TOCropViewController;
- };
- 1FAB2E872ACD44D0001214EB /* WebRTC */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1FAB2E862ACD44CF001214EB /* XCRemoteSwiftPackageReference "talk-clients-webrtc" */;
- productName = WebRTC;
- };
- 1FCE3D522C9B5918009C68A9 /* SwiftyGif */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1FCE3D512C9B5918009C68A9 /* XCRemoteSwiftPackageReference "SwiftyGif" */;
- productName = SwiftyGif;
- };
- 1FF136192BFBC841006A6101 /* SwiftyAttributes */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */;
- productName = SwiftyAttributes;
- };
- 1FF1361B2BFBC86A006A6101 /* SwiftyAttributes */ = {
- isa = XCSwiftPackageProductDependency;
- package = 1F66B72D29FABD01003FB168 /* XCRemoteSwiftPackageReference "SwiftyAttributes" */;
- productName = SwiftyAttributes;
- };
- 2CCCD21C2835088F00F076CE /* OpenSSL */ = {
- isa = XCSwiftPackageProductDependency;
- package = 2CCCD21B2835088F00F076CE /* XCRemoteSwiftPackageReference "OpenSSL" */;
- productName = OpenSSL;
- };
- 80CDF8C32A8E098900CB57AE /* SwiftUIIntrospect */ = {
- isa = XCSwiftPackageProductDependency;
- package = 80CDF8C22A8E098900CB57AE /* XCRemoteSwiftPackageReference "swiftui-introspect" */;
- productName = SwiftUIIntrospect;
- };
- /* End XCSwiftPackageProductDependency section */
- };
- rootObject = 2C0574751EDD9E8E00D9E7F2 /* Project object */;
- }
|