| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
- /* Begin PBXAggregateTarget section */
- DE3373891E73773400881891 /* AllUnitTests */ = {
- isa = PBXAggregateTarget;
- buildConfigurationList = DE33738A1E73773400881891 /* Build configuration list for PBXAggregateTarget "AllUnitTests" */;
- buildPhases = (
- );
- dependencies = (
- DE6F01BA1E957157004AEE01 /* PBXTargetDependency */,
- DEB5185A1E9008CB0089C938 /* PBXTargetDependency */,
- DE9315871E86E9990083EDBF /* PBXTargetDependency */,
- DEE14E0B1E844FDC006FA992 /* PBXTargetDependency */,
- DE3373981E73776F00881891 /* PBXTargetDependency */,
- );
- name = AllUnitTests;
- productName = AllTests;
- };
- /* End PBXAggregateTarget section */
- /* Begin PBXBuildFile section */
- 0624F3EB1EC0ED0800E5940D /* FConnectionTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB46F1EBA7AEF00038A59 /* FConnectionTest.m */; };
- 0624F3EC1EC0ED1B00E5940D /* FData.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4711EBA7AEF00038A59 /* FData.m */; };
- 0624F3ED1EC0ED2300E5940D /* FDotInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4731EBA7AEF00038A59 /* FDotInfo.m */; };
- 0624F3EE1EC0ED2A00E5940D /* FEventTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4751EBA7AEF00038A59 /* FEventTests.m */; };
- 0624F3EF1EC0ED3000E5940D /* FIRAuthTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4761EBA7AEF00038A59 /* FIRAuthTests.m */; };
- 0624F3F01EC0ED3500E5940D /* FIRDatabaseQueryTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4781EBA7AEF00038A59 /* FIRDatabaseQueryTests.m */; };
- 0624F3F11EC0ED3A00E5940D /* FIRDatabaseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4791EBA7AEF00038A59 /* FIRDatabaseTests.m */; };
- 0624F3F21EC0ED3F00E5940D /* FKeepSyncedTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB47F1EBA7AEF00038A59 /* FKeepSyncedTest.m */; };
- 0624F3F31EC0ED4300E5940D /* FOrder.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4811EBA7AEF00038A59 /* FOrder.m */; };
- 0624F3F41EC0ED4800E5940D /* FOrderByTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4831EBA7AEF00038A59 /* FOrderByTests.m */; };
- 0624F3F51EC0ED4D00E5940D /* FPersist.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4851EBA7AEF00038A59 /* FPersist.m */; };
- 0624F3F61EC0ED5100E5940D /* FRealtime.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4871EBA7AEF00038A59 /* FRealtime.m */; };
- 0624F3F71EC0ED5600E5940D /* FTransactionTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB48F1EBA7AEF00038A59 /* FTransactionTest.m */; };
- 0637BA651EC0F99700CAEFD4 /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0637BA641EC0F99700CAEFD4 /* FirebaseDev.framework */; };
- 0637BA671EC0F9BA00CAEFD4 /* FDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D791E8EF202009EB6DF /* FDevice.m */; };
- 0637BA681EC0F9BD00CAEFD4 /* FEventTester.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D7B1E8EF202009EB6DF /* FEventTester.m */; };
- 0637BA691EC0F9C100CAEFD4 /* FIRFakeApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB47E1EBA7AEF00038A59 /* FIRFakeApp.m */; };
- 0637BA6A1EC0F9C400CAEFD4 /* FIRTestAuthTokenProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D7D1E8EF202009EB6DF /* FIRTestAuthTokenProvider.m */; };
- 0637BA6B1EC0F9C700CAEFD4 /* FMockStorageEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D7F1E8EF202009EB6DF /* FMockStorageEngine.m */; };
- 0637BA6C1EC0F9CB00CAEFD4 /* FTestAuthTokenGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D811E8EF202009EB6DF /* FTestAuthTokenGenerator.m */; };
- 0637BA6D1EC0F9CF00CAEFD4 /* FTestBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB45A1EBA7AE200038A59 /* FTestBase.m */; };
- 0637BA6E1EC0F9D200CAEFD4 /* FTestCachePolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D831E8EF202009EB6DF /* FTestCachePolicy.m */; };
- 0637BA6F1EC0F9D500CAEFD4 /* FTestClock.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D851E8EF202009EB6DF /* FTestClock.m */; };
- 0637BA701EC0F9D900CAEFD4 /* FTestExpectations.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D871E8EF202009EB6DF /* FTestExpectations.m */; };
- 0637BA711EC0F9DD00CAEFD4 /* FTestHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D891E8EF202009EB6DF /* FTestHelpers.m */; };
- 0637BA721EC0F9E000CAEFD4 /* FTupleEventTypeString.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D8B1E8EF203009EB6DF /* FTupleEventTypeString.m */; };
- 0637BA731EC0F9E400CAEFD4 /* SenTest+FWaiter.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D8D1E8EF203009EB6DF /* SenTest+FWaiter.m */; };
- 063CB49A1EBA7AEF00038A59 /* FirebaseTests-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 063CB47C1EBA7AEF00038A59 /* FirebaseTests-Info.plist */; };
- 063CB4A71EBA7B0B00038A59 /* FCompoundWriteTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB46E1EBA7AEF00038A59 /* FCompoundWriteTest.m */; };
- 063CB4BE1EBA7B3100038A59 /* FIRDataSnapshotTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB47B1EBA7AEF00038A59 /* FIRDataSnapshotTests.m */; };
- 063CB4BF1EBA7B3100038A59 /* FIRFakeApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB47E1EBA7AEF00038A59 /* FIRFakeApp.m */; };
- 063CB4C81EBA7B3100038A59 /* FTreeSortedDictionaryTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4901EBA7AEF00038A59 /* FTreeSortedDictionaryTests.m */; };
- 063CB4C91EBA7B4600038A59 /* FArraySortedDictionaryTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4471EBA7AE200038A59 /* FArraySortedDictionaryTest.m */; };
- 063CB4CA1EBA7B4600038A59 /* FCompoundHashTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4481EBA7AE200038A59 /* FCompoundHashTest.m */; };
- 063CB4CB1EBA7B4600038A59 /* FIRMutableDataTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB44A1EBA7AE200038A59 /* FIRMutableDataTests.m */; };
- 063CB4CC1EBA7B4600038A59 /* FLevelDBStorageEngineTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB44B1EBA7AE200038A59 /* FLevelDBStorageEngineTests.m */; };
- 063CB4CD1EBA7B4600038A59 /* FNodeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB44C1EBA7AE200038A59 /* FNodeTests.m */; };
- 063CB4CE1EBA7B4600038A59 /* FPathTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB44E1EBA7AE200038A59 /* FPathTests.m */; };
- 063CB4CF1EBA7B4600038A59 /* FPersistenceManagerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB44F1EBA7AE200038A59 /* FPersistenceManagerTest.m */; };
- 063CB4D01EBA7B4600038A59 /* FPruneForestTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4501EBA7AE200038A59 /* FPruneForestTest.m */; };
- 063CB4D11EBA7B4600038A59 /* FPruningTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4511EBA7AE200038A59 /* FPruningTest.m */; };
- 063CB4D21EBA7B4600038A59 /* FQueryParamsTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4521EBA7AE200038A59 /* FQueryParamsTest.m */; };
- 063CB4D31EBA7B4600038A59 /* FRangeMergeTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4531EBA7AE200038A59 /* FRangeMergeTest.m */; };
- 063CB4D41EBA7B4600038A59 /* FRepoInfoTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4541EBA7AE200038A59 /* FRepoInfoTest.m */; };
- 063CB4D51EBA7B4600038A59 /* FSparseSnapshotTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4561EBA7AE200038A59 /* FSparseSnapshotTests.m */; };
- 063CB4D71EBA7B4600038A59 /* FTestBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB45A1EBA7AE200038A59 /* FTestBase.m */; };
- 063CB4D81EBA7B4600038A59 /* FTrackedQueryManagerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB45B1EBA7AE200038A59 /* FTrackedQueryManagerTest.m */; };
- 063CB4D91EBA7B4600038A59 /* FUtilitiesTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB45C1EBA7AE200038A59 /* FUtilitiesTest.m */; };
- 063CB4DB1EBAA89E00038A59 /* FSyncPointTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4581EBA7AE200038A59 /* FSyncPointTests.m */; };
- 0672F2F21EBBA7D900818E87 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 0672F2F11EBBA7D900818E87 /* GoogleService-Info.plist */; };
- 0672F2F31EBBA7D900818E87 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 0672F2F11EBBA7D900818E87 /* GoogleService-Info.plist */; };
- 069428831EC3B38C00F7BC69 /* 1mb.dat in Resources */ = {isa = PBXBuildFile; fileRef = 069428801EC3B35A00F7BC69 /* 1mb.dat */; };
- 0697B1221EC13D8A00542174 /* Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 0697B1211EC13D8A00542174 /* Base64.m */; };
- 06B47E8C1EC39ADF00170C02 /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 06B47E8B1EC39ADF00170C02 /* FirebaseDev.framework */; };
- 06C24A061EC39BCB005208CA /* FIRStorageIntegrationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 06121ECA1EC39A0B0008D70E /* FIRStorageIntegrationTests.m */; };
- 22DD1E787F5347BD66CC842B /* Pods_Auth_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1EEA0F965ABC48C695972509 /* Pods_Auth_Example.framework */; };
- 260F4B35536ACE792D9BD6C6 /* Pods_Database_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 64928F2997FAF0EAEAC9B8CA /* Pods_Database_Tests.framework */; };
- 3054DA05818345789EA0C5B0 /* Pods_Core_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08A821396D7D1089ECE810EF /* Pods_Core_Example.framework */; };
- 4768966C0C99B8D4215826A5 /* Pods_Auth_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAB9666F29A81704CA956317 /* Pods_Auth_Tests.framework */; };
- 48402D5F3CB17E091298C7FF /* Pods_Database_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 66C7EEA21795A3320088DEBE /* Pods_Database_Example.framework */; };
- 7EA36B802D84DD89CE6203A0 /* Pods_Storage_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 16E92590A6B517109A2B219F /* Pods_Storage_Tests.framework */; };
- 83C9C772827554752364B400 /* Pods_Messaging_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C8A6D15690286B6BB4CB8023 /* Pods_Messaging_Example.framework */; };
- 8CE9133C8720B1C600F7C731 /* Pods_Core_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D52CEDD0146DF63640A4C3A5 /* Pods_Core_Tests.framework */; };
- 8D14BB390A3E191CCF78BF91 /* Pods_Storage_IntegrationTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36DF4C7B93E6FE7AD8F88A38 /* Pods_Storage_IntegrationTests.framework */; };
- 9653E6AB7DDD8B5E4814442D /* Pods_Database_IntegrationTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E3DEB3CBB1440528DFE1E197 /* Pods_Database_IntegrationTests.framework */; };
- AFAF36F51EC28C25004BDEE5 /* Shared.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */; };
- AFAF36F61EC28C25004BDEE5 /* Shared.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */; };
- AFAF36F71EC28C25004BDEE5 /* Shared.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */; };
- AFAF36F81EC28C25004BDEE5 /* Shared.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */; };
- AFAF36F91EC28C25004BDEE5 /* Shared.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */; };
- AFC8BA9D1EBD230E00B8EEAE /* NotificationsController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFC8BA9C1EBD230E00B8EEAE /* NotificationsController.swift */; };
- AFC8BA9F1EBD51A700B8EEAE /* Environment.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFC8BA9E1EBD51A700B8EEAE /* Environment.swift */; };
- AFC8BAA71EC257D800B8EEAE /* FIRSampleAppUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = AFC8BAA31EC257D800B8EEAE /* FIRSampleAppUtilities.m */; };
- AFD5630C1EB1400900EA2233 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AFD563081EB1400900EA2233 /* LaunchScreen.storyboard */; };
- AFD5630D1EB1400900EA2233 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AFD5630A1EB1400900EA2233 /* Main.storyboard */; };
- AFD5630E1EB1402300EA2233 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFD562FF1EB13DF200EA2233 /* AppDelegate.swift */; };
- AFD5630F1EB1402300EA2233 /* MessagingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFD563011EB13DF200EA2233 /* MessagingViewController.swift */; };
- AFD563151EB29EDE00EA2233 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = AFD563131EB1466100EA2233 /* GoogleService-Info.plist */; };
- AFD563171EBBEF7B00EA2233 /* Data+MessagingExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFD563161EBBEF7B00EA2233 /* Data+MessagingExtensions.swift */; };
- BDE625D72CA3B8918088E0F5 /* Pods_Storage_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA7879CD6EE51EE4E20937C8 /* Pods_Storage_Example.framework */; };
- DE0E5BBB1EA7D92E00FAA825 /* FIRVerifyClientRequestTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE0E5BB91EA7D92E00FAA825 /* FIRVerifyClientRequestTest.m */; };
- DE0E5BBC1EA7D92E00FAA825 /* FIRVerifyClientResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE0E5BBA1EA7D92E00FAA825 /* FIRVerifyClientResponseTests.m */; };
- DE0E5BBD1EA7D93100FAA825 /* FIRAuthAppCredentialTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE0E5BB51EA7D91C00FAA825 /* FIRAuthAppCredentialTests.m */; };
- DE0E5BBE1EA7D93500FAA825 /* FIRAuthAppDelegateProxyTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE0E5BB61EA7D91C00FAA825 /* FIRAuthAppDelegateProxyTests.m */; };
- DE4E711B1E953ABC00070092 /* FirebaseDev.podspec in Resources */ = {isa = PBXBuildFile; fileRef = DE4E711A1E953ABC00070092 /* FirebaseDev.podspec */; };
- DE6F01B01E95675E004AEE01 /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DE6F01AC1E95673C004AEE01 /* FirebaseDev.framework */; };
- DE750DBD1EB3DD5B00A75E47 /* FIRAuthAPNSTokenTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE750DB61EB3DD4000A75E47 /* FIRAuthAPNSTokenTests.m */; };
- DE750DBE1EB3DD6800A75E47 /* FIRAuthAPNSTokenManagerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE750DB51EB3DD4000A75E47 /* FIRAuthAPNSTokenManagerTests.m */; };
- DE750DBF1EB3DD6C00A75E47 /* FIRAuthAppCredentialManagerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE750DB71EB3DD4000A75E47 /* FIRAuthAppCredentialManagerTests.m */; };
- DE750DC01EB3DD6F00A75E47 /* FIRAuthNotificationManagerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE750DB81EB3DD4000A75E47 /* FIRAuthNotificationManagerTests.m */; };
- DE7B8DB61E8EF203009EB6DF /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = DE7B8D691E8EF202009EB6DF /* InfoPlist.strings */; };
- DE7B8DBE1E8EF203009EB6DF /* FDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D791E8EF202009EB6DF /* FDevice.m */; };
- DE7B8DBF1E8EF203009EB6DF /* FEventTester.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D7B1E8EF202009EB6DF /* FEventTester.m */; };
- DE7B8DC01E8EF203009EB6DF /* FIRTestAuthTokenProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D7D1E8EF202009EB6DF /* FIRTestAuthTokenProvider.m */; };
- DE7B8DC11E8EF203009EB6DF /* FMockStorageEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D7F1E8EF202009EB6DF /* FMockStorageEngine.m */; };
- DE7B8DC21E8EF203009EB6DF /* FTestAuthTokenGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D811E8EF202009EB6DF /* FTestAuthTokenGenerator.m */; };
- DE7B8DC31E8EF203009EB6DF /* FTestCachePolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D831E8EF202009EB6DF /* FTestCachePolicy.m */; };
- DE7B8DC41E8EF203009EB6DF /* FTestClock.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D851E8EF202009EB6DF /* FTestClock.m */; };
- DE7B8DC51E8EF203009EB6DF /* FTestExpectations.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D871E8EF202009EB6DF /* FTestExpectations.m */; };
- DE7B8DC61E8EF203009EB6DF /* FTestHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D891E8EF202009EB6DF /* FTestHelpers.m */; };
- DE7B8DC71E8EF203009EB6DF /* FTupleEventTypeString.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D8B1E8EF203009EB6DF /* FTupleEventTypeString.m */; };
- DE7B8DC81E8EF203009EB6DF /* SenTest+FWaiter.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D8D1E8EF203009EB6DF /* SenTest+FWaiter.m */; };
- DE7B8DC91E8EF203009EB6DF /* syncPointSpec.json in Resources */ = {isa = PBXBuildFile; fileRef = DE7B8D8E1E8EF203009EB6DF /* syncPointSpec.json */; };
- DE7B8DCA1E8EF23A009EB6DF /* FIRAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D321E8EF202009EB6DF /* FIRAppDelegate.m */; };
- DE7B8DCB1E8EF23A009EB6DF /* FIRViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D341E8EF202009EB6DF /* FIRViewController.m */; };
- DE7B8DCC1E8EF23A009EB6DF /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D371E8EF202009EB6DF /* main.m */; };
- DE7B8DD01E8EF246009EB6DF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DE7B8D2C1E8EF202009EB6DF /* LaunchScreen.storyboard */; };
- DE7B8DD11E8EF24F009EB6DF /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DE7B8D2E1E8EF202009EB6DF /* Main.storyboard */; };
- DE7B8DD31E8F1CA7009EB6DF /* Database-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = DE7B8DD21E8F1CA7009EB6DF /* Database-Info.plist */; };
- DE9315261E86C6FF0083EDBF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DE9314ED1E86C6FF0083EDBF /* LaunchScreen.storyboard */; };
- DE9315271E86C6FF0083EDBF /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DE9314EF1E86C6FF0083EDBF /* Main.storyboard */; };
- DE9315291E86C6FF0083EDBF /* FIRAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314F31E86C6FF0083EDBF /* FIRAppDelegate.m */; };
- DE93152A1E86C6FF0083EDBF /* FIRViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314F51E86C6FF0083EDBF /* FIRViewController.m */; };
- DE93152B1E86C6FF0083EDBF /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = DE9314F61E86C6FF0083EDBF /* GoogleService-Info.plist */; };
- DE93152D1E86C6FF0083EDBF /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314F81E86C6FF0083EDBF /* main.m */; };
- DE9315571E86C71C0083EDBF /* FIRAdditionalUserInfoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314FA1E86C6FF0083EDBF /* FIRAdditionalUserInfoTests.m */; };
- DE9315581E86C71C0083EDBF /* FIRApp+FIRAuthUnitTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314FC1E86C6FF0083EDBF /* FIRApp+FIRAuthUnitTests.m */; };
- DE9315591E86C71C0083EDBF /* FIRAuthBackendCreateAuthURITests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314FD1E86C6FF0083EDBF /* FIRAuthBackendCreateAuthURITests.m */; };
- DE93155A1E86C71C0083EDBF /* FIRAuthBackendRPCImplementationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314FE1E86C6FF0083EDBF /* FIRAuthBackendRPCImplementationTests.m */; };
- DE93155B1E86C71C0083EDBF /* FIRAuthDispatcherTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314FF1E86C6FF0083EDBF /* FIRAuthDispatcherTests.m */; };
- DE93155C1E86C71C0083EDBF /* FIRAuthGlobalWorkQueueTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315001E86C6FF0083EDBF /* FIRAuthGlobalWorkQueueTests.m */; };
- DE93155D1E86C71C0083EDBF /* FIRAuthKeychainTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315011E86C6FF0083EDBF /* FIRAuthKeychainTests.m */; };
- DE93155E1E86C71C0083EDBF /* FIRAuthSerialTaskQueueTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315021E86C6FF0083EDBF /* FIRAuthSerialTaskQueueTests.m */; };
- DE93155F1E86C71C0083EDBF /* FIRAuthTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315031E86C6FF0083EDBF /* FIRAuthTests.m */; };
- DE9315601E86C71C0083EDBF /* FIRAuthUserDefaultsStorageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315041E86C6FF0083EDBF /* FIRAuthUserDefaultsStorageTests.m */; };
- DE9315611E86C71C0083EDBF /* FIRCreateAuthURIRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315051E86C6FF0083EDBF /* FIRCreateAuthURIRequestTests.m */; };
- DE9315621E86C71C0083EDBF /* FIRCreateAuthURIResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315061E86C6FF0083EDBF /* FIRCreateAuthURIResponseTests.m */; };
- DE9315631E86C71C0083EDBF /* FIRDeleteAccountRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315071E86C6FF0083EDBF /* FIRDeleteAccountRequestTests.m */; };
- DE9315641E86C71C0083EDBF /* FIRDeleteAccountResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315081E86C6FF0083EDBF /* FIRDeleteAccountResponseTests.m */; };
- DE9315651E86C71C0083EDBF /* FIRFakeBackendRPCIssuer.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93150A1E86C6FF0083EDBF /* FIRFakeBackendRPCIssuer.m */; };
- DE9315661E86C71C0083EDBF /* FIRGetAccountInfoRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93150B1E86C6FF0083EDBF /* FIRGetAccountInfoRequestTests.m */; };
- DE9315671E86C71C0083EDBF /* FIRGetAccountInfoResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93150C1E86C6FF0083EDBF /* FIRGetAccountInfoResponseTests.m */; };
- DE9315681E86C71C0083EDBF /* FIRGetOOBConfirmationCodeRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93150D1E86C6FF0083EDBF /* FIRGetOOBConfirmationCodeRequestTests.m */; };
- DE9315691E86C71C0083EDBF /* FIRGetOOBConfirmationCodeResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93150E1E86C6FF0083EDBF /* FIRGetOOBConfirmationCodeResponseTests.m */; };
- DE93156A1E86C71C0083EDBF /* FIRGitHubAuthProviderTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93150F1E86C6FF0083EDBF /* FIRGitHubAuthProviderTests.m */; };
- DE93156C1E86C71C0083EDBF /* FIRResetPasswordRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315111E86C6FF0083EDBF /* FIRResetPasswordRequestTests.m */; };
- DE93156D1E86C71C0083EDBF /* FIRResetPasswordResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315121E86C6FF0083EDBF /* FIRResetPasswordResponseTests.m */; };
- DE93156E1E86C71C0083EDBF /* FIRSendVerificationCodeRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315131E86C6FF0083EDBF /* FIRSendVerificationCodeRequestTests.m */; };
- DE93156F1E86C71C0083EDBF /* FIRSendVerificationCodeResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315141E86C6FF0083EDBF /* FIRSendVerificationCodeResponseTests.m */; };
- DE9315701E86C71C0083EDBF /* FIRSetAccountInfoRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315151E86C6FF0083EDBF /* FIRSetAccountInfoRequestTests.m */; };
- DE9315711E86C71C0083EDBF /* FIRSetAccountInfoResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315161E86C6FF0083EDBF /* FIRSetAccountInfoResponseTests.m */; };
- DE9315721E86C71C0083EDBF /* FIRSignUpNewUserRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315171E86C6FF0083EDBF /* FIRSignUpNewUserRequestTests.m */; };
- DE9315731E86C71C0083EDBF /* FIRSignUpNewUserResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315181E86C6FF0083EDBF /* FIRSignUpNewUserResponseTests.m */; };
- DE9315741E86C71C0083EDBF /* FIRTwitterAuthProviderTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315191E86C6FF0083EDBF /* FIRTwitterAuthProviderTests.m */; };
- DE9315751E86C71C0083EDBF /* FIRUserTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93151A1E86C6FF0083EDBF /* FIRUserTests.m */; };
- DE9315761E86C71C0083EDBF /* FIRVerifyAssertionRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93151B1E86C6FF0083EDBF /* FIRVerifyAssertionRequestTests.m */; };
- DE9315771E86C71C0083EDBF /* FIRVerifyAssertionResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93151C1E86C6FF0083EDBF /* FIRVerifyAssertionResponseTests.m */; };
- DE9315781E86C71C0083EDBF /* FIRVerifyCustomTokenRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93151D1E86C6FF0083EDBF /* FIRVerifyCustomTokenRequestTests.m */; };
- DE9315791E86C71C0083EDBF /* FIRVerifyCustomTokenResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93151E1E86C6FF0083EDBF /* FIRVerifyCustomTokenResponseTests.m */; };
- DE93157A1E86C71C0083EDBF /* FIRVerifyPasswordRequestTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93151F1E86C6FF0083EDBF /* FIRVerifyPasswordRequestTest.m */; };
- DE93157B1E86C71C0083EDBF /* FIRVerifyPasswordResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315201E86C6FF0083EDBF /* FIRVerifyPasswordResponseTests.m */; };
- DE93157C1E86C71C0083EDBF /* FIRVerifyPhoneNumberRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315211E86C6FF0083EDBF /* FIRVerifyPhoneNumberRequestTests.m */; };
- DE93157D1E86C71C0083EDBF /* FIRVerifyPhoneNumberResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315221E86C6FF0083EDBF /* FIRVerifyPhoneNumberResponseTests.m */; };
- DE93157E1E86C71C0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315241E86C6FF0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.m */; };
- DE9315F41E8738E60083EDBF /* FIRMessagingClientTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315C31E8738B70083EDBF /* FIRMessagingClientTest.m */; };
- DE9315F51E8738E60083EDBF /* FIRMessagingCodedInputStreamTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315C41E8738B70083EDBF /* FIRMessagingCodedInputStreamTest.m */; };
- DE9315F61E8738E60083EDBF /* FIRMessagingConnectionTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315C51E8738B70083EDBF /* FIRMessagingConnectionTest.m */; };
- DE9315F71E8738E60083EDBF /* FIRMessagingContextManagerServiceTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315C61E8738B70083EDBF /* FIRMessagingContextManagerServiceTest.m */; };
- DE9315F81E8738E60083EDBF /* FIRMessagingDataMessageManagerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315C71E8738B70083EDBF /* FIRMessagingDataMessageManagerTest.m */; };
- DE9315F91E8738E60083EDBF /* FIRMessagingFakeConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315C91E8738B70083EDBF /* FIRMessagingFakeConnection.m */; };
- DE9315FA1E8738E60083EDBF /* FIRMessagingFakeSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315CB1E8738B70083EDBF /* FIRMessagingFakeSocket.m */; };
- DE9315FB1E8738E60083EDBF /* FIRMessagingLinkHandlingTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315CC1E8738B70083EDBF /* FIRMessagingLinkHandlingTest.m */; };
- DE9315FC1E8738E60083EDBF /* FIRMessagingPendingTopicsListTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315CD1E8738B70083EDBF /* FIRMessagingPendingTopicsListTest.m */; };
- DE9315FD1E8738E60083EDBF /* FIRMessagingPubSubTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315CE1E8738B70083EDBF /* FIRMessagingPubSubTest.m */; };
- DE9315FE1E8738E60083EDBF /* FIRMessagingRegistrarTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315CF1E8738B70083EDBF /* FIRMessagingRegistrarTest.m */; };
- DE9315FF1E8738E60083EDBF /* FIRMessagingRemoteNotificationsProxyTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D01E8738B70083EDBF /* FIRMessagingRemoteNotificationsProxyTest.m */; };
- DE9316001E8738E60083EDBF /* FIRMessagingRmqManagerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D11E8738B70083EDBF /* FIRMessagingRmqManagerTest.m */; };
- DE9316011E8738E60083EDBF /* FIRMessagingSecureSocketTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D21E8738B70083EDBF /* FIRMessagingSecureSocketTest.m */; };
- DE9316021E8738E60083EDBF /* FIRMessagingServiceTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D31E8738B70083EDBF /* FIRMessagingServiceTest.m */; };
- DE9316031E8738E60083EDBF /* FIRMessagingSyncMessageManagerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D41E8738B70083EDBF /* FIRMessagingSyncMessageManagerTest.m */; };
- DE9316041E8738E60083EDBF /* FIRMessagingTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D51E8738B70083EDBF /* FIRMessagingTest.m */; };
- DE9316051E8738E60083EDBF /* FIRMessagingTestNotificationUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D71E8738B70083EDBF /* FIRMessagingTestNotificationUtilities.m */; };
- DEB139F41E73506A00AC236D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
- DEB139F51E73506A00AC236D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
- DEB139F61E73506A00AC236D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
- DEB13A271E73518B00AC236D /* FIRStorageDeleteTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C11E734D9D00AC236D /* FIRStorageDeleteTests.m */; };
- DEB13A281E73518B00AC236D /* FIRStorageGetMetadataTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C21E734D9D00AC236D /* FIRStorageGetMetadataTests.m */; };
- DEB13A291E73518B00AC236D /* FIRStorageMetadataTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C31E734D9D00AC236D /* FIRStorageMetadataTests.m */; };
- DEB13A2A1E73518B00AC236D /* FIRStoragePathTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C41E734D9D00AC236D /* FIRStoragePathTests.m */; };
- DEB13A2B1E73518B00AC236D /* FIRStorageReferenceTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C51E734D9D00AC236D /* FIRStorageReferenceTests.m */; };
- DEB13A2C1E73518B00AC236D /* FIRStorageTestHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C71E734D9D00AC236D /* FIRStorageTestHelpers.m */; };
- DEB13A2D1E73518B00AC236D /* FIRStorageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C81E734D9D00AC236D /* FIRStorageTests.m */; };
- DEB13A2E1E73518B00AC236D /* FIRStorageTokenAuthorizerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C91E734D9D00AC236D /* FIRStorageTokenAuthorizerTests.m */; };
- DEB13A2F1E73518B00AC236D /* FIRStorageUpdateMetadataTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139CA1E734D9D00AC236D /* FIRStorageUpdateMetadataTests.m */; };
- DEB13A301E73518B00AC236D /* FIRStorageUtilsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139CB1E734D9D00AC236D /* FIRStorageUtilsTests.m */; };
- DEB61EC51E7C5DBB00C04B96 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DEB61EB91E7C5DBB00C04B96 /* LaunchScreen.storyboard */; };
- DEB61EC61E7C5DBB00C04B96 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DEB61EBB1E7C5DBB00C04B96 /* Main.storyboard */; };
- DEB61EC71E7C5DBB00C04B96 /* FIRAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB61EBE1E7C5DBB00C04B96 /* FIRAppDelegate.m */; };
- DEB61EC81E7C5DBB00C04B96 /* FIRViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB61EC01E7C5DBB00C04B96 /* FIRViewController.m */; };
- DEB61EC91E7C5DBB00C04B96 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = DEB61EC11E7C5DBB00C04B96 /* GoogleService-Info.plist */; };
- DEB61ECB1E7C5DBB00C04B96 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB61EC31E7C5DBB00C04B96 /* main.m */; };
- DEC0EE0D1EA427CC007E2177 /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DE6F01B31E9567F1004AEE01 /* FirebaseDev.framework */; };
- DEC0EE0F1EA42D5D007E2177 /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DEC0EE0E1EA42D5D007E2177 /* FirebaseDev.framework */; };
- DEC0EE111EA42D73007E2177 /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DEC0EE101EA42D73007E2177 /* FirebaseDev.framework */; };
- DECE039B1E9ED01600164CA4 /* FIRPhoneAuthProviderTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DECE03991E9ECFF500164CA4 /* FIRPhoneAuthProviderTests.m */; };
- DEE13AA11EA170D500D1BABA /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DE6F01B11E9567BF004AEE01 /* FirebaseDev.framework */; };
- DEE14D7E1E844677006FA992 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DEE14D681E844677006FA992 /* LaunchScreen.storyboard */; };
- DEE14D7F1E844677006FA992 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DEE14D6A1E844677006FA992 /* Main.storyboard */; };
- DEE14D811E844677006FA992 /* FIRAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D6E1E844677006FA992 /* FIRAppDelegate.m */; };
- DEE14D821E844677006FA992 /* FIRViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D701E844677006FA992 /* FIRViewController.m */; };
- DEE14D831E844677006FA992 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = DEE14D711E844677006FA992 /* GoogleService-Info.plist */; };
- DEE14D851E844677006FA992 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D731E844677006FA992 /* main.m */; };
- DEE14D8E1E84468D006FA992 /* FIRAppAssociationRegistrationUnitTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D751E844677006FA992 /* FIRAppAssociationRegistrationUnitTests.m */; };
- DEE14D8F1E84468D006FA992 /* FIRAppTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D761E844677006FA992 /* FIRAppTest.m */; };
- DEE14D901E84468D006FA992 /* FIRBundleUtilTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D771E844677006FA992 /* FIRBundleUtilTest.m */; };
- DEE14D911E84468D006FA992 /* FIRConfigurationTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D781E844677006FA992 /* FIRConfigurationTest.m */; };
- DEE14D921E84468D006FA992 /* FIRLoggerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D791E844677006FA992 /* FIRLoggerTest.m */; };
- DEE14D931E84468D006FA992 /* FIROptionsTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D7A1E844677006FA992 /* FIROptionsTest.m */; };
- DEE14D941E84468D006FA992 /* FIRTestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D7C1E844677006FA992 /* FIRTestCase.m */; };
- EA9A4B8DCCA67EB6F9B4008F /* Pods_Messaging_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E9D28B14E5B756D3A1938CB2 /* Pods_Messaging_Tests.framework */; };
- /* End PBXBuildFile section */
- /* Begin PBXContainerItemProxy section */
- 06121EC61EC399D40008D70E /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 6003F582195388D10070C39A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DEB139E01E73506A00AC236D;
- remoteInfo = Storage_Example;
- };
- 0624F3E61EC0ECFA00E5940D /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 6003F582195388D10070C39A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DE7B8D041E8EF077009EB6DF;
- remoteInfo = Database_Example;
- };
- AFD563111EB140E100EA2233 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 6003F582195388D10070C39A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = AFD562E41EB13C6D00EA2233;
- remoteInfo = Messaging_Example;
- };
- DE3373971E73776F00881891 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 6003F582195388D10070C39A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DEB13A0A1E73507E00AC236D;
- remoteInfo = Storage_Tests;
- };
- DE6F01B91E957157004AEE01 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 6003F582195388D10070C39A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DE9315A61E8738460083EDBF;
- remoteInfo = Messaging_Tests;
- };
- DE7B8D1E1E8EF078009EB6DF /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 6003F582195388D10070C39A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DE7B8D041E8EF077009EB6DF;
- remoteInfo = Database_Example;
- };
- DE9314DF1E86C6BE0083EDBF /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 6003F582195388D10070C39A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DE9314C51E86C6BD0083EDBF;
- remoteInfo = Auth_Example;
- };
- DE9315861E86E9990083EDBF /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 6003F582195388D10070C39A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DE9314DD1E86C6BE0083EDBF;
- remoteInfo = Auth_Tests;
- };
- DEB13A251E73512500AC236D /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 6003F582195388D10070C39A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DEB139E01E73506A00AC236D;
- remoteInfo = Storage_Example;
- };
- DEB518591E9008CB0089C938 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 6003F582195388D10070C39A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DE7B8D1C1E8EF078009EB6DF;
- remoteInfo = Database_Tests;
- };
- DEE14D5A1E84464D006FA992 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 6003F582195388D10070C39A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DEE14D401E84464D006FA992;
- remoteInfo = Core_Example;
- };
- DEE14E0A1E844FDC006FA992 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 6003F582195388D10070C39A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DEE14D581E84464D006FA992;
- remoteInfo = Core_Tests;
- };
- /* End PBXContainerItemProxy section */
- /* Begin PBXFileReference section */
- 06121EBC1EC399C50008D70E /* Storage_IntegrationTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Storage_IntegrationTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 06121ECA1EC39A0B0008D70E /* FIRStorageIntegrationTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageIntegrationTests.m; sourceTree = "<group>"; };
- 0624F3E11EC0ECFA00E5940D /* Database_IntegrationTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Database_IntegrationTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 0637BA641EC0F99700CAEFD4 /* FirebaseDev.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseDev.framework; path = "../../../Library/Developer/Xcode/DerivedData/Firebase-dajssrvxpeovebatpcchwkfhwcjh/Build/Products/Debug-iphonesimulator/FirebaseDev-Core-Database-Root/FirebaseDev.framework"; sourceTree = "<group>"; };
- 063CB4471EBA7AE200038A59 /* FArraySortedDictionaryTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FArraySortedDictionaryTest.m; path = Database/Tests/Unit/FArraySortedDictionaryTest.m; sourceTree = SOURCE_ROOT; };
- 063CB4481EBA7AE200038A59 /* FCompoundHashTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FCompoundHashTest.m; path = Database/Tests/Unit/FCompoundHashTest.m; sourceTree = SOURCE_ROOT; };
- 063CB4491EBA7AE200038A59 /* FIRMutableDataTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FIRMutableDataTests.h; path = Database/Tests/Unit/FIRMutableDataTests.h; sourceTree = SOURCE_ROOT; };
- 063CB44A1EBA7AE200038A59 /* FIRMutableDataTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FIRMutableDataTests.m; path = Database/Tests/Unit/FIRMutableDataTests.m; sourceTree = SOURCE_ROOT; };
- 063CB44B1EBA7AE200038A59 /* FLevelDBStorageEngineTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FLevelDBStorageEngineTests.m; path = Database/Tests/Unit/FLevelDBStorageEngineTests.m; sourceTree = SOURCE_ROOT; };
- 063CB44C1EBA7AE200038A59 /* FNodeTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FNodeTests.m; path = Database/Tests/Unit/FNodeTests.m; sourceTree = SOURCE_ROOT; };
- 063CB44D1EBA7AE200038A59 /* FPathTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FPathTests.h; path = Database/Tests/Unit/FPathTests.h; sourceTree = SOURCE_ROOT; };
- 063CB44E1EBA7AE200038A59 /* FPathTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FPathTests.m; path = Database/Tests/Unit/FPathTests.m; sourceTree = SOURCE_ROOT; };
- 063CB44F1EBA7AE200038A59 /* FPersistenceManagerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FPersistenceManagerTest.m; path = Database/Tests/Unit/FPersistenceManagerTest.m; sourceTree = SOURCE_ROOT; };
- 063CB4501EBA7AE200038A59 /* FPruneForestTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FPruneForestTest.m; path = Database/Tests/Unit/FPruneForestTest.m; sourceTree = SOURCE_ROOT; };
- 063CB4511EBA7AE200038A59 /* FPruningTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FPruningTest.m; path = Database/Tests/Unit/FPruningTest.m; sourceTree = SOURCE_ROOT; };
- 063CB4521EBA7AE200038A59 /* FQueryParamsTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FQueryParamsTest.m; path = Database/Tests/Unit/FQueryParamsTest.m; sourceTree = SOURCE_ROOT; };
- 063CB4531EBA7AE200038A59 /* FRangeMergeTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FRangeMergeTest.m; path = Database/Tests/Unit/FRangeMergeTest.m; sourceTree = SOURCE_ROOT; };
- 063CB4541EBA7AE200038A59 /* FRepoInfoTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FRepoInfoTest.m; path = Database/Tests/Unit/FRepoInfoTest.m; sourceTree = SOURCE_ROOT; };
- 063CB4551EBA7AE200038A59 /* FSparseSnapshotTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FSparseSnapshotTests.h; path = Database/Tests/Unit/FSparseSnapshotTests.h; sourceTree = SOURCE_ROOT; };
- 063CB4561EBA7AE200038A59 /* FSparseSnapshotTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FSparseSnapshotTests.m; path = Database/Tests/Unit/FSparseSnapshotTests.m; sourceTree = SOURCE_ROOT; };
- 063CB4571EBA7AE200038A59 /* FSyncPointTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FSyncPointTests.h; path = Database/Tests/Unit/FSyncPointTests.h; sourceTree = SOURCE_ROOT; };
- 063CB4581EBA7AE200038A59 /* FSyncPointTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FSyncPointTests.m; path = Database/Tests/Unit/FSyncPointTests.m; sourceTree = SOURCE_ROOT; };
- 063CB4591EBA7AE200038A59 /* FTestBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FTestBase.h; path = Database/Tests/Helpers/FTestBase.h; sourceTree = SOURCE_ROOT; };
- 063CB45A1EBA7AE200038A59 /* FTestBase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FTestBase.m; path = Database/Tests/Helpers/FTestBase.m; sourceTree = SOURCE_ROOT; };
- 063CB45B1EBA7AE200038A59 /* FTrackedQueryManagerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FTrackedQueryManagerTest.m; path = Database/Tests/Unit/FTrackedQueryManagerTest.m; sourceTree = SOURCE_ROOT; };
- 063CB45C1EBA7AE200038A59 /* FUtilitiesTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FUtilitiesTest.m; path = Database/Tests/Unit/FUtilitiesTest.m; sourceTree = SOURCE_ROOT; };
- 063CB46E1EBA7AEF00038A59 /* FCompoundWriteTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FCompoundWriteTest.m; sourceTree = "<group>"; };
- 063CB46F1EBA7AEF00038A59 /* FConnectionTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FConnectionTest.m; path = Integration/FConnectionTest.m; sourceTree = "<group>"; };
- 063CB4701EBA7AEF00038A59 /* FData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FData.h; path = Integration/FData.h; sourceTree = "<group>"; };
- 063CB4711EBA7AEF00038A59 /* FData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FData.m; path = Integration/FData.m; sourceTree = "<group>"; };
- 063CB4721EBA7AEF00038A59 /* FDotInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FDotInfo.h; path = Integration/FDotInfo.h; sourceTree = "<group>"; };
- 063CB4731EBA7AEF00038A59 /* FDotInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FDotInfo.m; path = Integration/FDotInfo.m; sourceTree = "<group>"; };
- 063CB4741EBA7AEF00038A59 /* FEventTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FEventTests.h; path = Integration/FEventTests.h; sourceTree = "<group>"; };
- 063CB4751EBA7AEF00038A59 /* FEventTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FEventTests.m; path = Integration/FEventTests.m; sourceTree = "<group>"; };
- 063CB4761EBA7AEF00038A59 /* FIRAuthTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FIRAuthTests.m; path = Integration/FIRAuthTests.m; sourceTree = "<group>"; };
- 063CB4771EBA7AEF00038A59 /* FIRDatabaseQueryTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseQueryTests.h; path = Integration/FIRDatabaseQueryTests.h; sourceTree = "<group>"; };
- 063CB4781EBA7AEF00038A59 /* FIRDatabaseQueryTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseQueryTests.m; path = Integration/FIRDatabaseQueryTests.m; sourceTree = "<group>"; };
- 063CB4791EBA7AEF00038A59 /* FIRDatabaseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseTests.m; path = Integration/FIRDatabaseTests.m; sourceTree = "<group>"; };
- 063CB47A1EBA7AEF00038A59 /* FIRDataSnapshotTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRDataSnapshotTests.h; sourceTree = "<group>"; };
- 063CB47B1EBA7AEF00038A59 /* FIRDataSnapshotTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRDataSnapshotTests.m; sourceTree = "<group>"; };
- 063CB47C1EBA7AEF00038A59 /* FirebaseTests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "FirebaseTests-Info.plist"; sourceTree = "<group>"; };
- 063CB47D1EBA7AEF00038A59 /* FIRFakeApp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRFakeApp.h; sourceTree = "<group>"; };
- 063CB47E1EBA7AEF00038A59 /* FIRFakeApp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRFakeApp.m; sourceTree = "<group>"; };
- 063CB47F1EBA7AEF00038A59 /* FKeepSyncedTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FKeepSyncedTest.m; path = Integration/FKeepSyncedTest.m; sourceTree = "<group>"; };
- 063CB4801EBA7AEF00038A59 /* FOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FOrder.h; path = Integration/FOrder.h; sourceTree = "<group>"; };
- 063CB4811EBA7AEF00038A59 /* FOrder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FOrder.m; path = Integration/FOrder.m; sourceTree = "<group>"; };
- 063CB4821EBA7AEF00038A59 /* FOrderByTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FOrderByTests.h; path = Integration/FOrderByTests.h; sourceTree = "<group>"; };
- 063CB4831EBA7AEF00038A59 /* FOrderByTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FOrderByTests.m; path = Integration/FOrderByTests.m; sourceTree = "<group>"; };
- 063CB4841EBA7AEF00038A59 /* FPersist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FPersist.h; path = Integration/FPersist.h; sourceTree = "<group>"; };
- 063CB4851EBA7AEF00038A59 /* FPersist.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FPersist.m; path = Integration/FPersist.m; sourceTree = "<group>"; };
- 063CB4861EBA7AEF00038A59 /* FRealtime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FRealtime.h; path = Integration/FRealtime.h; sourceTree = "<group>"; };
- 063CB4871EBA7AEF00038A59 /* FRealtime.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FRealtime.m; path = Integration/FRealtime.m; sourceTree = "<group>"; };
- 063CB48D1EBA7AEF00038A59 /* FTestContants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTestContants.h; sourceTree = "<group>"; };
- 063CB48E1EBA7AEF00038A59 /* FTransactionTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FTransactionTest.h; path = Integration/FTransactionTest.h; sourceTree = "<group>"; };
- 063CB48F1EBA7AEF00038A59 /* FTransactionTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FTransactionTest.m; path = Integration/FTransactionTest.m; sourceTree = "<group>"; };
- 063CB4901EBA7AEF00038A59 /* FTreeSortedDictionaryTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTreeSortedDictionaryTests.m; sourceTree = "<group>"; };
- 0672F2F11EBBA7D900818E87 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
- 069428801EC3B35A00F7BC69 /* 1mb.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = 1mb.dat; sourceTree = "<group>"; };
- 0697B1201EC13D8A00542174 /* Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Base64.h; sourceTree = "<group>"; };
- 0697B1211EC13D8A00542174 /* Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Base64.m; sourceTree = "<group>"; };
- 06B47E8B1EC39ADF00170C02 /* FirebaseDev.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseDev.framework; path = "../../../Library/Developer/Xcode/DerivedData/Firebase-dajssrvxpeovebatpcchwkfhwcjh/Build/Products/Debug-iphonesimulator/FirebaseDev-Core-Root-Storage/FirebaseDev.framework"; sourceTree = "<group>"; };
- 08A821396D7D1089ECE810EF /* Pods_Core_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Core_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 0B1BDA534E1F49931795B5E6 /* Pods-Core_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Core_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Core_Tests/Pods-Core_Tests.release.xcconfig"; sourceTree = "<group>"; };
- 16E92590A6B517109A2B219F /* Pods_Storage_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Storage_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 18B5255FF5BEBF6F72C40F39 /* Pods-Auth_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Auth_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Auth_Tests/Pods-Auth_Tests.debug.xcconfig"; sourceTree = "<group>"; };
- 1EEA0F965ABC48C695972509 /* Pods_Auth_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Auth_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 2F002D4E7FA7F07A830CCFDA /* Pods-Auth_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Auth_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-Auth_Example/Pods-Auth_Example.release.xcconfig"; sourceTree = "<group>"; };
- 3673564CCB64DE360C8CB97F /* Pods-Storage_IntegrationTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Storage_IntegrationTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Storage_IntegrationTests/Pods-Storage_IntegrationTests.debug.xcconfig"; sourceTree = "<group>"; };
- 36DF4C7B93E6FE7AD8F88A38 /* Pods_Storage_IntegrationTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Storage_IntegrationTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3E84D28D93B8196D6A483F15 /* Pods-Storage_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Storage_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Storage_Tests/Pods-Storage_Tests.debug.xcconfig"; sourceTree = "<group>"; };
- 4A8B7AE7C053949F6BBBDD3E /* Pods-Database_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Database_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Database_Tests/Pods-Database_Tests.release.xcconfig"; sourceTree = "<group>"; };
- 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
- 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
- 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
- 60FCE4043D8FE42648646A7F /* Pods-Auth_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Auth_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Auth_Tests/Pods-Auth_Tests.release.xcconfig"; sourceTree = "<group>"; };
- 64928F2997FAF0EAEAC9B8CA /* Pods_Database_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Database_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 66C7EEA21795A3320088DEBE /* Pods_Database_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Database_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 6A0FCB2A37144B3C05E519F6 /* Pods-Storage_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Storage_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Storage_Example/Pods-Storage_Example.debug.xcconfig"; sourceTree = "<group>"; };
- 6BAD1CF3DDEDDD76EC87052D /* Pods-Storage_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Storage_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-Storage_Example/Pods-Storage_Example.release.xcconfig"; sourceTree = "<group>"; };
- 6D2E4A9396D707C5DEF9B74B /* Pods-Messaging_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Messaging_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Messaging_Tests/Pods-Messaging_Tests.release.xcconfig"; sourceTree = "<group>"; };
- 6E974DE29EBB9602E723757E /* Pods-Messaging_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Messaging_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Messaging_Tests/Pods-Messaging_Tests.debug.xcconfig"; sourceTree = "<group>"; };
- 7727BC17692B98E2B7D0EA7A /* Pods-Database_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Database_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Database_Example/Pods-Database_Example.debug.xcconfig"; sourceTree = "<group>"; };
- 8496034D8156555C5FCF8F14 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
- 884B87C50C7C950BC18E9091 /* Pods-Messaging_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Messaging_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Messaging_Example/Pods-Messaging_Example.debug.xcconfig"; sourceTree = "<group>"; };
- 8E32E359BE29C3100CF51FC4 /* Pods-Core_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Core_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Core_Tests/Pods-Core_Tests.debug.xcconfig"; sourceTree = "<group>"; };
- 8F77C04C2E764FBB0F6C05C6 /* Pods-Core_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Core_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-Core_Example/Pods-Core_Example.release.xcconfig"; sourceTree = "<group>"; };
- A6903B88963F6FD1857889E6 /* Pods-Messaging_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Messaging_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-Messaging_Example/Pods-Messaging_Example.release.xcconfig"; sourceTree = "<group>"; };
- AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Shared.xcassets; path = Shared/Shared.xcassets; sourceTree = "<group>"; };
- AFC8BA9C1EBD230E00B8EEAE /* NotificationsController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = NotificationsController.swift; path = App/NotificationsController.swift; sourceTree = "<group>"; };
- AFC8BA9E1EBD51A700B8EEAE /* Environment.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Environment.swift; path = App/Environment.swift; sourceTree = "<group>"; };
- AFC8BAA11EC257D700B8EEAE /* Messaging_Example-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Messaging_Example-Bridging-Header.h"; sourceTree = "<group>"; };
- AFC8BAA21EC257D800B8EEAE /* FIRSampleAppUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FIRSampleAppUtilities.h; path = Shared/FIRSampleAppUtilities.h; sourceTree = "<group>"; };
- AFC8BAA31EC257D800B8EEAE /* FIRSampleAppUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FIRSampleAppUtilities.m; path = Shared/FIRSampleAppUtilities.m; sourceTree = "<group>"; };
- AFD562E51EB13C6D00EA2233 /* Messaging_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Messaging_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
- AFD562FF1EB13DF200EA2233 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = App/AppDelegate.swift; sourceTree = "<group>"; };
- AFD563001EB13DF200EA2233 /* Messaging-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "Messaging-Info.plist"; path = "App/Messaging-Info.plist"; sourceTree = "<group>"; };
- AFD563011EB13DF200EA2233 /* MessagingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = MessagingViewController.swift; path = App/MessagingViewController.swift; sourceTree = "<group>"; };
- AFD563091EB1400900EA2233 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = App/Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
- AFD5630B1EB1400900EA2233 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = App/Base.lproj/Main.storyboard; sourceTree = "<group>"; };
- AFD563131EB1466100EA2233 /* GoogleService-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "GoogleService-Info.plist"; path = "App/GoogleService-Info.plist"; sourceTree = "<group>"; };
- AFD563141EB29B8C00EA2233 /* Messaging_Example.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = Messaging_Example.entitlements; path = App/Messaging_Example.entitlements; sourceTree = "<group>"; };
- AFD563161EBBEF7B00EA2233 /* Data+MessagingExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = "Data+MessagingExtensions.swift"; path = "App/Data+MessagingExtensions.swift"; sourceTree = "<group>"; };
- BEEA177FFAAB9FA02F898C51 /* Pods-Database_IntegrationTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Database_IntegrationTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Database_IntegrationTests/Pods-Database_IntegrationTests.release.xcconfig"; sourceTree = "<group>"; };
- C45949C3AB12F54D27702387 /* Pods-Auth_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Auth_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Auth_Example/Pods-Auth_Example.debug.xcconfig"; sourceTree = "<group>"; };
- C8A6D15690286B6BB4CB8023 /* Pods_Messaging_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Messaging_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CA86AD35456DA6130F7DE02C /* Pods-Storage_IntegrationTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Storage_IntegrationTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Storage_IntegrationTests/Pods-Storage_IntegrationTests.release.xcconfig"; sourceTree = "<group>"; };
- D52CEDD0146DF63640A4C3A5 /* Pods_Core_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Core_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- D58064F9C4DE303997B89D2E /* Pods-Storage_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Storage_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Storage_Tests/Pods-Storage_Tests.release.xcconfig"; sourceTree = "<group>"; };
- DA7879CD6EE51EE4E20937C8 /* Pods_Storage_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Storage_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- DE0E5BB51EA7D91C00FAA825 /* FIRAuthAppCredentialTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthAppCredentialTests.m; sourceTree = "<group>"; };
- DE0E5BB61EA7D91C00FAA825 /* FIRAuthAppDelegateProxyTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthAppDelegateProxyTests.m; sourceTree = "<group>"; };
- DE0E5BB91EA7D92E00FAA825 /* FIRVerifyClientRequestTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyClientRequestTest.m; sourceTree = "<group>"; };
- DE0E5BBA1EA7D92E00FAA825 /* FIRVerifyClientResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyClientResponseTests.m; sourceTree = "<group>"; };
- DE45C6641E7DA8CB009E6ACD /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
- DE4E711A1E953ABC00070092 /* FirebaseDev.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = FirebaseDev.podspec; path = ../FirebaseDev.podspec; sourceTree = "<group>"; };
- DE6F01AC1E95673C004AEE01 /* FirebaseDev.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseDev.framework; path = "../../../Library/Developer/Xcode/DerivedData/Firebase-chgkzndqfwnawrfmbrhkugiybjre/Build/Products/Debug-iphonesimulator/FirebaseDev-Core-Root-Storage/FirebaseDev.framework"; sourceTree = "<group>"; };
- DE6F01B11E9567BF004AEE01 /* FirebaseDev.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseDev.framework; path = "../../../Library/Developer/Xcode/DerivedData/Firebase-chgkzndqfwnawrfmbrhkugiybjre/Build/Products/Debug-iphonesimulator/FirebaseDev-Auth-Core-Root/FirebaseDev.framework"; sourceTree = "<group>"; };
- DE6F01B31E9567F1004AEE01 /* FirebaseDev.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseDev.framework; path = "../../../Library/Developer/Xcode/DerivedData/Firebase-chgkzndqfwnawrfmbrhkugiybjre/Build/Products/Debug-iphonesimulator/FirebaseDev-Core/FirebaseDev.framework"; sourceTree = "<group>"; };
- DE750DB51EB3DD4000A75E47 /* FIRAuthAPNSTokenManagerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthAPNSTokenManagerTests.m; sourceTree = "<group>"; };
- DE750DB61EB3DD4000A75E47 /* FIRAuthAPNSTokenTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthAPNSTokenTests.m; sourceTree = "<group>"; };
- DE750DB71EB3DD4000A75E47 /* FIRAuthAppCredentialManagerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthAppCredentialManagerTests.m; sourceTree = "<group>"; };
- DE750DB81EB3DD4000A75E47 /* FIRAuthNotificationManagerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthNotificationManagerTests.m; sourceTree = "<group>"; };
- DE7B8D051E8EF077009EB6DF /* Database_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Database_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DE7B8D1D1E8EF078009EB6DF /* Database_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Database_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- DE7B8D2D1E8EF202009EB6DF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
- DE7B8D2F1E8EF202009EB6DF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
- DE7B8D311E8EF202009EB6DF /* FIRAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRAppDelegate.h; sourceTree = "<group>"; };
- DE7B8D321E8EF202009EB6DF /* FIRAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAppDelegate.m; sourceTree = "<group>"; };
- DE7B8D331E8EF202009EB6DF /* FIRViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRViewController.h; sourceTree = "<group>"; };
- DE7B8D341E8EF202009EB6DF /* FIRViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRViewController.m; sourceTree = "<group>"; };
- DE7B8D371E8EF202009EB6DF /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- DE7B8D6A1E8EF202009EB6DF /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- DE7B8D781E8EF202009EB6DF /* FDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDevice.h; sourceTree = "<group>"; };
- DE7B8D791E8EF202009EB6DF /* FDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FDevice.m; sourceTree = "<group>"; };
- DE7B8D7A1E8EF202009EB6DF /* FEventTester.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FEventTester.h; sourceTree = "<group>"; };
- DE7B8D7B1E8EF202009EB6DF /* FEventTester.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FEventTester.m; sourceTree = "<group>"; };
- DE7B8D7C1E8EF202009EB6DF /* FIRTestAuthTokenProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRTestAuthTokenProvider.h; sourceTree = "<group>"; };
- DE7B8D7D1E8EF202009EB6DF /* FIRTestAuthTokenProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRTestAuthTokenProvider.m; sourceTree = "<group>"; };
- DE7B8D7E1E8EF202009EB6DF /* FMockStorageEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMockStorageEngine.h; sourceTree = "<group>"; };
- DE7B8D7F1E8EF202009EB6DF /* FMockStorageEngine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMockStorageEngine.m; sourceTree = "<group>"; };
- DE7B8D801E8EF202009EB6DF /* FTestAuthTokenGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTestAuthTokenGenerator.h; sourceTree = "<group>"; };
- DE7B8D811E8EF202009EB6DF /* FTestAuthTokenGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTestAuthTokenGenerator.m; sourceTree = "<group>"; };
- DE7B8D821E8EF202009EB6DF /* FTestCachePolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTestCachePolicy.h; sourceTree = "<group>"; };
- DE7B8D831E8EF202009EB6DF /* FTestCachePolicy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTestCachePolicy.m; sourceTree = "<group>"; };
- DE7B8D841E8EF202009EB6DF /* FTestClock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTestClock.h; sourceTree = "<group>"; };
- DE7B8D851E8EF202009EB6DF /* FTestClock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTestClock.m; sourceTree = "<group>"; };
- DE7B8D861E8EF202009EB6DF /* FTestExpectations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTestExpectations.h; sourceTree = "<group>"; };
- DE7B8D871E8EF202009EB6DF /* FTestExpectations.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTestExpectations.m; sourceTree = "<group>"; };
- DE7B8D881E8EF202009EB6DF /* FTestHelpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTestHelpers.h; sourceTree = "<group>"; };
- DE7B8D891E8EF202009EB6DF /* FTestHelpers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTestHelpers.m; sourceTree = "<group>"; };
- DE7B8D8A1E8EF203009EB6DF /* FTupleEventTypeString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTupleEventTypeString.h; sourceTree = "<group>"; };
- DE7B8D8B1E8EF203009EB6DF /* FTupleEventTypeString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTupleEventTypeString.m; sourceTree = "<group>"; };
- DE7B8D8C1E8EF203009EB6DF /* SenTest+FWaiter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SenTest+FWaiter.h"; sourceTree = "<group>"; };
- DE7B8D8D1E8EF203009EB6DF /* SenTest+FWaiter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "SenTest+FWaiter.m"; sourceTree = "<group>"; };
- DE7B8D8E1E8EF203009EB6DF /* syncPointSpec.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = syncPointSpec.json; sourceTree = "<group>"; };
- DE7B8DD21E8F1CA7009EB6DF /* Database-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Database-Info.plist"; sourceTree = "<group>"; };
- DE9314C61E86C6BD0083EDBF /* Auth_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Auth_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DE9314DE1E86C6BE0083EDBF /* Auth_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Auth_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- DE9314EE1E86C6FF0083EDBF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
- DE9314F01E86C6FF0083EDBF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
- DE9314F21E86C6FF0083EDBF /* FIRAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRAppDelegate.h; sourceTree = "<group>"; };
- DE9314F31E86C6FF0083EDBF /* FIRAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAppDelegate.m; sourceTree = "<group>"; };
- DE9314F41E86C6FF0083EDBF /* FIRViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRViewController.h; sourceTree = "<group>"; };
- DE9314F51E86C6FF0083EDBF /* FIRViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRViewController.m; sourceTree = "<group>"; };
- DE9314F61E86C6FF0083EDBF /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
- DE9314F81E86C6FF0083EDBF /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- DE9314FA1E86C6FF0083EDBF /* FIRAdditionalUserInfoTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAdditionalUserInfoTests.m; sourceTree = "<group>"; };
- DE9314FB1E86C6FF0083EDBF /* FIRApp+FIRAuthUnitTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FIRApp+FIRAuthUnitTests.h"; sourceTree = "<group>"; };
- DE9314FC1E86C6FF0083EDBF /* FIRApp+FIRAuthUnitTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "FIRApp+FIRAuthUnitTests.m"; sourceTree = "<group>"; };
- DE9314FD1E86C6FF0083EDBF /* FIRAuthBackendCreateAuthURITests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthBackendCreateAuthURITests.m; sourceTree = "<group>"; };
- DE9314FE1E86C6FF0083EDBF /* FIRAuthBackendRPCImplementationTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthBackendRPCImplementationTests.m; sourceTree = "<group>"; };
- DE9314FF1E86C6FF0083EDBF /* FIRAuthDispatcherTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthDispatcherTests.m; sourceTree = "<group>"; };
- DE9315001E86C6FF0083EDBF /* FIRAuthGlobalWorkQueueTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthGlobalWorkQueueTests.m; sourceTree = "<group>"; };
- DE9315011E86C6FF0083EDBF /* FIRAuthKeychainTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthKeychainTests.m; sourceTree = "<group>"; };
- DE9315021E86C6FF0083EDBF /* FIRAuthSerialTaskQueueTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthSerialTaskQueueTests.m; sourceTree = "<group>"; };
- DE9315031E86C6FF0083EDBF /* FIRAuthTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthTests.m; sourceTree = "<group>"; };
- DE9315041E86C6FF0083EDBF /* FIRAuthUserDefaultsStorageTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthUserDefaultsStorageTests.m; sourceTree = "<group>"; };
- DE9315051E86C6FF0083EDBF /* FIRCreateAuthURIRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRCreateAuthURIRequestTests.m; sourceTree = "<group>"; };
- DE9315061E86C6FF0083EDBF /* FIRCreateAuthURIResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRCreateAuthURIResponseTests.m; sourceTree = "<group>"; };
- DE9315071E86C6FF0083EDBF /* FIRDeleteAccountRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRDeleteAccountRequestTests.m; sourceTree = "<group>"; };
- DE9315081E86C6FF0083EDBF /* FIRDeleteAccountResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRDeleteAccountResponseTests.m; sourceTree = "<group>"; };
- DE9315091E86C6FF0083EDBF /* FIRFakeBackendRPCIssuer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRFakeBackendRPCIssuer.h; sourceTree = "<group>"; };
- DE93150A1E86C6FF0083EDBF /* FIRFakeBackendRPCIssuer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRFakeBackendRPCIssuer.m; sourceTree = "<group>"; };
- DE93150B1E86C6FF0083EDBF /* FIRGetAccountInfoRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRGetAccountInfoRequestTests.m; sourceTree = "<group>"; };
- DE93150C1E86C6FF0083EDBF /* FIRGetAccountInfoResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRGetAccountInfoResponseTests.m; sourceTree = "<group>"; };
- DE93150D1E86C6FF0083EDBF /* FIRGetOOBConfirmationCodeRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRGetOOBConfirmationCodeRequestTests.m; sourceTree = "<group>"; };
- DE93150E1E86C6FF0083EDBF /* FIRGetOOBConfirmationCodeResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRGetOOBConfirmationCodeResponseTests.m; sourceTree = "<group>"; };
- DE93150F1E86C6FF0083EDBF /* FIRGitHubAuthProviderTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRGitHubAuthProviderTests.m; sourceTree = "<group>"; };
- DE9315111E86C6FF0083EDBF /* FIRResetPasswordRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRResetPasswordRequestTests.m; sourceTree = "<group>"; };
- DE9315121E86C6FF0083EDBF /* FIRResetPasswordResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRResetPasswordResponseTests.m; sourceTree = "<group>"; };
- DE9315131E86C6FF0083EDBF /* FIRSendVerificationCodeRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRSendVerificationCodeRequestTests.m; sourceTree = "<group>"; };
- DE9315141E86C6FF0083EDBF /* FIRSendVerificationCodeResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRSendVerificationCodeResponseTests.m; sourceTree = "<group>"; };
- DE9315151E86C6FF0083EDBF /* FIRSetAccountInfoRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRSetAccountInfoRequestTests.m; sourceTree = "<group>"; };
- DE9315161E86C6FF0083EDBF /* FIRSetAccountInfoResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRSetAccountInfoResponseTests.m; sourceTree = "<group>"; };
- DE9315171E86C6FF0083EDBF /* FIRSignUpNewUserRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRSignUpNewUserRequestTests.m; sourceTree = "<group>"; };
- DE9315181E86C6FF0083EDBF /* FIRSignUpNewUserResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRSignUpNewUserResponseTests.m; sourceTree = "<group>"; };
- DE9315191E86C6FF0083EDBF /* FIRTwitterAuthProviderTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRTwitterAuthProviderTests.m; sourceTree = "<group>"; };
- DE93151A1E86C6FF0083EDBF /* FIRUserTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRUserTests.m; sourceTree = "<group>"; };
- DE93151B1E86C6FF0083EDBF /* FIRVerifyAssertionRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyAssertionRequestTests.m; sourceTree = "<group>"; };
- DE93151C1E86C6FF0083EDBF /* FIRVerifyAssertionResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyAssertionResponseTests.m; sourceTree = "<group>"; };
- DE93151D1E86C6FF0083EDBF /* FIRVerifyCustomTokenRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyCustomTokenRequestTests.m; sourceTree = "<group>"; };
- DE93151E1E86C6FF0083EDBF /* FIRVerifyCustomTokenResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyCustomTokenResponseTests.m; sourceTree = "<group>"; };
- DE93151F1E86C6FF0083EDBF /* FIRVerifyPasswordRequestTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyPasswordRequestTest.m; sourceTree = "<group>"; };
- DE9315201E86C6FF0083EDBF /* FIRVerifyPasswordResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyPasswordResponseTests.m; sourceTree = "<group>"; };
- DE9315211E86C6FF0083EDBF /* FIRVerifyPhoneNumberRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyPhoneNumberRequestTests.m; sourceTree = "<group>"; };
- DE9315221E86C6FF0083EDBF /* FIRVerifyPhoneNumberResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyPhoneNumberResponseTests.m; sourceTree = "<group>"; };
- DE9315231E86C6FF0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "OCMStubRecorder+FIRAuthUnitTests.h"; sourceTree = "<group>"; };
- DE9315241E86C6FF0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "OCMStubRecorder+FIRAuthUnitTests.m"; sourceTree = "<group>"; };
- DE9315251E86C6FF0083EDBF /* Tests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
- DE9315801E86C7F70083EDBF /* Auth-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Auth-Info.plist"; sourceTree = "<group>"; };
- DE9315A71E8738460083EDBF /* Messaging_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Messaging_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- DE9315C31E8738B70083EDBF /* FIRMessagingClientTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingClientTest.m; sourceTree = "<group>"; };
- DE9315C41E8738B70083EDBF /* FIRMessagingCodedInputStreamTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingCodedInputStreamTest.m; sourceTree = "<group>"; };
- DE9315C51E8738B70083EDBF /* FIRMessagingConnectionTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingConnectionTest.m; sourceTree = "<group>"; };
- DE9315C61E8738B70083EDBF /* FIRMessagingContextManagerServiceTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingContextManagerServiceTest.m; sourceTree = "<group>"; };
- DE9315C71E8738B70083EDBF /* FIRMessagingDataMessageManagerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingDataMessageManagerTest.m; sourceTree = "<group>"; };
- DE9315C81E8738B70083EDBF /* FIRMessagingFakeConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRMessagingFakeConnection.h; sourceTree = "<group>"; };
- DE9315C91E8738B70083EDBF /* FIRMessagingFakeConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingFakeConnection.m; sourceTree = "<group>"; };
- DE9315CA1E8738B70083EDBF /* FIRMessagingFakeSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRMessagingFakeSocket.h; sourceTree = "<group>"; };
- DE9315CB1E8738B70083EDBF /* FIRMessagingFakeSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingFakeSocket.m; sourceTree = "<group>"; };
- DE9315CC1E8738B70083EDBF /* FIRMessagingLinkHandlingTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingLinkHandlingTest.m; sourceTree = "<group>"; };
- DE9315CD1E8738B70083EDBF /* FIRMessagingPendingTopicsListTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingPendingTopicsListTest.m; sourceTree = "<group>"; };
- DE9315CE1E8738B70083EDBF /* FIRMessagingPubSubTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingPubSubTest.m; sourceTree = "<group>"; };
- DE9315CF1E8738B70083EDBF /* FIRMessagingRegistrarTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingRegistrarTest.m; sourceTree = "<group>"; };
- DE9315D01E8738B70083EDBF /* FIRMessagingRemoteNotificationsProxyTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingRemoteNotificationsProxyTest.m; sourceTree = "<group>"; };
- DE9315D11E8738B70083EDBF /* FIRMessagingRmqManagerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingRmqManagerTest.m; sourceTree = "<group>"; };
- DE9315D21E8738B70083EDBF /* FIRMessagingSecureSocketTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingSecureSocketTest.m; sourceTree = "<group>"; };
- DE9315D31E8738B70083EDBF /* FIRMessagingServiceTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingServiceTest.m; sourceTree = "<group>"; };
- DE9315D41E8738B70083EDBF /* FIRMessagingSyncMessageManagerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingSyncMessageManagerTest.m; sourceTree = "<group>"; };
- DE9315D51E8738B70083EDBF /* FIRMessagingTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingTest.m; sourceTree = "<group>"; };
- DE9315D61E8738B70083EDBF /* FIRMessagingTestNotificationUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRMessagingTestNotificationUtilities.h; sourceTree = "<group>"; };
- DE9315D71E8738B70083EDBF /* FIRMessagingTestNotificationUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingTestNotificationUtilities.m; sourceTree = "<group>"; };
- DE9315D81E8738B70083EDBF /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- DEB139C11E734D9D00AC236D /* FIRStorageDeleteTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageDeleteTests.m; sourceTree = "<group>"; };
- DEB139C21E734D9D00AC236D /* FIRStorageGetMetadataTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageGetMetadataTests.m; sourceTree = "<group>"; };
- DEB139C31E734D9D00AC236D /* FIRStorageMetadataTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageMetadataTests.m; sourceTree = "<group>"; };
- DEB139C41E734D9D00AC236D /* FIRStoragePathTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStoragePathTests.m; sourceTree = "<group>"; };
- DEB139C51E734D9D00AC236D /* FIRStorageReferenceTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageReferenceTests.m; sourceTree = "<group>"; };
- DEB139C61E734D9D00AC236D /* FIRStorageTestHelpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRStorageTestHelpers.h; sourceTree = "<group>"; };
- DEB139C71E734D9D00AC236D /* FIRStorageTestHelpers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageTestHelpers.m; sourceTree = "<group>"; };
- DEB139C81E734D9D00AC236D /* FIRStorageTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageTests.m; sourceTree = "<group>"; };
- DEB139C91E734D9D00AC236D /* FIRStorageTokenAuthorizerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageTokenAuthorizerTests.m; sourceTree = "<group>"; };
- DEB139CA1E734D9D00AC236D /* FIRStorageUpdateMetadataTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageUpdateMetadataTests.m; sourceTree = "<group>"; };
- DEB139CB1E734D9D00AC236D /* FIRStorageUtilsTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageUtilsTests.m; sourceTree = "<group>"; };
- DEB139CC1E734D9D00AC236D /* Tests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
- DEB13A081E73506A00AC236D /* Storage_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Storage_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DEB13A231E73507E00AC236D /* Storage_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Storage_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- DEB61E781E7C542600C04B96 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
- DEB61EBA1E7C5DBB00C04B96 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
- DEB61EBC1E7C5DBB00C04B96 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
- DEB61EBD1E7C5DBB00C04B96 /* FIRAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRAppDelegate.h; sourceTree = "<group>"; };
- DEB61EBE1E7C5DBB00C04B96 /* FIRAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAppDelegate.m; sourceTree = "<group>"; };
- DEB61EBF1E7C5DBB00C04B96 /* FIRViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRViewController.h; sourceTree = "<group>"; };
- DEB61EC01E7C5DBB00C04B96 /* FIRViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRViewController.m; sourceTree = "<group>"; };
- DEB61EC11E7C5DBB00C04B96 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
- DEB61EC31E7C5DBB00C04B96 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- DEB61EC41E7C5DBB00C04B96 /* Storage-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Storage-Info.plist"; sourceTree = "<group>"; };
- DEC0EE0E1EA42D5D007E2177 /* FirebaseDev.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseDev.framework; path = "../../../Library/Developer/Xcode/DerivedData/Firebase-chgkzndqfwnawrfmbrhkugiybjre/Build/Products/Debug-iphonesimulator/FirebaseDev-Core-Messaging-Root/FirebaseDev.framework"; sourceTree = "<group>"; };
- DEC0EE101EA42D73007E2177 /* FirebaseDev.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseDev.framework; path = "../../../Library/Developer/Xcode/DerivedData/Firebase-chgkzndqfwnawrfmbrhkugiybjre/Build/Products/Debug-iphonesimulator/FirebaseDev-Core-Database-Root/FirebaseDev.framework"; sourceTree = "<group>"; };
- DECE03991E9ECFF500164CA4 /* FIRPhoneAuthProviderTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRPhoneAuthProviderTests.m; sourceTree = "<group>"; };
- DEE14D411E84464D006FA992 /* Core_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Core_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DEE14D591E84464D006FA992 /* Core_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Core_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- DEE14D691E844677006FA992 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
- DEE14D6B1E844677006FA992 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
- DEE14D6C1E844677006FA992 /* Core-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Core-Info.plist"; sourceTree = "<group>"; };
- DEE14D6D1E844677006FA992 /* FIRAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRAppDelegate.h; sourceTree = "<group>"; };
- DEE14D6E1E844677006FA992 /* FIRAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAppDelegate.m; sourceTree = "<group>"; };
- DEE14D6F1E844677006FA992 /* FIRViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRViewController.h; sourceTree = "<group>"; };
- DEE14D701E844677006FA992 /* FIRViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRViewController.m; sourceTree = "<group>"; };
- DEE14D711E844677006FA992 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
- DEE14D731E844677006FA992 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- DEE14D751E844677006FA992 /* FIRAppAssociationRegistrationUnitTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAppAssociationRegistrationUnitTests.m; sourceTree = "<group>"; };
- DEE14D761E844677006FA992 /* FIRAppTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAppTest.m; sourceTree = "<group>"; };
- DEE14D771E844677006FA992 /* FIRBundleUtilTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRBundleUtilTest.m; sourceTree = "<group>"; };
- DEE14D781E844677006FA992 /* FIRConfigurationTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRConfigurationTest.m; sourceTree = "<group>"; };
- DEE14D791E844677006FA992 /* FIRLoggerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRLoggerTest.m; sourceTree = "<group>"; };
- DEE14D7A1E844677006FA992 /* FIROptionsTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIROptionsTest.m; sourceTree = "<group>"; };
- DEE14D7B1E844677006FA992 /* FIRTestCase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRTestCase.h; sourceTree = "<group>"; };
- DEE14D7C1E844677006FA992 /* FIRTestCase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRTestCase.m; sourceTree = "<group>"; };
- DEE14D7D1E844677006FA992 /* Tests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
- E2C2834C90DBAB56D568189F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
- E3DEB3CBB1440528DFE1E197 /* Pods_Database_IntegrationTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Database_IntegrationTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- E9D28B14E5B756D3A1938CB2 /* Pods_Messaging_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Messaging_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- EE077EBC5A738E61E06B5FA2 /* Pods-Database_IntegrationTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Database_IntegrationTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Database_IntegrationTests/Pods-Database_IntegrationTests.debug.xcconfig"; sourceTree = "<group>"; };
- EEA5C6257533CD27D37A14FC /* Pods-Database_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Database_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-Database_Example/Pods-Database_Example.release.xcconfig"; sourceTree = "<group>"; };
- F0A9002767E1A9D63CEECFF6 /* Pods-Database_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Database_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Database_Tests/Pods-Database_Tests.debug.xcconfig"; sourceTree = "<group>"; };
- FAB9666F29A81704CA956317 /* Pods_Auth_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Auth_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- FF57915145DB00008E7C56A8 /* Pods-Core_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Core_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Core_Example/Pods-Core_Example.debug.xcconfig"; sourceTree = "<group>"; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 06121EB91EC399C50008D70E /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 06B47E8C1EC39ADF00170C02 /* FirebaseDev.framework in Frameworks */,
- 8D14BB390A3E191CCF78BF91 /* Pods_Storage_IntegrationTests.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0624F3DE1EC0ECFA00E5940D /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 0637BA651EC0F99700CAEFD4 /* FirebaseDev.framework in Frameworks */,
- 9653E6AB7DDD8B5E4814442D /* Pods_Database_IntegrationTests.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- AFD562E21EB13C6D00EA2233 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 83C9C772827554752364B400 /* Pods_Messaging_Example.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE7B8D021E8EF077009EB6DF /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 48402D5F3CB17E091298C7FF /* Pods_Database_Example.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE7B8D1A1E8EF078009EB6DF /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DEC0EE111EA42D73007E2177 /* FirebaseDev.framework in Frameworks */,
- 260F4B35536ACE792D9BD6C6 /* Pods_Database_Tests.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE9314C31E86C6BD0083EDBF /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 22DD1E787F5347BD66CC842B /* Pods_Auth_Example.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE9314DB1E86C6BE0083EDBF /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DEE13AA11EA170D500D1BABA /* FirebaseDev.framework in Frameworks */,
- 4768966C0C99B8D4215826A5 /* Pods_Auth_Tests.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE9315A41E8738460083EDBF /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DEC0EE0F1EA42D5D007E2177 /* FirebaseDev.framework in Frameworks */,
- EA9A4B8DCCA67EB6F9B4008F /* Pods_Messaging_Tests.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DEB139F31E73506A00AC236D /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DEB139F41E73506A00AC236D /* CoreGraphics.framework in Frameworks */,
- DEB139F51E73506A00AC236D /* UIKit.framework in Frameworks */,
- DEB139F61E73506A00AC236D /* Foundation.framework in Frameworks */,
- BDE625D72CA3B8918088E0F5 /* Pods_Storage_Example.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DEB13A161E73507E00AC236D /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DE6F01B01E95675E004AEE01 /* FirebaseDev.framework in Frameworks */,
- 7EA36B802D84DD89CE6203A0 /* Pods_Storage_Tests.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DEE14D3E1E84464D006FA992 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 3054DA05818345789EA0C5B0 /* Pods_Core_Example.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DEE14D561E84464D006FA992 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DEC0EE0D1EA427CC007E2177 /* FirebaseDev.framework in Frameworks */,
- 8CE9133C8720B1C600F7C731 /* Pods_Core_Tests.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 06121EC81EC399E50008D70E /* Unit */ = {
- isa = PBXGroup;
- children = (
- DEB139C61E734D9D00AC236D /* FIRStorageTestHelpers.h */,
- DEB139C11E734D9D00AC236D /* FIRStorageDeleteTests.m */,
- DEB139C21E734D9D00AC236D /* FIRStorageGetMetadataTests.m */,
- DEB139C31E734D9D00AC236D /* FIRStorageMetadataTests.m */,
- DEB139C41E734D9D00AC236D /* FIRStoragePathTests.m */,
- DEB139C51E734D9D00AC236D /* FIRStorageReferenceTests.m */,
- DEB139C71E734D9D00AC236D /* FIRStorageTestHelpers.m */,
- DEB139C81E734D9D00AC236D /* FIRStorageTests.m */,
- DEB139C91E734D9D00AC236D /* FIRStorageTokenAuthorizerTests.m */,
- DEB139CA1E734D9D00AC236D /* FIRStorageUpdateMetadataTests.m */,
- DEB139CB1E734D9D00AC236D /* FIRStorageUtilsTests.m */,
- );
- path = Unit;
- sourceTree = "<group>";
- };
- 06121EC91EC39A020008D70E /* Integration */ = {
- isa = PBXGroup;
- children = (
- 06121ECA1EC39A0B0008D70E /* FIRStorageIntegrationTests.m */,
- );
- path = Integration;
- sourceTree = "<group>";
- };
- 063CB43C1EBA752300038A59 /* Integration */ = {
- isa = PBXGroup;
- children = (
- 063CB46F1EBA7AEF00038A59 /* FConnectionTest.m */,
- 063CB4701EBA7AEF00038A59 /* FData.h */,
- 063CB4711EBA7AEF00038A59 /* FData.m */,
- 063CB4721EBA7AEF00038A59 /* FDotInfo.h */,
- 063CB4731EBA7AEF00038A59 /* FDotInfo.m */,
- 063CB4741EBA7AEF00038A59 /* FEventTests.h */,
- 063CB4751EBA7AEF00038A59 /* FEventTests.m */,
- 063CB4761EBA7AEF00038A59 /* FIRAuthTests.m */,
- 063CB4771EBA7AEF00038A59 /* FIRDatabaseQueryTests.h */,
- 063CB4781EBA7AEF00038A59 /* FIRDatabaseQueryTests.m */,
- 063CB4791EBA7AEF00038A59 /* FIRDatabaseTests.m */,
- 063CB47F1EBA7AEF00038A59 /* FKeepSyncedTest.m */,
- 063CB4801EBA7AEF00038A59 /* FOrder.h */,
- 063CB4811EBA7AEF00038A59 /* FOrder.m */,
- 063CB4821EBA7AEF00038A59 /* FOrderByTests.h */,
- 063CB4831EBA7AEF00038A59 /* FOrderByTests.m */,
- 063CB4841EBA7AEF00038A59 /* FPersist.h */,
- 063CB4851EBA7AEF00038A59 /* FPersist.m */,
- 063CB4861EBA7AEF00038A59 /* FRealtime.h */,
- 063CB4871EBA7AEF00038A59 /* FRealtime.m */,
- 063CB48E1EBA7AEF00038A59 /* FTransactionTest.h */,
- 063CB48F1EBA7AEF00038A59 /* FTransactionTest.m */,
- );
- name = Integration;
- sourceTree = "<group>";
- };
- 0697B11F1EC13D7800542174 /* third_party */ = {
- isa = PBXGroup;
- children = (
- 0697B1201EC13D8A00542174 /* Base64.h */,
- 0697B1211EC13D8A00542174 /* Base64.m */,
- );
- path = third_party;
- sourceTree = "<group>";
- };
- 6003F581195388D10070C39A = {
- isa = PBXGroup;
- children = (
- 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,
- DE9314EB1E86C6FF0083EDBF /* Auth */,
- DEE14D661E844677006FA992 /* Core */,
- DE7B8D2A1E8EF202009EB6DF /* Database */,
- DE9315B41E8738B70083EDBF /* Messaging */,
- AFC8BAA01EC24B1600B8EEAE /* Shared */,
- DEB139B31E734D9D00AC236D /* Storage */,
- 6003F58C195388D20070C39A /* Frameworks */,
- 6003F58B195388D20070C39A /* Products */,
- BDA0613720DCD29C1C3C3791 /* Pods */,
- );
- sourceTree = "<group>";
- };
- 6003F58B195388D20070C39A /* Products */ = {
- isa = PBXGroup;
- children = (
- DEB13A081E73506A00AC236D /* Storage_Example.app */,
- DEB13A231E73507E00AC236D /* Storage_Tests.xctest */,
- DEE14D411E84464D006FA992 /* Core_Example.app */,
- DEE14D591E84464D006FA992 /* Core_Tests.xctest */,
- DE9314C61E86C6BD0083EDBF /* Auth_Example.app */,
- DE9314DE1E86C6BE0083EDBF /* Auth_Tests.xctest */,
- DE9315A71E8738460083EDBF /* Messaging_Tests.xctest */,
- DE7B8D051E8EF077009EB6DF /* Database_Example.app */,
- DE7B8D1D1E8EF078009EB6DF /* Database_Tests.xctest */,
- AFD562E51EB13C6D00EA2233 /* Messaging_Example.app */,
- 0624F3E11EC0ECFA00E5940D /* Database_IntegrationTests.xctest */,
- 06121EBC1EC399C50008D70E /* Storage_IntegrationTests.xctest */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 6003F58C195388D20070C39A /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 06B47E8B1EC39ADF00170C02 /* FirebaseDev.framework */,
- 0637BA641EC0F99700CAEFD4 /* FirebaseDev.framework */,
- DEC0EE101EA42D73007E2177 /* FirebaseDev.framework */,
- DEC0EE0E1EA42D5D007E2177 /* FirebaseDev.framework */,
- DE6F01B31E9567F1004AEE01 /* FirebaseDev.framework */,
- DE6F01B11E9567BF004AEE01 /* FirebaseDev.framework */,
- DE6F01AC1E95673C004AEE01 /* FirebaseDev.framework */,
- DE45C6641E7DA8CB009E6ACD /* XCTest.framework */,
- DEB61E781E7C542600C04B96 /* libsqlite3.tbd */,
- 6003F58D195388D20070C39A /* Foundation.framework */,
- 6003F58F195388D20070C39A /* CoreGraphics.framework */,
- 6003F591195388D20070C39A /* UIKit.framework */,
- 1EEA0F965ABC48C695972509 /* Pods_Auth_Example.framework */,
- FAB9666F29A81704CA956317 /* Pods_Auth_Tests.framework */,
- 08A821396D7D1089ECE810EF /* Pods_Core_Example.framework */,
- D52CEDD0146DF63640A4C3A5 /* Pods_Core_Tests.framework */,
- 66C7EEA21795A3320088DEBE /* Pods_Database_Example.framework */,
- 64928F2997FAF0EAEAC9B8CA /* Pods_Database_Tests.framework */,
- C8A6D15690286B6BB4CB8023 /* Pods_Messaging_Example.framework */,
- E9D28B14E5B756D3A1938CB2 /* Pods_Messaging_Tests.framework */,
- DA7879CD6EE51EE4E20937C8 /* Pods_Storage_Example.framework */,
- 16E92590A6B517109A2B219F /* Pods_Storage_Tests.framework */,
- E3DEB3CBB1440528DFE1E197 /* Pods_Database_IntegrationTests.framework */,
- 36DF4C7B93E6FE7AD8F88A38 /* Pods_Storage_IntegrationTests.framework */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {
- isa = PBXGroup;
- children = (
- DE4E711A1E953ABC00070092 /* FirebaseDev.podspec */,
- 8496034D8156555C5FCF8F14 /* README.md */,
- E2C2834C90DBAB56D568189F /* LICENSE */,
- );
- name = "Podspec Metadata";
- sourceTree = "<group>";
- };
- AFC8BAA01EC24B1600B8EEAE /* Shared */ = {
- isa = PBXGroup;
- children = (
- AFC8BAA21EC257D800B8EEAE /* FIRSampleAppUtilities.h */,
- AFC8BAA31EC257D800B8EEAE /* FIRSampleAppUtilities.m */,
- AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */,
- );
- name = Shared;
- sourceTree = "<group>";
- };
- AFD562F71EB13CC700EA2233 /* App */ = {
- isa = PBXGroup;
- children = (
- AFD563001EB13DF200EA2233 /* Messaging-Info.plist */,
- AFD563141EB29B8C00EA2233 /* Messaging_Example.entitlements */,
- AFD562FF1EB13DF200EA2233 /* AppDelegate.swift */,
- AFD563161EBBEF7B00EA2233 /* Data+MessagingExtensions.swift */,
- AFC8BA9E1EBD51A700B8EEAE /* Environment.swift */,
- AFD563011EB13DF200EA2233 /* MessagingViewController.swift */,
- AFC8BA9C1EBD230E00B8EEAE /* NotificationsController.swift */,
- AFD563081EB1400900EA2233 /* LaunchScreen.storyboard */,
- AFD5630A1EB1400900EA2233 /* Main.storyboard */,
- AFD563131EB1466100EA2233 /* GoogleService-Info.plist */,
- );
- name = App;
- sourceTree = "<group>";
- };
- BDA0613720DCD29C1C3C3791 /* Pods */ = {
- isa = PBXGroup;
- children = (
- C45949C3AB12F54D27702387 /* Pods-Auth_Example.debug.xcconfig */,
- 2F002D4E7FA7F07A830CCFDA /* Pods-Auth_Example.release.xcconfig */,
- 18B5255FF5BEBF6F72C40F39 /* Pods-Auth_Tests.debug.xcconfig */,
- 60FCE4043D8FE42648646A7F /* Pods-Auth_Tests.release.xcconfig */,
- FF57915145DB00008E7C56A8 /* Pods-Core_Example.debug.xcconfig */,
- 8F77C04C2E764FBB0F6C05C6 /* Pods-Core_Example.release.xcconfig */,
- 8E32E359BE29C3100CF51FC4 /* Pods-Core_Tests.debug.xcconfig */,
- 0B1BDA534E1F49931795B5E6 /* Pods-Core_Tests.release.xcconfig */,
- 7727BC17692B98E2B7D0EA7A /* Pods-Database_Example.debug.xcconfig */,
- EEA5C6257533CD27D37A14FC /* Pods-Database_Example.release.xcconfig */,
- F0A9002767E1A9D63CEECFF6 /* Pods-Database_Tests.debug.xcconfig */,
- 4A8B7AE7C053949F6BBBDD3E /* Pods-Database_Tests.release.xcconfig */,
- 884B87C50C7C950BC18E9091 /* Pods-Messaging_Example.debug.xcconfig */,
- A6903B88963F6FD1857889E6 /* Pods-Messaging_Example.release.xcconfig */,
- 6E974DE29EBB9602E723757E /* Pods-Messaging_Tests.debug.xcconfig */,
- 6D2E4A9396D707C5DEF9B74B /* Pods-Messaging_Tests.release.xcconfig */,
- 6A0FCB2A37144B3C05E519F6 /* Pods-Storage_Example.debug.xcconfig */,
- 6BAD1CF3DDEDDD76EC87052D /* Pods-Storage_Example.release.xcconfig */,
- 3E84D28D93B8196D6A483F15 /* Pods-Storage_Tests.debug.xcconfig */,
- D58064F9C4DE303997B89D2E /* Pods-Storage_Tests.release.xcconfig */,
- EE077EBC5A738E61E06B5FA2 /* Pods-Database_IntegrationTests.debug.xcconfig */,
- BEEA177FFAAB9FA02F898C51 /* Pods-Database_IntegrationTests.release.xcconfig */,
- 3673564CCB64DE360C8CB97F /* Pods-Storage_IntegrationTests.debug.xcconfig */,
- CA86AD35456DA6130F7DE02C /* Pods-Storage_IntegrationTests.release.xcconfig */,
- );
- name = Pods;
- sourceTree = "<group>";
- };
- DE7B8D2A1E8EF202009EB6DF /* Database */ = {
- isa = PBXGroup;
- children = (
- DE7B8D2B1E8EF202009EB6DF /* App */,
- DE7B8D381E8EF202009EB6DF /* Tests */,
- );
- path = Database;
- sourceTree = "<group>";
- };
- DE7B8D2B1E8EF202009EB6DF /* App */ = {
- isa = PBXGroup;
- children = (
- 0672F2F11EBBA7D900818E87 /* GoogleService-Info.plist */,
- DE7B8DD21E8F1CA7009EB6DF /* Database-Info.plist */,
- DE7B8D311E8EF202009EB6DF /* FIRAppDelegate.h */,
- DE7B8D331E8EF202009EB6DF /* FIRViewController.h */,
- DE7B8D321E8EF202009EB6DF /* FIRAppDelegate.m */,
- DE7B8D341E8EF202009EB6DF /* FIRViewController.m */,
- DE7B8D371E8EF202009EB6DF /* main.m */,
- DE7B8D2C1E8EF202009EB6DF /* LaunchScreen.storyboard */,
- DE7B8D2E1E8EF202009EB6DF /* Main.storyboard */,
- );
- path = App;
- sourceTree = "<group>";
- };
- DE7B8D381E8EF202009EB6DF /* Tests */ = {
- isa = PBXGroup;
- children = (
- 063CB47C1EBA7AEF00038A59 /* FirebaseTests-Info.plist */,
- DE7B8D751E8EF202009EB6DF /* Helpers */,
- DE7B8D691E8EF202009EB6DF /* InfoPlist.strings */,
- 063CB43C1EBA752300038A59 /* Integration */,
- DE7B8D8E1E8EF203009EB6DF /* syncPointSpec.json */,
- 0697B11F1EC13D7800542174 /* third_party */,
- DE7B8D391E8EF202009EB6DF /* Unit */,
- );
- path = Tests;
- sourceTree = "<group>";
- };
- DE7B8D391E8EF202009EB6DF /* Unit */ = {
- isa = PBXGroup;
- children = (
- 063CB4471EBA7AE200038A59 /* FArraySortedDictionaryTest.m */,
- 063CB4481EBA7AE200038A59 /* FCompoundHashTest.m */,
- 063CB46E1EBA7AEF00038A59 /* FCompoundWriteTest.m */,
- 063CB47A1EBA7AEF00038A59 /* FIRDataSnapshotTests.h */,
- 063CB47B1EBA7AEF00038A59 /* FIRDataSnapshotTests.m */,
- 063CB4491EBA7AE200038A59 /* FIRMutableDataTests.h */,
- 063CB44A1EBA7AE200038A59 /* FIRMutableDataTests.m */,
- 063CB44B1EBA7AE200038A59 /* FLevelDBStorageEngineTests.m */,
- 063CB44C1EBA7AE200038A59 /* FNodeTests.m */,
- 063CB44D1EBA7AE200038A59 /* FPathTests.h */,
- 063CB44E1EBA7AE200038A59 /* FPathTests.m */,
- 063CB44F1EBA7AE200038A59 /* FPersistenceManagerTest.m */,
- 063CB4501EBA7AE200038A59 /* FPruneForestTest.m */,
- 063CB4511EBA7AE200038A59 /* FPruningTest.m */,
- 063CB4521EBA7AE200038A59 /* FQueryParamsTest.m */,
- 063CB4531EBA7AE200038A59 /* FRangeMergeTest.m */,
- 063CB4541EBA7AE200038A59 /* FRepoInfoTest.m */,
- 063CB4551EBA7AE200038A59 /* FSparseSnapshotTests.h */,
- 063CB4561EBA7AE200038A59 /* FSparseSnapshotTests.m */,
- 063CB4571EBA7AE200038A59 /* FSyncPointTests.h */,
- 063CB4581EBA7AE200038A59 /* FSyncPointTests.m */,
- 063CB45B1EBA7AE200038A59 /* FTrackedQueryManagerTest.m */,
- 063CB4901EBA7AEF00038A59 /* FTreeSortedDictionaryTests.m */,
- 063CB45C1EBA7AE200038A59 /* FUtilitiesTest.m */,
- );
- path = Unit;
- sourceTree = "<group>";
- };
- DE7B8D751E8EF202009EB6DF /* Helpers */ = {
- isa = PBXGroup;
- children = (
- DE7B8D781E8EF202009EB6DF /* FDevice.h */,
- DE7B8D791E8EF202009EB6DF /* FDevice.m */,
- DE7B8D7A1E8EF202009EB6DF /* FEventTester.h */,
- DE7B8D7B1E8EF202009EB6DF /* FEventTester.m */,
- 063CB47D1EBA7AEF00038A59 /* FIRFakeApp.h */,
- 063CB47E1EBA7AEF00038A59 /* FIRFakeApp.m */,
- DE7B8D7C1E8EF202009EB6DF /* FIRTestAuthTokenProvider.h */,
- DE7B8D7D1E8EF202009EB6DF /* FIRTestAuthTokenProvider.m */,
- DE7B8D7E1E8EF202009EB6DF /* FMockStorageEngine.h */,
- DE7B8D7F1E8EF202009EB6DF /* FMockStorageEngine.m */,
- DE7B8D801E8EF202009EB6DF /* FTestAuthTokenGenerator.h */,
- DE7B8D811E8EF202009EB6DF /* FTestAuthTokenGenerator.m */,
- 063CB4591EBA7AE200038A59 /* FTestBase.h */,
- 063CB45A1EBA7AE200038A59 /* FTestBase.m */,
- DE7B8D821E8EF202009EB6DF /* FTestCachePolicy.h */,
- DE7B8D831E8EF202009EB6DF /* FTestCachePolicy.m */,
- DE7B8D841E8EF202009EB6DF /* FTestClock.h */,
- DE7B8D851E8EF202009EB6DF /* FTestClock.m */,
- 063CB48D1EBA7AEF00038A59 /* FTestContants.h */,
- DE7B8D861E8EF202009EB6DF /* FTestExpectations.h */,
- DE7B8D871E8EF202009EB6DF /* FTestExpectations.m */,
- DE7B8D881E8EF202009EB6DF /* FTestHelpers.h */,
- DE7B8D891E8EF202009EB6DF /* FTestHelpers.m */,
- DE7B8D8A1E8EF203009EB6DF /* FTupleEventTypeString.h */,
- DE7B8D8B1E8EF203009EB6DF /* FTupleEventTypeString.m */,
- DE7B8D8C1E8EF203009EB6DF /* SenTest+FWaiter.h */,
- DE7B8D8D1E8EF203009EB6DF /* SenTest+FWaiter.m */,
- );
- path = Helpers;
- sourceTree = "<group>";
- };
- DE9314EB1E86C6FF0083EDBF /* Auth */ = {
- isa = PBXGroup;
- children = (
- DE9314EC1E86C6FF0083EDBF /* App */,
- DE9314F91E86C6FF0083EDBF /* Tests */,
- );
- path = Auth;
- sourceTree = "<group>";
- };
- DE9314EC1E86C6FF0083EDBF /* App */ = {
- isa = PBXGroup;
- children = (
- DE9315801E86C7F70083EDBF /* Auth-Info.plist */,
- DE9314ED1E86C6FF0083EDBF /* LaunchScreen.storyboard */,
- DE9314EF1E86C6FF0083EDBF /* Main.storyboard */,
- DE9314F21E86C6FF0083EDBF /* FIRAppDelegate.h */,
- DE9314F31E86C6FF0083EDBF /* FIRAppDelegate.m */,
- DE9314F41E86C6FF0083EDBF /* FIRViewController.h */,
- DE9314F51E86C6FF0083EDBF /* FIRViewController.m */,
- DE9314F61E86C6FF0083EDBF /* GoogleService-Info.plist */,
- DE9314F81E86C6FF0083EDBF /* main.m */,
- );
- path = App;
- sourceTree = "<group>";
- };
- DE9314F91E86C6FF0083EDBF /* Tests */ = {
- isa = PBXGroup;
- children = (
- DE750DB51EB3DD4000A75E47 /* FIRAuthAPNSTokenManagerTests.m */,
- DE750DB61EB3DD4000A75E47 /* FIRAuthAPNSTokenTests.m */,
- DE750DB71EB3DD4000A75E47 /* FIRAuthAppCredentialManagerTests.m */,
- DE750DB81EB3DD4000A75E47 /* FIRAuthNotificationManagerTests.m */,
- DE0E5BB91EA7D92E00FAA825 /* FIRVerifyClientRequestTest.m */,
- DE0E5BBA1EA7D92E00FAA825 /* FIRVerifyClientResponseTests.m */,
- DE0E5BB51EA7D91C00FAA825 /* FIRAuthAppCredentialTests.m */,
- DE0E5BB61EA7D91C00FAA825 /* FIRAuthAppDelegateProxyTests.m */,
- DECE03991E9ECFF500164CA4 /* FIRPhoneAuthProviderTests.m */,
- DE9314FB1E86C6FF0083EDBF /* FIRApp+FIRAuthUnitTests.h */,
- DE9315091E86C6FF0083EDBF /* FIRFakeBackendRPCIssuer.h */,
- DE9315231E86C6FF0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.h */,
- DE9314FA1E86C6FF0083EDBF /* FIRAdditionalUserInfoTests.m */,
- DE9314FC1E86C6FF0083EDBF /* FIRApp+FIRAuthUnitTests.m */,
- DE9314FD1E86C6FF0083EDBF /* FIRAuthBackendCreateAuthURITests.m */,
- DE9314FE1E86C6FF0083EDBF /* FIRAuthBackendRPCImplementationTests.m */,
- DE9314FF1E86C6FF0083EDBF /* FIRAuthDispatcherTests.m */,
- DE9315001E86C6FF0083EDBF /* FIRAuthGlobalWorkQueueTests.m */,
- DE9315011E86C6FF0083EDBF /* FIRAuthKeychainTests.m */,
- DE9315021E86C6FF0083EDBF /* FIRAuthSerialTaskQueueTests.m */,
- DE9315031E86C6FF0083EDBF /* FIRAuthTests.m */,
- DE9315041E86C6FF0083EDBF /* FIRAuthUserDefaultsStorageTests.m */,
- DE9315051E86C6FF0083EDBF /* FIRCreateAuthURIRequestTests.m */,
- DE9315061E86C6FF0083EDBF /* FIRCreateAuthURIResponseTests.m */,
- DE9315071E86C6FF0083EDBF /* FIRDeleteAccountRequestTests.m */,
- DE9315081E86C6FF0083EDBF /* FIRDeleteAccountResponseTests.m */,
- DE93150A1E86C6FF0083EDBF /* FIRFakeBackendRPCIssuer.m */,
- DE93150B1E86C6FF0083EDBF /* FIRGetAccountInfoRequestTests.m */,
- DE93150C1E86C6FF0083EDBF /* FIRGetAccountInfoResponseTests.m */,
- DE93150D1E86C6FF0083EDBF /* FIRGetOOBConfirmationCodeRequestTests.m */,
- DE93150E1E86C6FF0083EDBF /* FIRGetOOBConfirmationCodeResponseTests.m */,
- DE93150F1E86C6FF0083EDBF /* FIRGitHubAuthProviderTests.m */,
- DE9315111E86C6FF0083EDBF /* FIRResetPasswordRequestTests.m */,
- DE9315121E86C6FF0083EDBF /* FIRResetPasswordResponseTests.m */,
- DE9315131E86C6FF0083EDBF /* FIRSendVerificationCodeRequestTests.m */,
- DE9315141E86C6FF0083EDBF /* FIRSendVerificationCodeResponseTests.m */,
- DE9315151E86C6FF0083EDBF /* FIRSetAccountInfoRequestTests.m */,
- DE9315161E86C6FF0083EDBF /* FIRSetAccountInfoResponseTests.m */,
- DE9315171E86C6FF0083EDBF /* FIRSignUpNewUserRequestTests.m */,
- DE9315181E86C6FF0083EDBF /* FIRSignUpNewUserResponseTests.m */,
- DE9315191E86C6FF0083EDBF /* FIRTwitterAuthProviderTests.m */,
- DE93151A1E86C6FF0083EDBF /* FIRUserTests.m */,
- DE93151B1E86C6FF0083EDBF /* FIRVerifyAssertionRequestTests.m */,
- DE93151C1E86C6FF0083EDBF /* FIRVerifyAssertionResponseTests.m */,
- DE93151D1E86C6FF0083EDBF /* FIRVerifyCustomTokenRequestTests.m */,
- DE93151E1E86C6FF0083EDBF /* FIRVerifyCustomTokenResponseTests.m */,
- DE93151F1E86C6FF0083EDBF /* FIRVerifyPasswordRequestTest.m */,
- DE9315201E86C6FF0083EDBF /* FIRVerifyPasswordResponseTests.m */,
- DE9315211E86C6FF0083EDBF /* FIRVerifyPhoneNumberRequestTests.m */,
- DE9315221E86C6FF0083EDBF /* FIRVerifyPhoneNumberResponseTests.m */,
- DE9315241E86C6FF0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.m */,
- DE9315251E86C6FF0083EDBF /* Tests-Info.plist */,
- );
- path = Tests;
- sourceTree = "<group>";
- };
- DE9315B41E8738B70083EDBF /* Messaging */ = {
- isa = PBXGroup;
- children = (
- AFC8BAA11EC257D700B8EEAE /* Messaging_Example-Bridging-Header.h */,
- AFD562F71EB13CC700EA2233 /* App */,
- DE9315C21E8738B70083EDBF /* Tests */,
- );
- path = Messaging;
- sourceTree = "<group>";
- };
- DE9315C21E8738B70083EDBF /* Tests */ = {
- isa = PBXGroup;
- children = (
- DE9315C81E8738B70083EDBF /* FIRMessagingFakeConnection.h */,
- DE9315CA1E8738B70083EDBF /* FIRMessagingFakeSocket.h */,
- DE9315D61E8738B70083EDBF /* FIRMessagingTestNotificationUtilities.h */,
- DE9315C31E8738B70083EDBF /* FIRMessagingClientTest.m */,
- DE9315C41E8738B70083EDBF /* FIRMessagingCodedInputStreamTest.m */,
- DE9315C51E8738B70083EDBF /* FIRMessagingConnectionTest.m */,
- DE9315C61E8738B70083EDBF /* FIRMessagingContextManagerServiceTest.m */,
- DE9315C71E8738B70083EDBF /* FIRMessagingDataMessageManagerTest.m */,
- DE9315C91E8738B70083EDBF /* FIRMessagingFakeConnection.m */,
- DE9315CB1E8738B70083EDBF /* FIRMessagingFakeSocket.m */,
- DE9315CC1E8738B70083EDBF /* FIRMessagingLinkHandlingTest.m */,
- DE9315CD1E8738B70083EDBF /* FIRMessagingPendingTopicsListTest.m */,
- DE9315CE1E8738B70083EDBF /* FIRMessagingPubSubTest.m */,
- DE9315CF1E8738B70083EDBF /* FIRMessagingRegistrarTest.m */,
- DE9315D01E8738B70083EDBF /* FIRMessagingRemoteNotificationsProxyTest.m */,
- DE9315D11E8738B70083EDBF /* FIRMessagingRmqManagerTest.m */,
- DE9315D21E8738B70083EDBF /* FIRMessagingSecureSocketTest.m */,
- DE9315D31E8738B70083EDBF /* FIRMessagingServiceTest.m */,
- DE9315D41E8738B70083EDBF /* FIRMessagingSyncMessageManagerTest.m */,
- DE9315D51E8738B70083EDBF /* FIRMessagingTest.m */,
- DE9315D71E8738B70083EDBF /* FIRMessagingTestNotificationUtilities.m */,
- DE9315D81E8738B70083EDBF /* Info.plist */,
- );
- path = Tests;
- sourceTree = "<group>";
- };
- DEB139B31E734D9D00AC236D /* Storage */ = {
- isa = PBXGroup;
- children = (
- DEB61EB81E7C5DBB00C04B96 /* App */,
- DEB139C01E734D9D00AC236D /* Tests */,
- );
- path = Storage;
- sourceTree = "<group>";
- };
- DEB139C01E734D9D00AC236D /* Tests */ = {
- isa = PBXGroup;
- children = (
- 06121EC91EC39A020008D70E /* Integration */,
- 06121EC81EC399E50008D70E /* Unit */,
- DEB139CC1E734D9D00AC236D /* Tests-Info.plist */,
- );
- path = Tests;
- sourceTree = "<group>";
- };
- DEB61EB81E7C5DBB00C04B96 /* App */ = {
- isa = PBXGroup;
- children = (
- 069428801EC3B35A00F7BC69 /* 1mb.dat */,
- DEB61EB91E7C5DBB00C04B96 /* LaunchScreen.storyboard */,
- DEB61EBB1E7C5DBB00C04B96 /* Main.storyboard */,
- DEB61EBD1E7C5DBB00C04B96 /* FIRAppDelegate.h */,
- DEB61EBE1E7C5DBB00C04B96 /* FIRAppDelegate.m */,
- DEB61EBF1E7C5DBB00C04B96 /* FIRViewController.h */,
- DEB61EC01E7C5DBB00C04B96 /* FIRViewController.m */,
- DEB61EC11E7C5DBB00C04B96 /* GoogleService-Info.plist */,
- DEB61EC31E7C5DBB00C04B96 /* main.m */,
- DEB61EC41E7C5DBB00C04B96 /* Storage-Info.plist */,
- );
- path = App;
- sourceTree = "<group>";
- };
- DEE14D661E844677006FA992 /* Core */ = {
- isa = PBXGroup;
- children = (
- DEE14D671E844677006FA992 /* App */,
- DEE14D741E844677006FA992 /* Tests */,
- );
- path = Core;
- sourceTree = "<group>";
- };
- DEE14D671E844677006FA992 /* App */ = {
- isa = PBXGroup;
- children = (
- DEE14D681E844677006FA992 /* LaunchScreen.storyboard */,
- DEE14D6A1E844677006FA992 /* Main.storyboard */,
- DEE14D6C1E844677006FA992 /* Core-Info.plist */,
- DEE14D6D1E844677006FA992 /* FIRAppDelegate.h */,
- DEE14D6E1E844677006FA992 /* FIRAppDelegate.m */,
- DEE14D6F1E844677006FA992 /* FIRViewController.h */,
- DEE14D701E844677006FA992 /* FIRViewController.m */,
- DEE14D711E844677006FA992 /* GoogleService-Info.plist */,
- DEE14D731E844677006FA992 /* main.m */,
- );
- path = App;
- sourceTree = "<group>";
- };
- DEE14D741E844677006FA992 /* Tests */ = {
- isa = PBXGroup;
- children = (
- DEE14D7B1E844677006FA992 /* FIRTestCase.h */,
- DEE14D751E844677006FA992 /* FIRAppAssociationRegistrationUnitTests.m */,
- DEE14D761E844677006FA992 /* FIRAppTest.m */,
- DEE14D771E844677006FA992 /* FIRBundleUtilTest.m */,
- DEE14D781E844677006FA992 /* FIRConfigurationTest.m */,
- DEE14D791E844677006FA992 /* FIRLoggerTest.m */,
- DEE14D7A1E844677006FA992 /* FIROptionsTest.m */,
- DEE14D7C1E844677006FA992 /* FIRTestCase.m */,
- DEE14D7D1E844677006FA992 /* Tests-Info.plist */,
- );
- path = Tests;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXNativeTarget section */
- 06121EBB1EC399C50008D70E /* Storage_IntegrationTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 06121EC51EC399C50008D70E /* Build configuration list for PBXNativeTarget "Storage_IntegrationTests" */;
- buildPhases = (
- BCC67418B8EBA4E90488CD55 /* [CP] Check Pods Manifest.lock */,
- 06121EB81EC399C50008D70E /* Sources */,
- 06121EB91EC399C50008D70E /* Frameworks */,
- 06121EBA1EC399C50008D70E /* Resources */,
- 0840546A7D90530C21375416 /* [CP] Embed Pods Frameworks */,
- B84CF6076850A6EA9E66592F /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 06121EC71EC399D40008D70E /* PBXTargetDependency */,
- );
- name = Storage_IntegrationTests;
- productName = Storage_IntegrationTests;
- productReference = 06121EBC1EC399C50008D70E /* Storage_IntegrationTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- 0624F3E01EC0ECFA00E5940D /* Database_IntegrationTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 0624F3E81EC0ECFA00E5940D /* Build configuration list for PBXNativeTarget "Database_IntegrationTests" */;
- buildPhases = (
- BF9A61F6BBE9655CED5E897D /* [CP] Check Pods Manifest.lock */,
- 0624F3DD1EC0ECFA00E5940D /* Sources */,
- 0624F3DE1EC0ECFA00E5940D /* Frameworks */,
- 0624F3DF1EC0ECFA00E5940D /* Resources */,
- 744AF9F9B2DB5C511EB9969A /* [CP] Embed Pods Frameworks */,
- 597B88E0E6B632C48707E8EB /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 0624F3E71EC0ECFA00E5940D /* PBXTargetDependency */,
- );
- name = Database_IntegrationTests;
- productName = Database_IntegratioNtests;
- productReference = 0624F3E11EC0ECFA00E5940D /* Database_IntegrationTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- AFD562E41EB13C6D00EA2233 /* Messaging_Example */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = AFD562F41EB13C6D00EA2233 /* Build configuration list for PBXNativeTarget "Messaging_Example" */;
- buildPhases = (
- 26F9869011740630E2119D0D /* [CP] Check Pods Manifest.lock */,
- AFD562E11EB13C6D00EA2233 /* Sources */,
- AFD562E21EB13C6D00EA2233 /* Frameworks */,
- AFD562E31EB13C6D00EA2233 /* Resources */,
- ADFC988CE33AA0C8F0C59177 /* [CP] Embed Pods Frameworks */,
- A39D405E17BE3A6646B8E38E /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = Messaging_Example;
- productName = Messaging_Example;
- productReference = AFD562E51EB13C6D00EA2233 /* Messaging_Example.app */;
- productType = "com.apple.product-type.application";
- };
- DE7B8D041E8EF077009EB6DF /* Database_Example */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DE7B8D281E8EF078009EB6DF /* Build configuration list for PBXNativeTarget "Database_Example" */;
- buildPhases = (
- 4363D4BBFAAC4D505B9B18EC /* [CP] Check Pods Manifest.lock */,
- DE7B8D011E8EF077009EB6DF /* Sources */,
- DE7B8D021E8EF077009EB6DF /* Frameworks */,
- DE7B8D031E8EF077009EB6DF /* Resources */,
- E9A4ADE4EE7390DC85A9FC17 /* [CP] Embed Pods Frameworks */,
- 5AE0F6A81F9A499BD752D5E9 /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = Database_Example;
- productName = Database_Example;
- productReference = DE7B8D051E8EF077009EB6DF /* Database_Example.app */;
- productType = "com.apple.product-type.application";
- };
- DE7B8D1C1E8EF078009EB6DF /* Database_Tests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DE7B8D291E8EF078009EB6DF /* Build configuration list for PBXNativeTarget "Database_Tests" */;
- buildPhases = (
- EE21F035A2A97C35635C2F3C /* [CP] Check Pods Manifest.lock */,
- DE7B8D191E8EF078009EB6DF /* Sources */,
- DE7B8D1A1E8EF078009EB6DF /* Frameworks */,
- DE7B8D1B1E8EF078009EB6DF /* Resources */,
- 5EFAE1A18DA8F6BFC0C191E8 /* [CP] Embed Pods Frameworks */,
- 634E392CCD4D5E88B96D3EF1 /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- DE7B8D1F1E8EF078009EB6DF /* PBXTargetDependency */,
- );
- name = Database_Tests;
- productName = Database_ExampleTests;
- productReference = DE7B8D1D1E8EF078009EB6DF /* Database_Tests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- DE9314C51E86C6BD0083EDBF /* Auth_Example */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DE9314E91E86C6BE0083EDBF /* Build configuration list for PBXNativeTarget "Auth_Example" */;
- buildPhases = (
- 7CC2EB21DFB0E48B1B8171B2 /* [CP] Check Pods Manifest.lock */,
- DE9314C21E86C6BD0083EDBF /* Sources */,
- DE9314C31E86C6BD0083EDBF /* Frameworks */,
- DE9314C41E86C6BD0083EDBF /* Resources */,
- B293C142610E914FBE2CA4C9 /* [CP] Embed Pods Frameworks */,
- A2DF8D8C8D3B6639CBD9CB5B /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = Auth_Example;
- productName = Auth_Example;
- productReference = DE9314C61E86C6BD0083EDBF /* Auth_Example.app */;
- productType = "com.apple.product-type.application";
- };
- DE9314DD1E86C6BE0083EDBF /* Auth_Tests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DE9314EA1E86C6BE0083EDBF /* Build configuration list for PBXNativeTarget "Auth_Tests" */;
- buildPhases = (
- 016A3201E8E0C5ABE835F645 /* [CP] Check Pods Manifest.lock */,
- DE9314DA1E86C6BE0083EDBF /* Sources */,
- DE9314DB1E86C6BE0083EDBF /* Frameworks */,
- DE9314DC1E86C6BE0083EDBF /* Resources */,
- 54175166C251F5F698B6B1C3 /* [CP] Embed Pods Frameworks */,
- 9D8053D74F91F866DB0D0199 /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- DE9314E01E86C6BE0083EDBF /* PBXTargetDependency */,
- );
- name = Auth_Tests;
- productName = Auth_ExampleTests;
- productReference = DE9314DE1E86C6BE0083EDBF /* Auth_Tests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- DE9315A61E8738460083EDBF /* Messaging_Tests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DE9315B31E8738460083EDBF /* Build configuration list for PBXNativeTarget "Messaging_Tests" */;
- buildPhases = (
- 66C488F8D840BC12E26BEE9C /* [CP] Check Pods Manifest.lock */,
- DE9315A31E8738460083EDBF /* Sources */,
- DE9315A41E8738460083EDBF /* Frameworks */,
- DE9315A51E8738460083EDBF /* Resources */,
- 3D9876DCE9EFE13441346E50 /* [CP] Embed Pods Frameworks */,
- AA723E4B93CCA8A3A4C24F4E /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- AFD563121EB140E100EA2233 /* PBXTargetDependency */,
- );
- name = Messaging_Tests;
- productName = Messaging_ExampleTests;
- productReference = DE9315A71E8738460083EDBF /* Messaging_Tests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- DEB139E01E73506A00AC236D /* Storage_Example */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DEB13A051E73506A00AC236D /* Build configuration list for PBXNativeTarget "Storage_Example" */;
- buildPhases = (
- 7E9B7B5115CCC4F0FCBED014 /* [CP] Check Pods Manifest.lock */,
- DEB139E21E73506A00AC236D /* Sources */,
- DEB139F31E73506A00AC236D /* Frameworks */,
- DEB139F91E73506A00AC236D /* Resources */,
- E8657FA5227C3B5EB7B83B40 /* [CP] Embed Pods Frameworks */,
- 5BE3F4C8BA697C65D55C055E /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = Storage_Example;
- productName = Firebase;
- productReference = DEB13A081E73506A00AC236D /* Storage_Example.app */;
- productType = "com.apple.product-type.application";
- };
- DEB13A0A1E73507E00AC236D /* Storage_Tests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DEB13A201E73507E00AC236D /* Build configuration list for PBXNativeTarget "Storage_Tests" */;
- buildPhases = (
- AD42F17297AF3C18062D4C51 /* [CP] Check Pods Manifest.lock */,
- DEB13A0E1E73507E00AC236D /* Sources */,
- DEB13A161E73507E00AC236D /* Frameworks */,
- DEB13A1D1E73507E00AC236D /* Resources */,
- 57EF5C8DAF88A5F43BE0C6FE /* [CP] Embed Pods Frameworks */,
- 12F6D0DD1D452316A3123EED /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- DEB13A261E73512500AC236D /* PBXTargetDependency */,
- );
- name = Storage_Tests;
- productName = FirebaseTests;
- productReference = DEB13A231E73507E00AC236D /* Storage_Tests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- DEE14D401E84464D006FA992 /* Core_Example */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DEE14D641E84464D006FA992 /* Build configuration list for PBXNativeTarget "Core_Example" */;
- buildPhases = (
- AB5B6984AF16CF03E74EA522 /* [CP] Check Pods Manifest.lock */,
- DEE14D3D1E84464D006FA992 /* Sources */,
- DEE14D3E1E84464D006FA992 /* Frameworks */,
- DEE14D3F1E84464D006FA992 /* Resources */,
- DEFCD9C6026936498AE2778C /* [CP] Embed Pods Frameworks */,
- 883CE42B54A7BB78295FBCDA /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = Core_Example;
- productName = Core_Example;
- productReference = DEE14D411E84464D006FA992 /* Core_Example.app */;
- productType = "com.apple.product-type.application";
- };
- DEE14D581E84464D006FA992 /* Core_Tests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DEE14D651E84464D006FA992 /* Build configuration list for PBXNativeTarget "Core_Tests" */;
- buildPhases = (
- C3AFD8761D910A99E506F606 /* [CP] Check Pods Manifest.lock */,
- DEE14D551E84464D006FA992 /* Sources */,
- DEE14D561E84464D006FA992 /* Frameworks */,
- DEE14D571E84464D006FA992 /* Resources */,
- 316D851DAC53422509F9B7B4 /* [CP] Embed Pods Frameworks */,
- 9D6CD2CDCDD281E43FDD3492 /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- DEE14D5B1E84464D006FA992 /* PBXTargetDependency */,
- );
- name = Core_Tests;
- productName = Core_ExampleTests;
- productReference = DEE14D591E84464D006FA992 /* Core_Tests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- 6003F582195388D10070C39A /* Project object */ = {
- isa = PBXProject;
- attributes = {
- CLASSPREFIX = FIR;
- LastSwiftUpdateCheck = 0830;
- LastUpgradeCheck = 0820;
- ORGANIZATIONNAME = "Paul Beusterien";
- TargetAttributes = {
- 06121EBB1EC399C50008D70E = {
- CreatedOnToolsVersion = 8.2.1;
- ProvisioningStyle = Automatic;
- TestTargetID = DEB139E01E73506A00AC236D;
- };
- 0624F3E01EC0ECFA00E5940D = {
- CreatedOnToolsVersion = 8.2.1;
- ProvisioningStyle = Automatic;
- TestTargetID = DE7B8D041E8EF077009EB6DF;
- };
- AFD562E41EB13C6D00EA2233 = {
- CreatedOnToolsVersion = 8.3.2;
- LastSwiftMigration = 0830;
- ProvisioningStyle = Automatic;
- SystemCapabilities = {
- com.apple.BackgroundModes = {
- enabled = 1;
- };
- com.apple.Push = {
- enabled = 1;
- };
- };
- };
- DE3373891E73773400881891 = {
- CreatedOnToolsVersion = 8.2.1;
- DevelopmentTeam = EQHXZ8M8AV;
- ProvisioningStyle = Automatic;
- };
- DE7B8D041E8EF077009EB6DF = {
- CreatedOnToolsVersion = 8.3;
- ProvisioningStyle = Automatic;
- };
- DE7B8D1C1E8EF078009EB6DF = {
- CreatedOnToolsVersion = 8.3;
- ProvisioningStyle = Automatic;
- TestTargetID = DE7B8D041E8EF077009EB6DF;
- };
- DE9314C51E86C6BD0083EDBF = {
- CreatedOnToolsVersion = 8.2.1;
- LastSwiftMigration = 0830;
- ProvisioningStyle = Automatic;
- };
- DE9314DD1E86C6BE0083EDBF = {
- CreatedOnToolsVersion = 8.2.1;
- ProvisioningStyle = Automatic;
- TestTargetID = DE9314C51E86C6BD0083EDBF;
- };
- DE9315A61E8738460083EDBF = {
- CreatedOnToolsVersion = 8.2.1;
- ProvisioningStyle = Automatic;
- TestTargetID = AFD562E41EB13C6D00EA2233;
- };
- DEB13A0A1E73507E00AC236D = {
- TestTargetID = DEB139E01E73506A00AC236D;
- };
- DEE14D401E84464D006FA992 = {
- CreatedOnToolsVersion = 8.2.1;
- ProvisioningStyle = Automatic;
- };
- DEE14D581E84464D006FA992 = {
- CreatedOnToolsVersion = 8.2.1;
- ProvisioningStyle = Automatic;
- TestTargetID = DEE14D401E84464D006FA992;
- };
- };
- };
- buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "Firebase" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- );
- mainGroup = 6003F581195388D10070C39A;
- productRefGroup = 6003F58B195388D20070C39A /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- DE9314C51E86C6BD0083EDBF /* Auth_Example */,
- DE9314DD1E86C6BE0083EDBF /* Auth_Tests */,
- DEE14D401E84464D006FA992 /* Core_Example */,
- DEE14D581E84464D006FA992 /* Core_Tests */,
- DE7B8D041E8EF077009EB6DF /* Database_Example */,
- DE7B8D1C1E8EF078009EB6DF /* Database_Tests */,
- 0624F3E01EC0ECFA00E5940D /* Database_IntegrationTests */,
- AFD562E41EB13C6D00EA2233 /* Messaging_Example */,
- DE9315A61E8738460083EDBF /* Messaging_Tests */,
- DEB139E01E73506A00AC236D /* Storage_Example */,
- DEB13A0A1E73507E00AC236D /* Storage_Tests */,
- 06121EBB1EC399C50008D70E /* Storage_IntegrationTests */,
- DE3373891E73773400881891 /* AllUnitTests */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXResourcesBuildPhase section */
- 06121EBA1EC399C50008D70E /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0624F3DF1EC0ECFA00E5940D /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- AFD562E31EB13C6D00EA2233 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- AFD5630D1EB1400900EA2233 /* Main.storyboard in Resources */,
- AFAF36F81EC28C25004BDEE5 /* Shared.xcassets in Resources */,
- AFD563151EB29EDE00EA2233 /* GoogleService-Info.plist in Resources */,
- AFD5630C1EB1400900EA2233 /* LaunchScreen.storyboard in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE7B8D031E8EF077009EB6DF /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- AFAF36F71EC28C25004BDEE5 /* Shared.xcassets in Resources */,
- 0672F2F21EBBA7D900818E87 /* GoogleService-Info.plist in Resources */,
- DE7B8DD11E8EF24F009EB6DF /* Main.storyboard in Resources */,
- DE7B8DD01E8EF246009EB6DF /* LaunchScreen.storyboard in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE7B8D1B1E8EF078009EB6DF /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DE7B8DB61E8EF203009EB6DF /* InfoPlist.strings in Resources */,
- DE7B8DC91E8EF203009EB6DF /* syncPointSpec.json in Resources */,
- 0672F2F31EBBA7D900818E87 /* GoogleService-Info.plist in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE9314C41E86C6BD0083EDBF /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DE93152B1E86C6FF0083EDBF /* GoogleService-Info.plist in Resources */,
- AFAF36F51EC28C25004BDEE5 /* Shared.xcassets in Resources */,
- DE9315261E86C6FF0083EDBF /* LaunchScreen.storyboard in Resources */,
- DE9315271E86C6FF0083EDBF /* Main.storyboard in Resources */,
- DE4E711B1E953ABC00070092 /* FirebaseDev.podspec in Resources */,
- DE7B8DD31E8F1CA7009EB6DF /* Database-Info.plist in Resources */,
- 063CB49A1EBA7AEF00038A59 /* FirebaseTests-Info.plist in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE9314DC1E86C6BE0083EDBF /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE9315A51E8738460083EDBF /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DEB139F91E73506A00AC236D /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 069428831EC3B38C00F7BC69 /* 1mb.dat in Resources */,
- DEB61EC51E7C5DBB00C04B96 /* LaunchScreen.storyboard in Resources */,
- AFAF36F91EC28C25004BDEE5 /* Shared.xcassets in Resources */,
- DEB61EC61E7C5DBB00C04B96 /* Main.storyboard in Resources */,
- DEB61EC91E7C5DBB00C04B96 /* GoogleService-Info.plist in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DEB13A1D1E73507E00AC236D /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DEE14D3F1E84464D006FA992 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- AFAF36F61EC28C25004BDEE5 /* Shared.xcassets in Resources */,
- DEE14D831E844677006FA992 /* GoogleService-Info.plist in Resources */,
- DEE14D7E1E844677006FA992 /* LaunchScreen.storyboard in Resources */,
- DEE14D7F1E844677006FA992 /* Main.storyboard in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DEE14D571E84464D006FA992 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXShellScriptBuildPhase section */
- 016A3201E8E0C5ABE835F645 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- );
- 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";
- showEnvVarsInLog = 0;
- };
- 0840546A7D90530C21375416 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Storage_IntegrationTests/Pods-Storage_IntegrationTests-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 12F6D0DD1D452316A3123EED /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Storage_Tests/Pods-Storage_Tests-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 26F9869011740630E2119D0D /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- );
- 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";
- showEnvVarsInLog = 0;
- };
- 316D851DAC53422509F9B7B4 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Core_Tests/Pods-Core_Tests-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 3D9876DCE9EFE13441346E50 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Messaging_Tests/Pods-Messaging_Tests-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 4363D4BBFAAC4D505B9B18EC /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- );
- 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";
- showEnvVarsInLog = 0;
- };
- 54175166C251F5F698B6B1C3 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Auth_Tests/Pods-Auth_Tests-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 57EF5C8DAF88A5F43BE0C6FE /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Storage_Tests/Pods-Storage_Tests-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 597B88E0E6B632C48707E8EB /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Database_IntegrationTests/Pods-Database_IntegrationTests-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 5AE0F6A81F9A499BD752D5E9 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Database_Example/Pods-Database_Example-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 5BE3F4C8BA697C65D55C055E /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Storage_Example/Pods-Storage_Example-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 5EFAE1A18DA8F6BFC0C191E8 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Database_Tests/Pods-Database_Tests-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 634E392CCD4D5E88B96D3EF1 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Database_Tests/Pods-Database_Tests-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 66C488F8D840BC12E26BEE9C /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- );
- 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";
- showEnvVarsInLog = 0;
- };
- 744AF9F9B2DB5C511EB9969A /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Database_IntegrationTests/Pods-Database_IntegrationTests-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 7CC2EB21DFB0E48B1B8171B2 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- );
- 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";
- showEnvVarsInLog = 0;
- };
- 7E9B7B5115CCC4F0FCBED014 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- );
- 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";
- showEnvVarsInLog = 0;
- };
- 883CE42B54A7BB78295FBCDA /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Core_Example/Pods-Core_Example-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 9D6CD2CDCDD281E43FDD3492 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Core_Tests/Pods-Core_Tests-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 9D8053D74F91F866DB0D0199 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Auth_Tests/Pods-Auth_Tests-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- A2DF8D8C8D3B6639CBD9CB5B /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Auth_Example/Pods-Auth_Example-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- A39D405E17BE3A6646B8E38E /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Messaging_Example/Pods-Messaging_Example-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- AA723E4B93CCA8A3A4C24F4E /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Messaging_Tests/Pods-Messaging_Tests-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- AB5B6984AF16CF03E74EA522 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- );
- 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";
- showEnvVarsInLog = 0;
- };
- AD42F17297AF3C18062D4C51 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- );
- 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";
- showEnvVarsInLog = 0;
- };
- ADFC988CE33AA0C8F0C59177 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Messaging_Example/Pods-Messaging_Example-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- B293C142610E914FBE2CA4C9 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Auth_Example/Pods-Auth_Example-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- B84CF6076850A6EA9E66592F /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Storage_IntegrationTests/Pods-Storage_IntegrationTests-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- BCC67418B8EBA4E90488CD55 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- );
- 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";
- showEnvVarsInLog = 0;
- };
- BF9A61F6BBE9655CED5E897D /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- );
- 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";
- showEnvVarsInLog = 0;
- };
- C3AFD8761D910A99E506F606 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- );
- 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";
- showEnvVarsInLog = 0;
- };
- DEFCD9C6026936498AE2778C /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Core_Example/Pods-Core_Example-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- E8657FA5227C3B5EB7B83B40 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Storage_Example/Pods-Storage_Example-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- E9A4ADE4EE7390DC85A9FC17 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Database_Example/Pods-Database_Example-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- EE21F035A2A97C35635C2F3C /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- );
- 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";
- showEnvVarsInLog = 0;
- };
- /* End PBXShellScriptBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 06121EB81EC399C50008D70E /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 06C24A061EC39BCB005208CA /* FIRStorageIntegrationTests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0624F3DD1EC0ECFA00E5940D /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 0624F3EC1EC0ED1B00E5940D /* FData.m in Sources */,
- 0637BA6D1EC0F9CF00CAEFD4 /* FTestBase.m in Sources */,
- 0637BA721EC0F9E000CAEFD4 /* FTupleEventTypeString.m in Sources */,
- 0637BA6C1EC0F9CB00CAEFD4 /* FTestAuthTokenGenerator.m in Sources */,
- 0637BA6B1EC0F9C700CAEFD4 /* FMockStorageEngine.m in Sources */,
- 0624F3EB1EC0ED0800E5940D /* FConnectionTest.m in Sources */,
- 0624F3F21EC0ED3F00E5940D /* FKeepSyncedTest.m in Sources */,
- 0624F3F71EC0ED5600E5940D /* FTransactionTest.m in Sources */,
- 0624F3F01EC0ED3500E5940D /* FIRDatabaseQueryTests.m in Sources */,
- 0637BA701EC0F9D900CAEFD4 /* FTestExpectations.m in Sources */,
- 0637BA6F1EC0F9D500CAEFD4 /* FTestClock.m in Sources */,
- 0637BA691EC0F9C100CAEFD4 /* FIRFakeApp.m in Sources */,
- 0624F3EE1EC0ED2A00E5940D /* FEventTests.m in Sources */,
- 0624F3ED1EC0ED2300E5940D /* FDotInfo.m in Sources */,
- 0624F3F61EC0ED5100E5940D /* FRealtime.m in Sources */,
- 0637BA671EC0F9BA00CAEFD4 /* FDevice.m in Sources */,
- 0637BA6A1EC0F9C400CAEFD4 /* FIRTestAuthTokenProvider.m in Sources */,
- 0637BA731EC0F9E400CAEFD4 /* SenTest+FWaiter.m in Sources */,
- 0624F3F11EC0ED3A00E5940D /* FIRDatabaseTests.m in Sources */,
- 0624F3F41EC0ED4800E5940D /* FOrderByTests.m in Sources */,
- 0624F3F51EC0ED4D00E5940D /* FPersist.m in Sources */,
- 0624F3EF1EC0ED3000E5940D /* FIRAuthTests.m in Sources */,
- 0624F3F31EC0ED4300E5940D /* FOrder.m in Sources */,
- 0637BA6E1EC0F9D200CAEFD4 /* FTestCachePolicy.m in Sources */,
- 0637BA711EC0F9DD00CAEFD4 /* FTestHelpers.m in Sources */,
- 0637BA681EC0F9BD00CAEFD4 /* FEventTester.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- AFD562E11EB13C6D00EA2233 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- AFD563171EBBEF7B00EA2233 /* Data+MessagingExtensions.swift in Sources */,
- AFD5630E1EB1402300EA2233 /* AppDelegate.swift in Sources */,
- AFC8BA9D1EBD230E00B8EEAE /* NotificationsController.swift in Sources */,
- AFD5630F1EB1402300EA2233 /* MessagingViewController.swift in Sources */,
- AFC8BAA71EC257D800B8EEAE /* FIRSampleAppUtilities.m in Sources */,
- AFC8BA9F1EBD51A700B8EEAE /* Environment.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE7B8D011E8EF077009EB6DF /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DE7B8DCB1E8EF23A009EB6DF /* FIRViewController.m in Sources */,
- DE7B8DCC1E8EF23A009EB6DF /* main.m in Sources */,
- DE7B8DCA1E8EF23A009EB6DF /* FIRAppDelegate.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE7B8D191E8EF078009EB6DF /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DE7B8DC61E8EF203009EB6DF /* FTestHelpers.m in Sources */,
- 063CB4CE1EBA7B4600038A59 /* FPathTests.m in Sources */,
- DE7B8DC31E8EF203009EB6DF /* FTestCachePolicy.m in Sources */,
- 063CB4D11EBA7B4600038A59 /* FPruningTest.m in Sources */,
- DE7B8DC41E8EF203009EB6DF /* FTestClock.m in Sources */,
- DE7B8DC01E8EF203009EB6DF /* FIRTestAuthTokenProvider.m in Sources */,
- 063CB4D31EBA7B4600038A59 /* FRangeMergeTest.m in Sources */,
- 063CB4C81EBA7B3100038A59 /* FTreeSortedDictionaryTests.m in Sources */,
- 063CB4CD1EBA7B4600038A59 /* FNodeTests.m in Sources */,
- 063CB4CB1EBA7B4600038A59 /* FIRMutableDataTests.m in Sources */,
- 063CB4BE1EBA7B3100038A59 /* FIRDataSnapshotTests.m in Sources */,
- DE7B8DC11E8EF203009EB6DF /* FMockStorageEngine.m in Sources */,
- DE7B8DC71E8EF203009EB6DF /* FTupleEventTypeString.m in Sources */,
- 063CB4CC1EBA7B4600038A59 /* FLevelDBStorageEngineTests.m in Sources */,
- 063CB4D41EBA7B4600038A59 /* FRepoInfoTest.m in Sources */,
- 063CB4CA1EBA7B4600038A59 /* FCompoundHashTest.m in Sources */,
- 063CB4D81EBA7B4600038A59 /* FTrackedQueryManagerTest.m in Sources */,
- 063CB4D91EBA7B4600038A59 /* FUtilitiesTest.m in Sources */,
- 063CB4D51EBA7B4600038A59 /* FSparseSnapshotTests.m in Sources */,
- 063CB4D71EBA7B4600038A59 /* FTestBase.m in Sources */,
- DE7B8DBE1E8EF203009EB6DF /* FDevice.m in Sources */,
- 063CB4CF1EBA7B4600038A59 /* FPersistenceManagerTest.m in Sources */,
- 063CB4A71EBA7B0B00038A59 /* FCompoundWriteTest.m in Sources */,
- DE7B8DC81E8EF203009EB6DF /* SenTest+FWaiter.m in Sources */,
- 063CB4D01EBA7B4600038A59 /* FPruneForestTest.m in Sources */,
- DE7B8DC51E8EF203009EB6DF /* FTestExpectations.m in Sources */,
- 063CB4BF1EBA7B3100038A59 /* FIRFakeApp.m in Sources */,
- DE7B8DBF1E8EF203009EB6DF /* FEventTester.m in Sources */,
- 063CB4D21EBA7B4600038A59 /* FQueryParamsTest.m in Sources */,
- 063CB4DB1EBAA89E00038A59 /* FSyncPointTests.m in Sources */,
- 063CB4C91EBA7B4600038A59 /* FArraySortedDictionaryTest.m in Sources */,
- DE7B8DC21E8EF203009EB6DF /* FTestAuthTokenGenerator.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE9314C21E86C6BD0083EDBF /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 0697B1221EC13D8A00542174 /* Base64.m in Sources */,
- DE93152A1E86C6FF0083EDBF /* FIRViewController.m in Sources */,
- DE93152D1E86C6FF0083EDBF /* main.m in Sources */,
- DE9315291E86C6FF0083EDBF /* FIRAppDelegate.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE9314DA1E86C6BE0083EDBF /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DE9315691E86C71C0083EDBF /* FIRGetOOBConfirmationCodeResponseTests.m in Sources */,
- DE9315661E86C71C0083EDBF /* FIRGetAccountInfoRequestTests.m in Sources */,
- DE9315731E86C71C0083EDBF /* FIRSignUpNewUserResponseTests.m in Sources */,
- DE9315681E86C71C0083EDBF /* FIRGetOOBConfirmationCodeRequestTests.m in Sources */,
- DE9315571E86C71C0083EDBF /* FIRAdditionalUserInfoTests.m in Sources */,
- DE750DBF1EB3DD6C00A75E47 /* FIRAuthAppCredentialManagerTests.m in Sources */,
- DE93157B1E86C71C0083EDBF /* FIRVerifyPasswordResponseTests.m in Sources */,
- DE93155B1E86C71C0083EDBF /* FIRAuthDispatcherTests.m in Sources */,
- DE9315791E86C71C0083EDBF /* FIRVerifyCustomTokenResponseTests.m in Sources */,
- DE9315601E86C71C0083EDBF /* FIRAuthUserDefaultsStorageTests.m in Sources */,
- DE9315641E86C71C0083EDBF /* FIRDeleteAccountResponseTests.m in Sources */,
- DE9315741E86C71C0083EDBF /* FIRTwitterAuthProviderTests.m in Sources */,
- DE750DC01EB3DD6F00A75E47 /* FIRAuthNotificationManagerTests.m in Sources */,
- DE93156A1E86C71C0083EDBF /* FIRGitHubAuthProviderTests.m in Sources */,
- DE9315761E86C71C0083EDBF /* FIRVerifyAssertionRequestTests.m in Sources */,
- DE9315781E86C71C0083EDBF /* FIRVerifyCustomTokenRequestTests.m in Sources */,
- DE93157C1E86C71C0083EDBF /* FIRVerifyPhoneNumberRequestTests.m in Sources */,
- DE9315651E86C71C0083EDBF /* FIRFakeBackendRPCIssuer.m in Sources */,
- DE9315591E86C71C0083EDBF /* FIRAuthBackendCreateAuthURITests.m in Sources */,
- DE0E5BBB1EA7D92E00FAA825 /* FIRVerifyClientRequestTest.m in Sources */,
- DE93156F1E86C71C0083EDBF /* FIRSendVerificationCodeResponseTests.m in Sources */,
- DE93156C1E86C71C0083EDBF /* FIRResetPasswordRequestTests.m in Sources */,
- DE93156D1E86C71C0083EDBF /* FIRResetPasswordResponseTests.m in Sources */,
- DE9315611E86C71C0083EDBF /* FIRCreateAuthURIRequestTests.m in Sources */,
- DE93156E1E86C71C0083EDBF /* FIRSendVerificationCodeRequestTests.m in Sources */,
- DE93155D1E86C71C0083EDBF /* FIRAuthKeychainTests.m in Sources */,
- DE93155C1E86C71C0083EDBF /* FIRAuthGlobalWorkQueueTests.m in Sources */,
- DE9315631E86C71C0083EDBF /* FIRDeleteAccountRequestTests.m in Sources */,
- DECE039B1E9ED01600164CA4 /* FIRPhoneAuthProviderTests.m in Sources */,
- DE750DBE1EB3DD6800A75E47 /* FIRAuthAPNSTokenManagerTests.m in Sources */,
- DE93157A1E86C71C0083EDBF /* FIRVerifyPasswordRequestTest.m in Sources */,
- DE9315621E86C71C0083EDBF /* FIRCreateAuthURIResponseTests.m in Sources */,
- DE93155A1E86C71C0083EDBF /* FIRAuthBackendRPCImplementationTests.m in Sources */,
- DE93157D1E86C71C0083EDBF /* FIRVerifyPhoneNumberResponseTests.m in Sources */,
- DE93157E1E86C71C0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.m in Sources */,
- DE9315771E86C71C0083EDBF /* FIRVerifyAssertionResponseTests.m in Sources */,
- DE9315721E86C71C0083EDBF /* FIRSignUpNewUserRequestTests.m in Sources */,
- DE9315671E86C71C0083EDBF /* FIRGetAccountInfoResponseTests.m in Sources */,
- DE9315701E86C71C0083EDBF /* FIRSetAccountInfoRequestTests.m in Sources */,
- DE0E5BBD1EA7D93100FAA825 /* FIRAuthAppCredentialTests.m in Sources */,
- DE93155E1E86C71C0083EDBF /* FIRAuthSerialTaskQueueTests.m in Sources */,
- DE9315581E86C71C0083EDBF /* FIRApp+FIRAuthUnitTests.m in Sources */,
- DE9315711E86C71C0083EDBF /* FIRSetAccountInfoResponseTests.m in Sources */,
- DE93155F1E86C71C0083EDBF /* FIRAuthTests.m in Sources */,
- DE750DBD1EB3DD5B00A75E47 /* FIRAuthAPNSTokenTests.m in Sources */,
- DE0E5BBE1EA7D93500FAA825 /* FIRAuthAppDelegateProxyTests.m in Sources */,
- DE0E5BBC1EA7D92E00FAA825 /* FIRVerifyClientResponseTests.m in Sources */,
- DE9315751E86C71C0083EDBF /* FIRUserTests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DE9315A31E8738460083EDBF /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DE9315F41E8738E60083EDBF /* FIRMessagingClientTest.m in Sources */,
- DE9315F51E8738E60083EDBF /* FIRMessagingCodedInputStreamTest.m in Sources */,
- DE9315F71E8738E60083EDBF /* FIRMessagingContextManagerServiceTest.m in Sources */,
- DE9315FD1E8738E60083EDBF /* FIRMessagingPubSubTest.m in Sources */,
- DE9316011E8738E60083EDBF /* FIRMessagingSecureSocketTest.m in Sources */,
- DE9315FB1E8738E60083EDBF /* FIRMessagingLinkHandlingTest.m in Sources */,
- DE9315FC1E8738E60083EDBF /* FIRMessagingPendingTopicsListTest.m in Sources */,
- DE9316001E8738E60083EDBF /* FIRMessagingRmqManagerTest.m in Sources */,
- DE9315F91E8738E60083EDBF /* FIRMessagingFakeConnection.m in Sources */,
- DE9316021E8738E60083EDBF /* FIRMessagingServiceTest.m in Sources */,
- DE9315FE1E8738E60083EDBF /* FIRMessagingRegistrarTest.m in Sources */,
- DE9316031E8738E60083EDBF /* FIRMessagingSyncMessageManagerTest.m in Sources */,
- DE9315FF1E8738E60083EDBF /* FIRMessagingRemoteNotificationsProxyTest.m in Sources */,
- DE9315F81E8738E60083EDBF /* FIRMessagingDataMessageManagerTest.m in Sources */,
- DE9316051E8738E60083EDBF /* FIRMessagingTestNotificationUtilities.m in Sources */,
- DE9315F61E8738E60083EDBF /* FIRMessagingConnectionTest.m in Sources */,
- DE9316041E8738E60083EDBF /* FIRMessagingTest.m in Sources */,
- DE9315FA1E8738E60083EDBF /* FIRMessagingFakeSocket.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DEB139E21E73506A00AC236D /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DEB61EC81E7C5DBB00C04B96 /* FIRViewController.m in Sources */,
- DEB61ECB1E7C5DBB00C04B96 /* main.m in Sources */,
- DEB61EC71E7C5DBB00C04B96 /* FIRAppDelegate.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DEB13A0E1E73507E00AC236D /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DEB13A301E73518B00AC236D /* FIRStorageUtilsTests.m in Sources */,
- DEB13A2D1E73518B00AC236D /* FIRStorageTests.m in Sources */,
- DEB13A281E73518B00AC236D /* FIRStorageGetMetadataTests.m in Sources */,
- DEB13A2F1E73518B00AC236D /* FIRStorageUpdateMetadataTests.m in Sources */,
- DEB13A271E73518B00AC236D /* FIRStorageDeleteTests.m in Sources */,
- DEB13A2C1E73518B00AC236D /* FIRStorageTestHelpers.m in Sources */,
- DEB13A291E73518B00AC236D /* FIRStorageMetadataTests.m in Sources */,
- DEB13A2E1E73518B00AC236D /* FIRStorageTokenAuthorizerTests.m in Sources */,
- DEB13A2B1E73518B00AC236D /* FIRStorageReferenceTests.m in Sources */,
- DEB13A2A1E73518B00AC236D /* FIRStoragePathTests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DEE14D3D1E84464D006FA992 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DEE14D821E844677006FA992 /* FIRViewController.m in Sources */,
- DEE14D851E844677006FA992 /* main.m in Sources */,
- DEE14D811E844677006FA992 /* FIRAppDelegate.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DEE14D551E84464D006FA992 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DEE14D8E1E84468D006FA992 /* FIRAppAssociationRegistrationUnitTests.m in Sources */,
- DEE14D8F1E84468D006FA992 /* FIRAppTest.m in Sources */,
- DEE14D911E84468D006FA992 /* FIRConfigurationTest.m in Sources */,
- DEE14D921E84468D006FA992 /* FIRLoggerTest.m in Sources */,
- DEE14D931E84468D006FA992 /* FIROptionsTest.m in Sources */,
- DEE14D901E84468D006FA992 /* FIRBundleUtilTest.m in Sources */,
- DEE14D941E84468D006FA992 /* FIRTestCase.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXTargetDependency section */
- 06121EC71EC399D40008D70E /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DEB139E01E73506A00AC236D /* Storage_Example */;
- targetProxy = 06121EC61EC399D40008D70E /* PBXContainerItemProxy */;
- };
- 0624F3E71EC0ECFA00E5940D /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DE7B8D041E8EF077009EB6DF /* Database_Example */;
- targetProxy = 0624F3E61EC0ECFA00E5940D /* PBXContainerItemProxy */;
- };
- AFD563121EB140E100EA2233 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = AFD562E41EB13C6D00EA2233 /* Messaging_Example */;
- targetProxy = AFD563111EB140E100EA2233 /* PBXContainerItemProxy */;
- };
- DE3373981E73776F00881891 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DEB13A0A1E73507E00AC236D /* Storage_Tests */;
- targetProxy = DE3373971E73776F00881891 /* PBXContainerItemProxy */;
- };
- DE6F01BA1E957157004AEE01 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DE9315A61E8738460083EDBF /* Messaging_Tests */;
- targetProxy = DE6F01B91E957157004AEE01 /* PBXContainerItemProxy */;
- };
- DE7B8D1F1E8EF078009EB6DF /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DE7B8D041E8EF077009EB6DF /* Database_Example */;
- targetProxy = DE7B8D1E1E8EF078009EB6DF /* PBXContainerItemProxy */;
- };
- DE9314E01E86C6BE0083EDBF /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DE9314C51E86C6BD0083EDBF /* Auth_Example */;
- targetProxy = DE9314DF1E86C6BE0083EDBF /* PBXContainerItemProxy */;
- };
- DE9315871E86E9990083EDBF /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DE9314DD1E86C6BE0083EDBF /* Auth_Tests */;
- targetProxy = DE9315861E86E9990083EDBF /* PBXContainerItemProxy */;
- };
- DEB13A261E73512500AC236D /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DEB139E01E73506A00AC236D /* Storage_Example */;
- targetProxy = DEB13A251E73512500AC236D /* PBXContainerItemProxy */;
- };
- DEB5185A1E9008CB0089C938 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DE7B8D1C1E8EF078009EB6DF /* Database_Tests */;
- targetProxy = DEB518591E9008CB0089C938 /* PBXContainerItemProxy */;
- };
- DEE14D5B1E84464D006FA992 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DEE14D401E84464D006FA992 /* Core_Example */;
- targetProxy = DEE14D5A1E84464D006FA992 /* PBXContainerItemProxy */;
- };
- DEE14E0B1E844FDC006FA992 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DEE14D581E84464D006FA992 /* Core_Tests */;
- targetProxy = DEE14E0A1E844FDC006FA992 /* PBXContainerItemProxy */;
- };
- /* End PBXTargetDependency section */
- /* Begin PBXVariantGroup section */
- AFD563081EB1400900EA2233 /* LaunchScreen.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- AFD563091EB1400900EA2233 /* Base */,
- );
- name = LaunchScreen.storyboard;
- sourceTree = "<group>";
- };
- AFD5630A1EB1400900EA2233 /* Main.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- AFD5630B1EB1400900EA2233 /* Base */,
- );
- name = Main.storyboard;
- sourceTree = "<group>";
- };
- DE7B8D2C1E8EF202009EB6DF /* LaunchScreen.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- DE7B8D2D1E8EF202009EB6DF /* Base */,
- );
- name = LaunchScreen.storyboard;
- sourceTree = "<group>";
- };
- DE7B8D2E1E8EF202009EB6DF /* Main.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- DE7B8D2F1E8EF202009EB6DF /* Base */,
- );
- name = Main.storyboard;
- sourceTree = "<group>";
- };
- DE7B8D691E8EF202009EB6DF /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- DE7B8D6A1E8EF202009EB6DF /* en */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
- DE9314ED1E86C6FF0083EDBF /* LaunchScreen.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- DE9314EE1E86C6FF0083EDBF /* Base */,
- );
- name = LaunchScreen.storyboard;
- sourceTree = "<group>";
- };
- DE9314EF1E86C6FF0083EDBF /* Main.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- DE9314F01E86C6FF0083EDBF /* Base */,
- );
- name = Main.storyboard;
- sourceTree = "<group>";
- };
- DEB61EB91E7C5DBB00C04B96 /* LaunchScreen.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- DEB61EBA1E7C5DBB00C04B96 /* Base */,
- );
- name = LaunchScreen.storyboard;
- sourceTree = "<group>";
- };
- DEB61EBB1E7C5DBB00C04B96 /* Main.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- DEB61EBC1E7C5DBB00C04B96 /* Base */,
- );
- name = Main.storyboard;
- sourceTree = "<group>";
- };
- DEE14D681E844677006FA992 /* LaunchScreen.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- DEE14D691E844677006FA992 /* Base */,
- );
- name = LaunchScreen.storyboard;
- sourceTree = "<group>";
- };
- DEE14D6A1E844677006FA992 /* Main.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- DEE14D6B1E844677006FA992 /* Base */,
- );
- name = Main.storyboard;
- sourceTree = "<group>";
- };
- /* End PBXVariantGroup section */
- /* Begin XCBuildConfiguration section */
- 06121EC31EC399C50008D70E /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 3673564CCB64DE360C8CB97F /* Pods-Storage_IntegrationTests.debug.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/../../Firebase/Storage/Private\"",
- "\"$(SRCROOT)/../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = "Storage/Tests/Tests-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.2;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = YES;
- PRODUCT_BUNDLE_IDENTIFIER = "com.firebase.mobile.Storage-IntegrationTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Storage_Example.app/Storage_Example";
- };
- name = Debug;
- };
- 06121EC41EC399C50008D70E /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = CA86AD35456DA6130F7DE02C /* Pods-Storage_IntegrationTests.release.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/../../Firebase/Storage/Private\"",
- "\"$(SRCROOT)/../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = "Storage/Tests/Tests-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.2;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = NO;
- PRODUCT_BUNDLE_IDENTIFIER = "com.firebase.mobile.Storage-IntegrationTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Storage_Example.app/Storage_Example";
- };
- name = Release;
- };
- 0624F3E91EC0ECFA00E5940D /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = EE077EBC5A738E61E06B5FA2 /* Pods-Database_IntegrationTests.debug.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/../../Firebase/Database/Utilities/Tuples\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Core\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Realtime\"",
- "\"${PODS_ROOT}/../../Firebase/Database/third_party/SocketRocket\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Utilities\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Libraries\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Core/Utilities\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Api/Private\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Api\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Snapshot\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Login\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Constants\"",
- "\"${PODS_ROOT}/../../Firebase/Database\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Persistence\"",
- "\"${PODS_ROOT}/../../Firebase/Database/FImmutableSortedDictionary/FImmutableSortedDictionary\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Core/View\"",
- "\"$(SRCROOT)/../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = "Database/Tests/FirebaseTests-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.2;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = YES;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Database-IntegrationTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Database_Example.app/Database_Example";
- };
- name = Debug;
- };
- 0624F3EA1EC0ECFA00E5940D /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = BEEA177FFAAB9FA02F898C51 /* Pods-Database_IntegrationTests.release.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/../../Firebase/Database/Utilities/Tuples\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Core\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Realtime\"",
- "\"${PODS_ROOT}/../../Firebase/Database/third_party/SocketRocket\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Utilities\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Libraries\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Core/Utilities\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Api/Private\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Api\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Snapshot\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Login\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Constants\"",
- "\"${PODS_ROOT}/../../Firebase/Database\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Persistence\"",
- "\"${PODS_ROOT}/../../Firebase/Database/FImmutableSortedDictionary/FImmutableSortedDictionary\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Core/View\"",
- "\"$(SRCROOT)/../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = "Database/Tests/FirebaseTests-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.2;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = NO;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Database-IntegrationTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Database_Example.app/Database_Example";
- };
- name = Release;
- };
- 6003F5BD195388D20070C39A /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- 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;
- 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_SYMBOLS_PRIVATE_EXTERN = NO;
- 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 = 8.3;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 6003F5BE195388D20070C39A /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- 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 = 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 = 8.3;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- AFD562F51EB13C6D00EA2233 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 884B87C50C7C950BC18E9091 /* Pods-Messaging_Example.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CODE_SIGN_ENTITLEMENTS = Messaging/App/Messaging_Example.entitlements;
- DEBUG_INFORMATION_FORMAT = dwarf;
- DEVELOPMENT_TEAM = "";
- INFOPLIST_FILE = "Messaging/App/Messaging-Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = YES;
- PRODUCT_BUNDLE_IDENTIFIER = com.google.FirebaseMessagingSample.dev;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
- SWIFT_OBJC_BRIDGING_HEADER = "Messaging/Messaging_Example-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 3.0;
- };
- name = Debug;
- };
- AFD562F61EB13C6D00EA2233 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = A6903B88963F6FD1857889E6 /* Pods-Messaging_Example.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CODE_SIGN_ENTITLEMENTS = Messaging/App/Messaging_Example.entitlements;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEVELOPMENT_TEAM = "";
- INFOPLIST_FILE = "Messaging/App/Messaging-Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = NO;
- PRODUCT_BUNDLE_IDENTIFIER = com.google.FirebaseMessagingSample.dev;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_OBJC_BRIDGING_HEADER = "Messaging/Messaging_Example-Bridging-Header.h";
- SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
- SWIFT_VERSION = 3.0;
- };
- name = Release;
- };
- DE33738B1E73773400881891 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- DEVELOPMENT_TEAM = EQHXZ8M8AV;
- PRODUCT_NAME = "$(TARGET_NAME)";
- };
- name = Debug;
- };
- DE33738C1E73773400881891 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- DEVELOPMENT_TEAM = EQHXZ8M8AV;
- PRODUCT_NAME = "$(TARGET_NAME)";
- };
- name = Release;
- };
- DE7B8D241E8EF078009EB6DF /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 7727BC17692B98E2B7D0EA7A /* Pods-Database_Example.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- DEVELOPMENT_TEAM = "";
- INFOPLIST_FILE = "$(SRCROOT)/Database/App/Database-Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = YES;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Database-Example";
- PRODUCT_NAME = "$(TARGET_NAME)";
- };
- name = Debug;
- };
- DE7B8D251E8EF078009EB6DF /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = EEA5C6257533CD27D37A14FC /* Pods-Database_Example.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEVELOPMENT_TEAM = "";
- INFOPLIST_FILE = "$(SRCROOT)/Database/App/Database-Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = NO;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Database-Example";
- PRODUCT_NAME = "$(TARGET_NAME)";
- };
- name = Release;
- };
- DE7B8D261E8EF078009EB6DF /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = F0A9002767E1A9D63CEECFF6 /* Pods-Database_Tests.debug.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- DEVELOPMENT_TEAM = "";
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/../../Firebase/Database/Utilities/Tuples\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Core\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Realtime\"",
- "\"${PODS_ROOT}/../../Firebase/Database/third_party/SocketRocket\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Utilities\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Libraries\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Core/Utilities\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Api/Private\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Api\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Snapshot\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Login\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Constants\"",
- "\"${PODS_ROOT}/../../Firebase/Database\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Persistence\"",
- "\"${PODS_ROOT}/../../Firebase/Database/FImmutableSortedDictionary/FImmutableSortedDictionary\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Core/View\"",
- "\"$(SRCROOT)/../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = "Database/Tests/FirebaseTests-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.2;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = YES;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Database-ExampleTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = iphoneos;
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Database_Example.app/Database_Example";
- };
- name = Debug;
- };
- DE7B8D271E8EF078009EB6DF /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 4A8B7AE7C053949F6BBBDD3E /* Pods-Database_Tests.release.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEVELOPMENT_TEAM = "";
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/../../Firebase/Database/Utilities/Tuples\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Core\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Realtime\"",
- "\"${PODS_ROOT}/../../Firebase/Database/third_party/SocketRocket\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Utilities\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Libraries\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Core/Utilities\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Api/Private\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Api\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Snapshot\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Login\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Constants\"",
- "\"${PODS_ROOT}/../../Firebase/Database\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Persistence\"",
- "\"${PODS_ROOT}/../../Firebase/Database/FImmutableSortedDictionary/FImmutableSortedDictionary\"",
- "\"${PODS_ROOT}/../../Firebase/Database/Core/View\"",
- "\"$(SRCROOT)/../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = "Database/Tests/FirebaseTests-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.2;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = NO;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Database-ExampleTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = iphoneos;
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Database_Example.app/Database_Example";
- };
- name = Release;
- };
- DE9314E51E86C6BE0083EDBF /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = C45949C3AB12F54D27702387 /* Pods-Auth_Example.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ENABLE_MODULES = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- DEBUG_INFORMATION_FORMAT = dwarf;
- DEVELOPMENT_TEAM = "";
- INFOPLIST_FILE = "$(SRCROOT)/Auth/App/Auth-Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = YES;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Auth-Example";
- PRODUCT_NAME = "$(TARGET_NAME)";
- PROVISIONING_PROFILE_SPECIFIER = "";
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 3.0;
- };
- name = Debug;
- };
- DE9314E61E86C6BE0083EDBF /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 2F002D4E7FA7F07A830CCFDA /* Pods-Auth_Example.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ENABLE_MODULES = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEVELOPMENT_TEAM = "";
- INFOPLIST_FILE = "$(SRCROOT)/Auth/App/Auth-Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = NO;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Auth-Example";
- PRODUCT_NAME = "$(TARGET_NAME)";
- PROVISIONING_PROFILE_SPECIFIER = "";
- SWIFT_VERSION = 3.0;
- };
- name = Release;
- };
- DE9314E71E86C6BE0083EDBF /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 18B5255FF5BEBF6F72C40F39 /* Pods-Auth_Tests.debug.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- DEVELOPMENT_TEAM = "";
- HEADER_SEARCH_PATHS = (
- "\"${PODS_ROOT}/../../Firebase/Auth/Source/RPCs\"",
- "$(inherited)",
- "\"${PODS_ROOT}/../../Firebase/Auth/Source/Private\"",
- "\"${PODS_ROOT}/../../Firebase/Auth/Source/AuthProviders\"",
- "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = "Auth/Tests/Tests-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.2;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = YES;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Auth-ExampleTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Auth_Example.app/Auth_Example";
- };
- name = Debug;
- };
- DE9314E81E86C6BE0083EDBF /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 60FCE4043D8FE42648646A7F /* Pods-Auth_Tests.release.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEVELOPMENT_TEAM = "";
- HEADER_SEARCH_PATHS = (
- "\"${PODS_ROOT}/../../Firebase/Auth/Source/RPCs\"",
- "$(inherited)",
- "\"${PODS_ROOT}/../../Firebase/Auth/Source/Private\"",
- "\"${PODS_ROOT}/../../Firebase/Auth/Source/AuthProviders\"",
- "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = "Auth/Tests/Tests-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.2;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = NO;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Auth-ExampleTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Auth_Example.app/Auth_Example";
- };
- name = Release;
- };
- DE9315B01E8738460083EDBF /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 6E974DE29EBB9602E723757E /* Pods-Messaging_Tests.debug.xcconfig */;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- DEVELOPMENT_TEAM = "";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- "COCOAPODS=1",
- "GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1",
- );
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/Headers/Public\"",
- "\"${PODS_ROOT}/Headers/Public/FirebaseAnalytics\"",
- "\"${PODS_ROOT}/../../Firebase/Messaging\"",
- "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = Messaging/Tests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = YES;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Messaging-ExampleTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Messaging_Example.app/Messaging_Example";
- };
- name = Debug;
- };
- DE9315B11E8738460083EDBF /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 6D2E4A9396D707C5DEF9B74B /* Pods-Messaging_Tests.release.xcconfig */;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEVELOPMENT_TEAM = "";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- "COCOAPODS=1",
- "GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1",
- );
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/Headers/Public\"",
- "\"${PODS_ROOT}/Headers/Public/FirebaseAnalytics\"",
- "\"${PODS_ROOT}/../../Firebase/Messaging\"",
- "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = Messaging/Tests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = NO;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Messaging-ExampleTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Messaging_Example.app/Messaging_Example";
- };
- name = Release;
- };
- DEB13A061E73506A00AC236D /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 6A0FCB2A37144B3C05E519F6 /* Pods-Storage_Example.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- DEVELOPMENT_TEAM = "";
- FRAMEWORK_SEARCH_PATHS = "$(inherited)";
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "";
- HEADER_SEARCH_PATHS = (
- "\"${PODS_ROOT}/../../Firebase/Storage/Private\"",
- "$(inherited)",
- );
- INFOPLIST_FILE = "$(SRCROOT)/Storage/App/Storage-Info.plist";
- MODULE_NAME = ExampleApp;
- PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
- PRODUCT_NAME = "$(TARGET_NAME)";
- WRAPPER_EXTENSION = app;
- };
- name = Debug;
- };
- DEB13A071E73506A00AC236D /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 6BAD1CF3DDEDDD76EC87052D /* Pods-Storage_Example.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- DEVELOPMENT_TEAM = "";
- FRAMEWORK_SEARCH_PATHS = "$(inherited)";
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "";
- HEADER_SEARCH_PATHS = (
- "\"${PODS_ROOT}/../../Firebase/Storage/Private\"",
- "$(inherited)",
- );
- INFOPLIST_FILE = "$(SRCROOT)/Storage/App/Storage-Info.plist";
- MODULE_NAME = ExampleApp;
- PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
- PRODUCT_NAME = "$(TARGET_NAME)";
- WRAPPER_EXTENSION = app;
- };
- name = Release;
- };
- DEB13A211E73507E00AC236D /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 3E84D28D93B8196D6A483F15 /* Pods-Storage_Tests.debug.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- DEVELOPMENT_TEAM = "";
- FRAMEWORK_SEARCH_PATHS = (
- "$(SDKROOT)/Developer/Library/Frameworks",
- "$(inherited)",
- "$(DEVELOPER_FRAMEWORKS_DIR)",
- );
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/../../Firebase/Storage/Private\"",
- "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = "Storage/Tests/Tests-Info.plist";
- PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Storage_Example.app/Storage_Example";
- WRAPPER_EXTENSION = xctest;
- };
- name = Debug;
- };
- DEB13A221E73507E00AC236D /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = D58064F9C4DE303997B89D2E /* Pods-Storage_Tests.release.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- DEVELOPMENT_TEAM = "";
- FRAMEWORK_SEARCH_PATHS = (
- "$(SDKROOT)/Developer/Library/Frameworks",
- "$(inherited)",
- "$(DEVELOPER_FRAMEWORKS_DIR)",
- );
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "";
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/../../Firebase/Storage/Private\"",
- "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = "Storage/Tests/Tests-Info.plist";
- PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Storage_Example.app/Storage_Example";
- WRAPPER_EXTENSION = xctest;
- };
- name = Release;
- };
- DEE14D601E84464D006FA992 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = FF57915145DB00008E7C56A8 /* Pods-Core_Example.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- DEVELOPMENT_TEAM = "";
- INFOPLIST_FILE = "$(SRCROOT)/Core/App/Core-Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = YES;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Core-Example";
- PRODUCT_NAME = "$(TARGET_NAME)";
- };
- name = Debug;
- };
- DEE14D611E84464D006FA992 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 8F77C04C2E764FBB0F6C05C6 /* Pods-Core_Example.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEVELOPMENT_TEAM = "";
- INFOPLIST_FILE = "$(SRCROOT)/Core/App/Core-Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = NO;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Core-Example";
- PRODUCT_NAME = "$(TARGET_NAME)";
- };
- name = Release;
- };
- DEE14D621E84464D006FA992 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 8E32E359BE29C3100CF51FC4 /* Pods-Core_Tests.debug.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- DEVELOPMENT_TEAM = "";
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/build/Debug-iphoneos/FirebaseCore",
- );
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = "Core/Tests/Tests-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.2;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = YES;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Core-ExampleTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Core_Example.app/Core_Example";
- };
- name = Debug;
- };
- DEE14D631E84464D006FA992 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 0B1BDA534E1F49931795B5E6 /* Pods-Core_Tests.release.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEVELOPMENT_TEAM = "";
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/build/Debug-iphoneos/FirebaseCore",
- );
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
- );
- INFOPLIST_FILE = "Core/Tests/Tests-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.2;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- MTL_ENABLE_DEBUG_INFO = NO;
- PRODUCT_BUNDLE_IDENTIFIER = "com.google.Core-ExampleTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Core_Example.app/Core_Example";
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 06121EC51EC399C50008D70E /* Build configuration list for PBXNativeTarget "Storage_IntegrationTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 06121EC31EC399C50008D70E /* Debug */,
- 06121EC41EC399C50008D70E /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 0624F3E81EC0ECFA00E5940D /* Build configuration list for PBXNativeTarget "Database_IntegrationTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 0624F3E91EC0ECFA00E5940D /* Debug */,
- 0624F3EA1EC0ECFA00E5940D /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 6003F585195388D10070C39A /* Build configuration list for PBXProject "Firebase" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 6003F5BD195388D20070C39A /* Debug */,
- 6003F5BE195388D20070C39A /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- AFD562F41EB13C6D00EA2233 /* Build configuration list for PBXNativeTarget "Messaging_Example" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- AFD562F51EB13C6D00EA2233 /* Debug */,
- AFD562F61EB13C6D00EA2233 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- DE33738A1E73773400881891 /* Build configuration list for PBXAggregateTarget "AllUnitTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DE33738B1E73773400881891 /* Debug */,
- DE33738C1E73773400881891 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- DE7B8D281E8EF078009EB6DF /* Build configuration list for PBXNativeTarget "Database_Example" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DE7B8D241E8EF078009EB6DF /* Debug */,
- DE7B8D251E8EF078009EB6DF /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- DE7B8D291E8EF078009EB6DF /* Build configuration list for PBXNativeTarget "Database_Tests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DE7B8D261E8EF078009EB6DF /* Debug */,
- DE7B8D271E8EF078009EB6DF /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- DE9314E91E86C6BE0083EDBF /* Build configuration list for PBXNativeTarget "Auth_Example" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DE9314E51E86C6BE0083EDBF /* Debug */,
- DE9314E61E86C6BE0083EDBF /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- DE9314EA1E86C6BE0083EDBF /* Build configuration list for PBXNativeTarget "Auth_Tests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DE9314E71E86C6BE0083EDBF /* Debug */,
- DE9314E81E86C6BE0083EDBF /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- DE9315B31E8738460083EDBF /* Build configuration list for PBXNativeTarget "Messaging_Tests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DE9315B01E8738460083EDBF /* Debug */,
- DE9315B11E8738460083EDBF /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- DEB13A051E73506A00AC236D /* Build configuration list for PBXNativeTarget "Storage_Example" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DEB13A061E73506A00AC236D /* Debug */,
- DEB13A071E73506A00AC236D /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- DEB13A201E73507E00AC236D /* Build configuration list for PBXNativeTarget "Storage_Tests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DEB13A211E73507E00AC236D /* Debug */,
- DEB13A221E73507E00AC236D /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- DEE14D641E84464D006FA992 /* Build configuration list for PBXNativeTarget "Core_Example" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DEE14D601E84464D006FA992 /* Debug */,
- DEE14D611E84464D006FA992 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- DEE14D651E84464D006FA992 /* Build configuration list for PBXNativeTarget "Core_Tests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DEE14D621E84464D006FA992 /* Debug */,
- DEE14D631E84464D006FA992 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- /* End XCConfigurationList section */
- };
- rootObject = 6003F582195388D10070C39A /* Project object */;
- }
|