project.pbxproj 213 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXAggregateTarget section */
  9. DE3373891E73773400881891 /* AllUnitTests */ = {
  10. isa = PBXAggregateTarget;
  11. buildConfigurationList = DE33738A1E73773400881891 /* Build configuration list for PBXAggregateTarget "AllUnitTests" */;
  12. buildPhases = (
  13. );
  14. dependencies = (
  15. DE6F01BA1E957157004AEE01 /* PBXTargetDependency */,
  16. DEB5185A1E9008CB0089C938 /* PBXTargetDependency */,
  17. DE9315871E86E9990083EDBF /* PBXTargetDependency */,
  18. DEE14E0B1E844FDC006FA992 /* PBXTargetDependency */,
  19. DE3373981E73776F00881891 /* PBXTargetDependency */,
  20. );
  21. name = AllUnitTests;
  22. productName = AllTests;
  23. };
  24. /* End PBXAggregateTarget section */
  25. /* Begin PBXBuildFile section */
  26. 0624F3EB1EC0ED0800E5940D /* FConnectionTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB46F1EBA7AEF00038A59 /* FConnectionTest.m */; };
  27. 0624F3EC1EC0ED1B00E5940D /* FData.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4711EBA7AEF00038A59 /* FData.m */; };
  28. 0624F3ED1EC0ED2300E5940D /* FDotInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4731EBA7AEF00038A59 /* FDotInfo.m */; };
  29. 0624F3EE1EC0ED2A00E5940D /* FEventTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4751EBA7AEF00038A59 /* FEventTests.m */; };
  30. 0624F3EF1EC0ED3000E5940D /* FIRAuthTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4761EBA7AEF00038A59 /* FIRAuthTests.m */; };
  31. 0624F3F01EC0ED3500E5940D /* FIRDatabaseQueryTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4781EBA7AEF00038A59 /* FIRDatabaseQueryTests.m */; };
  32. 0624F3F11EC0ED3A00E5940D /* FIRDatabaseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4791EBA7AEF00038A59 /* FIRDatabaseTests.m */; };
  33. 0624F3F21EC0ED3F00E5940D /* FKeepSyncedTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB47F1EBA7AEF00038A59 /* FKeepSyncedTest.m */; };
  34. 0624F3F31EC0ED4300E5940D /* FOrder.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4811EBA7AEF00038A59 /* FOrder.m */; };
  35. 0624F3F41EC0ED4800E5940D /* FOrderByTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4831EBA7AEF00038A59 /* FOrderByTests.m */; };
  36. 0624F3F51EC0ED4D00E5940D /* FPersist.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4851EBA7AEF00038A59 /* FPersist.m */; };
  37. 0624F3F61EC0ED5100E5940D /* FRealtime.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4871EBA7AEF00038A59 /* FRealtime.m */; };
  38. 0624F3F71EC0ED5600E5940D /* FTransactionTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB48F1EBA7AEF00038A59 /* FTransactionTest.m */; };
  39. 0637BA651EC0F99700CAEFD4 /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0637BA641EC0F99700CAEFD4 /* FirebaseDev.framework */; };
  40. 0637BA671EC0F9BA00CAEFD4 /* FDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D791E8EF202009EB6DF /* FDevice.m */; };
  41. 0637BA681EC0F9BD00CAEFD4 /* FEventTester.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D7B1E8EF202009EB6DF /* FEventTester.m */; };
  42. 0637BA691EC0F9C100CAEFD4 /* FIRFakeApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB47E1EBA7AEF00038A59 /* FIRFakeApp.m */; };
  43. 0637BA6A1EC0F9C400CAEFD4 /* FIRTestAuthTokenProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D7D1E8EF202009EB6DF /* FIRTestAuthTokenProvider.m */; };
  44. 0637BA6B1EC0F9C700CAEFD4 /* FMockStorageEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D7F1E8EF202009EB6DF /* FMockStorageEngine.m */; };
  45. 0637BA6C1EC0F9CB00CAEFD4 /* FTestAuthTokenGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D811E8EF202009EB6DF /* FTestAuthTokenGenerator.m */; };
  46. 0637BA6D1EC0F9CF00CAEFD4 /* FTestBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB45A1EBA7AE200038A59 /* FTestBase.m */; };
  47. 0637BA6E1EC0F9D200CAEFD4 /* FTestCachePolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D831E8EF202009EB6DF /* FTestCachePolicy.m */; };
  48. 0637BA6F1EC0F9D500CAEFD4 /* FTestClock.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D851E8EF202009EB6DF /* FTestClock.m */; };
  49. 0637BA701EC0F9D900CAEFD4 /* FTestExpectations.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D871E8EF202009EB6DF /* FTestExpectations.m */; };
  50. 0637BA711EC0F9DD00CAEFD4 /* FTestHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D891E8EF202009EB6DF /* FTestHelpers.m */; };
  51. 0637BA721EC0F9E000CAEFD4 /* FTupleEventTypeString.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D8B1E8EF203009EB6DF /* FTupleEventTypeString.m */; };
  52. 0637BA731EC0F9E400CAEFD4 /* SenTest+FWaiter.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D8D1E8EF203009EB6DF /* SenTest+FWaiter.m */; };
  53. 063CB49A1EBA7AEF00038A59 /* FirebaseTests-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 063CB47C1EBA7AEF00038A59 /* FirebaseTests-Info.plist */; };
  54. 063CB4A71EBA7B0B00038A59 /* FCompoundWriteTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB46E1EBA7AEF00038A59 /* FCompoundWriteTest.m */; };
  55. 063CB4BE1EBA7B3100038A59 /* FIRDataSnapshotTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB47B1EBA7AEF00038A59 /* FIRDataSnapshotTests.m */; };
  56. 063CB4BF1EBA7B3100038A59 /* FIRFakeApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB47E1EBA7AEF00038A59 /* FIRFakeApp.m */; };
  57. 063CB4C81EBA7B3100038A59 /* FTreeSortedDictionaryTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4901EBA7AEF00038A59 /* FTreeSortedDictionaryTests.m */; };
  58. 063CB4C91EBA7B4600038A59 /* FArraySortedDictionaryTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4471EBA7AE200038A59 /* FArraySortedDictionaryTest.m */; };
  59. 063CB4CA1EBA7B4600038A59 /* FCompoundHashTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4481EBA7AE200038A59 /* FCompoundHashTest.m */; };
  60. 063CB4CB1EBA7B4600038A59 /* FIRMutableDataTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB44A1EBA7AE200038A59 /* FIRMutableDataTests.m */; };
  61. 063CB4CC1EBA7B4600038A59 /* FLevelDBStorageEngineTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB44B1EBA7AE200038A59 /* FLevelDBStorageEngineTests.m */; };
  62. 063CB4CD1EBA7B4600038A59 /* FNodeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB44C1EBA7AE200038A59 /* FNodeTests.m */; };
  63. 063CB4CE1EBA7B4600038A59 /* FPathTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB44E1EBA7AE200038A59 /* FPathTests.m */; };
  64. 063CB4CF1EBA7B4600038A59 /* FPersistenceManagerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB44F1EBA7AE200038A59 /* FPersistenceManagerTest.m */; };
  65. 063CB4D01EBA7B4600038A59 /* FPruneForestTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4501EBA7AE200038A59 /* FPruneForestTest.m */; };
  66. 063CB4D11EBA7B4600038A59 /* FPruningTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4511EBA7AE200038A59 /* FPruningTest.m */; };
  67. 063CB4D21EBA7B4600038A59 /* FQueryParamsTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4521EBA7AE200038A59 /* FQueryParamsTest.m */; };
  68. 063CB4D31EBA7B4600038A59 /* FRangeMergeTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4531EBA7AE200038A59 /* FRangeMergeTest.m */; };
  69. 063CB4D41EBA7B4600038A59 /* FRepoInfoTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4541EBA7AE200038A59 /* FRepoInfoTest.m */; };
  70. 063CB4D51EBA7B4600038A59 /* FSparseSnapshotTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4561EBA7AE200038A59 /* FSparseSnapshotTests.m */; };
  71. 063CB4D71EBA7B4600038A59 /* FTestBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB45A1EBA7AE200038A59 /* FTestBase.m */; };
  72. 063CB4D81EBA7B4600038A59 /* FTrackedQueryManagerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB45B1EBA7AE200038A59 /* FTrackedQueryManagerTest.m */; };
  73. 063CB4D91EBA7B4600038A59 /* FUtilitiesTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB45C1EBA7AE200038A59 /* FUtilitiesTest.m */; };
  74. 063CB4DB1EBAA89E00038A59 /* FSyncPointTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 063CB4581EBA7AE200038A59 /* FSyncPointTests.m */; };
  75. 0672F2F21EBBA7D900818E87 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 0672F2F11EBBA7D900818E87 /* GoogleService-Info.plist */; };
  76. 0672F2F31EBBA7D900818E87 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 0672F2F11EBBA7D900818E87 /* GoogleService-Info.plist */; };
  77. 069428831EC3B38C00F7BC69 /* 1mb.dat in Resources */ = {isa = PBXBuildFile; fileRef = 069428801EC3B35A00F7BC69 /* 1mb.dat */; };
  78. 0697B1221EC13D8A00542174 /* Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 0697B1211EC13D8A00542174 /* Base64.m */; };
  79. 06B47E8C1EC39ADF00170C02 /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 06B47E8B1EC39ADF00170C02 /* FirebaseDev.framework */; };
  80. 06C24A061EC39BCB005208CA /* FIRStorageIntegrationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 06121ECA1EC39A0B0008D70E /* FIRStorageIntegrationTests.m */; };
  81. 22DD1E787F5347BD66CC842B /* Pods_Auth_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1EEA0F965ABC48C695972509 /* Pods_Auth_Example.framework */; };
  82. 260F4B35536ACE792D9BD6C6 /* Pods_Database_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 64928F2997FAF0EAEAC9B8CA /* Pods_Database_Tests.framework */; };
  83. 3054DA05818345789EA0C5B0 /* Pods_Core_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08A821396D7D1089ECE810EF /* Pods_Core_Example.framework */; };
  84. 4768966C0C99B8D4215826A5 /* Pods_Auth_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAB9666F29A81704CA956317 /* Pods_Auth_Tests.framework */; };
  85. 48402D5F3CB17E091298C7FF /* Pods_Database_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 66C7EEA21795A3320088DEBE /* Pods_Database_Example.framework */; };
  86. 7EA36B802D84DD89CE6203A0 /* Pods_Storage_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 16E92590A6B517109A2B219F /* Pods_Storage_Tests.framework */; };
  87. 83C9C772827554752364B400 /* Pods_Messaging_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C8A6D15690286B6BB4CB8023 /* Pods_Messaging_Example.framework */; };
  88. 8CE9133C8720B1C600F7C731 /* Pods_Core_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D52CEDD0146DF63640A4C3A5 /* Pods_Core_Tests.framework */; };
  89. 8D14BB390A3E191CCF78BF91 /* Pods_Storage_IntegrationTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36DF4C7B93E6FE7AD8F88A38 /* Pods_Storage_IntegrationTests.framework */; };
  90. 9653E6AB7DDD8B5E4814442D /* Pods_Database_IntegrationTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E3DEB3CBB1440528DFE1E197 /* Pods_Database_IntegrationTests.framework */; };
  91. AFAF36F51EC28C25004BDEE5 /* Shared.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */; };
  92. AFAF36F61EC28C25004BDEE5 /* Shared.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */; };
  93. AFAF36F71EC28C25004BDEE5 /* Shared.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */; };
  94. AFAF36F81EC28C25004BDEE5 /* Shared.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */; };
  95. AFAF36F91EC28C25004BDEE5 /* Shared.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */; };
  96. AFC8BA9D1EBD230E00B8EEAE /* NotificationsController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFC8BA9C1EBD230E00B8EEAE /* NotificationsController.swift */; };
  97. AFC8BA9F1EBD51A700B8EEAE /* Environment.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFC8BA9E1EBD51A700B8EEAE /* Environment.swift */; };
  98. AFC8BAA71EC257D800B8EEAE /* FIRSampleAppUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = AFC8BAA31EC257D800B8EEAE /* FIRSampleAppUtilities.m */; };
  99. AFD5630C1EB1400900EA2233 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AFD563081EB1400900EA2233 /* LaunchScreen.storyboard */; };
  100. AFD5630D1EB1400900EA2233 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AFD5630A1EB1400900EA2233 /* Main.storyboard */; };
  101. AFD5630E1EB1402300EA2233 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFD562FF1EB13DF200EA2233 /* AppDelegate.swift */; };
  102. AFD5630F1EB1402300EA2233 /* MessagingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFD563011EB13DF200EA2233 /* MessagingViewController.swift */; };
  103. AFD563151EB29EDE00EA2233 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = AFD563131EB1466100EA2233 /* GoogleService-Info.plist */; };
  104. AFD563171EBBEF7B00EA2233 /* Data+MessagingExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFD563161EBBEF7B00EA2233 /* Data+MessagingExtensions.swift */; };
  105. BDE625D72CA3B8918088E0F5 /* Pods_Storage_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA7879CD6EE51EE4E20937C8 /* Pods_Storage_Example.framework */; };
  106. DE0E5BBB1EA7D92E00FAA825 /* FIRVerifyClientRequestTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE0E5BB91EA7D92E00FAA825 /* FIRVerifyClientRequestTest.m */; };
  107. DE0E5BBC1EA7D92E00FAA825 /* FIRVerifyClientResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE0E5BBA1EA7D92E00FAA825 /* FIRVerifyClientResponseTests.m */; };
  108. DE0E5BBD1EA7D93100FAA825 /* FIRAuthAppCredentialTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE0E5BB51EA7D91C00FAA825 /* FIRAuthAppCredentialTests.m */; };
  109. DE0E5BBE1EA7D93500FAA825 /* FIRAuthAppDelegateProxyTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE0E5BB61EA7D91C00FAA825 /* FIRAuthAppDelegateProxyTests.m */; };
  110. DE4E711B1E953ABC00070092 /* FirebaseDev.podspec in Resources */ = {isa = PBXBuildFile; fileRef = DE4E711A1E953ABC00070092 /* FirebaseDev.podspec */; };
  111. DE6F01B01E95675E004AEE01 /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DE6F01AC1E95673C004AEE01 /* FirebaseDev.framework */; };
  112. DE750DBD1EB3DD5B00A75E47 /* FIRAuthAPNSTokenTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE750DB61EB3DD4000A75E47 /* FIRAuthAPNSTokenTests.m */; };
  113. DE750DBE1EB3DD6800A75E47 /* FIRAuthAPNSTokenManagerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE750DB51EB3DD4000A75E47 /* FIRAuthAPNSTokenManagerTests.m */; };
  114. DE750DBF1EB3DD6C00A75E47 /* FIRAuthAppCredentialManagerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE750DB71EB3DD4000A75E47 /* FIRAuthAppCredentialManagerTests.m */; };
  115. DE750DC01EB3DD6F00A75E47 /* FIRAuthNotificationManagerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE750DB81EB3DD4000A75E47 /* FIRAuthNotificationManagerTests.m */; };
  116. DE7B8DB61E8EF203009EB6DF /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = DE7B8D691E8EF202009EB6DF /* InfoPlist.strings */; };
  117. DE7B8DBE1E8EF203009EB6DF /* FDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D791E8EF202009EB6DF /* FDevice.m */; };
  118. DE7B8DBF1E8EF203009EB6DF /* FEventTester.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D7B1E8EF202009EB6DF /* FEventTester.m */; };
  119. DE7B8DC01E8EF203009EB6DF /* FIRTestAuthTokenProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D7D1E8EF202009EB6DF /* FIRTestAuthTokenProvider.m */; };
  120. DE7B8DC11E8EF203009EB6DF /* FMockStorageEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D7F1E8EF202009EB6DF /* FMockStorageEngine.m */; };
  121. DE7B8DC21E8EF203009EB6DF /* FTestAuthTokenGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D811E8EF202009EB6DF /* FTestAuthTokenGenerator.m */; };
  122. DE7B8DC31E8EF203009EB6DF /* FTestCachePolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D831E8EF202009EB6DF /* FTestCachePolicy.m */; };
  123. DE7B8DC41E8EF203009EB6DF /* FTestClock.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D851E8EF202009EB6DF /* FTestClock.m */; };
  124. DE7B8DC51E8EF203009EB6DF /* FTestExpectations.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D871E8EF202009EB6DF /* FTestExpectations.m */; };
  125. DE7B8DC61E8EF203009EB6DF /* FTestHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D891E8EF202009EB6DF /* FTestHelpers.m */; };
  126. DE7B8DC71E8EF203009EB6DF /* FTupleEventTypeString.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D8B1E8EF203009EB6DF /* FTupleEventTypeString.m */; };
  127. DE7B8DC81E8EF203009EB6DF /* SenTest+FWaiter.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D8D1E8EF203009EB6DF /* SenTest+FWaiter.m */; };
  128. DE7B8DC91E8EF203009EB6DF /* syncPointSpec.json in Resources */ = {isa = PBXBuildFile; fileRef = DE7B8D8E1E8EF203009EB6DF /* syncPointSpec.json */; };
  129. DE7B8DCA1E8EF23A009EB6DF /* FIRAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D321E8EF202009EB6DF /* FIRAppDelegate.m */; };
  130. DE7B8DCB1E8EF23A009EB6DF /* FIRViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D341E8EF202009EB6DF /* FIRViewController.m */; };
  131. DE7B8DCC1E8EF23A009EB6DF /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = DE7B8D371E8EF202009EB6DF /* main.m */; };
  132. DE7B8DD01E8EF246009EB6DF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DE7B8D2C1E8EF202009EB6DF /* LaunchScreen.storyboard */; };
  133. DE7B8DD11E8EF24F009EB6DF /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DE7B8D2E1E8EF202009EB6DF /* Main.storyboard */; };
  134. DE7B8DD31E8F1CA7009EB6DF /* Database-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = DE7B8DD21E8F1CA7009EB6DF /* Database-Info.plist */; };
  135. DE9315261E86C6FF0083EDBF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DE9314ED1E86C6FF0083EDBF /* LaunchScreen.storyboard */; };
  136. DE9315271E86C6FF0083EDBF /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DE9314EF1E86C6FF0083EDBF /* Main.storyboard */; };
  137. DE9315291E86C6FF0083EDBF /* FIRAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314F31E86C6FF0083EDBF /* FIRAppDelegate.m */; };
  138. DE93152A1E86C6FF0083EDBF /* FIRViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314F51E86C6FF0083EDBF /* FIRViewController.m */; };
  139. DE93152B1E86C6FF0083EDBF /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = DE9314F61E86C6FF0083EDBF /* GoogleService-Info.plist */; };
  140. DE93152D1E86C6FF0083EDBF /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314F81E86C6FF0083EDBF /* main.m */; };
  141. DE9315571E86C71C0083EDBF /* FIRAdditionalUserInfoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314FA1E86C6FF0083EDBF /* FIRAdditionalUserInfoTests.m */; };
  142. DE9315581E86C71C0083EDBF /* FIRApp+FIRAuthUnitTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314FC1E86C6FF0083EDBF /* FIRApp+FIRAuthUnitTests.m */; };
  143. DE9315591E86C71C0083EDBF /* FIRAuthBackendCreateAuthURITests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314FD1E86C6FF0083EDBF /* FIRAuthBackendCreateAuthURITests.m */; };
  144. DE93155A1E86C71C0083EDBF /* FIRAuthBackendRPCImplementationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314FE1E86C6FF0083EDBF /* FIRAuthBackendRPCImplementationTests.m */; };
  145. DE93155B1E86C71C0083EDBF /* FIRAuthDispatcherTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9314FF1E86C6FF0083EDBF /* FIRAuthDispatcherTests.m */; };
  146. DE93155C1E86C71C0083EDBF /* FIRAuthGlobalWorkQueueTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315001E86C6FF0083EDBF /* FIRAuthGlobalWorkQueueTests.m */; };
  147. DE93155D1E86C71C0083EDBF /* FIRAuthKeychainTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315011E86C6FF0083EDBF /* FIRAuthKeychainTests.m */; };
  148. DE93155E1E86C71C0083EDBF /* FIRAuthSerialTaskQueueTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315021E86C6FF0083EDBF /* FIRAuthSerialTaskQueueTests.m */; };
  149. DE93155F1E86C71C0083EDBF /* FIRAuthTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315031E86C6FF0083EDBF /* FIRAuthTests.m */; };
  150. DE9315601E86C71C0083EDBF /* FIRAuthUserDefaultsStorageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315041E86C6FF0083EDBF /* FIRAuthUserDefaultsStorageTests.m */; };
  151. DE9315611E86C71C0083EDBF /* FIRCreateAuthURIRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315051E86C6FF0083EDBF /* FIRCreateAuthURIRequestTests.m */; };
  152. DE9315621E86C71C0083EDBF /* FIRCreateAuthURIResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315061E86C6FF0083EDBF /* FIRCreateAuthURIResponseTests.m */; };
  153. DE9315631E86C71C0083EDBF /* FIRDeleteAccountRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315071E86C6FF0083EDBF /* FIRDeleteAccountRequestTests.m */; };
  154. DE9315641E86C71C0083EDBF /* FIRDeleteAccountResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315081E86C6FF0083EDBF /* FIRDeleteAccountResponseTests.m */; };
  155. DE9315651E86C71C0083EDBF /* FIRFakeBackendRPCIssuer.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93150A1E86C6FF0083EDBF /* FIRFakeBackendRPCIssuer.m */; };
  156. DE9315661E86C71C0083EDBF /* FIRGetAccountInfoRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93150B1E86C6FF0083EDBF /* FIRGetAccountInfoRequestTests.m */; };
  157. DE9315671E86C71C0083EDBF /* FIRGetAccountInfoResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93150C1E86C6FF0083EDBF /* FIRGetAccountInfoResponseTests.m */; };
  158. DE9315681E86C71C0083EDBF /* FIRGetOOBConfirmationCodeRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93150D1E86C6FF0083EDBF /* FIRGetOOBConfirmationCodeRequestTests.m */; };
  159. DE9315691E86C71C0083EDBF /* FIRGetOOBConfirmationCodeResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93150E1E86C6FF0083EDBF /* FIRGetOOBConfirmationCodeResponseTests.m */; };
  160. DE93156A1E86C71C0083EDBF /* FIRGitHubAuthProviderTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93150F1E86C6FF0083EDBF /* FIRGitHubAuthProviderTests.m */; };
  161. DE93156C1E86C71C0083EDBF /* FIRResetPasswordRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315111E86C6FF0083EDBF /* FIRResetPasswordRequestTests.m */; };
  162. DE93156D1E86C71C0083EDBF /* FIRResetPasswordResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315121E86C6FF0083EDBF /* FIRResetPasswordResponseTests.m */; };
  163. DE93156E1E86C71C0083EDBF /* FIRSendVerificationCodeRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315131E86C6FF0083EDBF /* FIRSendVerificationCodeRequestTests.m */; };
  164. DE93156F1E86C71C0083EDBF /* FIRSendVerificationCodeResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315141E86C6FF0083EDBF /* FIRSendVerificationCodeResponseTests.m */; };
  165. DE9315701E86C71C0083EDBF /* FIRSetAccountInfoRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315151E86C6FF0083EDBF /* FIRSetAccountInfoRequestTests.m */; };
  166. DE9315711E86C71C0083EDBF /* FIRSetAccountInfoResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315161E86C6FF0083EDBF /* FIRSetAccountInfoResponseTests.m */; };
  167. DE9315721E86C71C0083EDBF /* FIRSignUpNewUserRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315171E86C6FF0083EDBF /* FIRSignUpNewUserRequestTests.m */; };
  168. DE9315731E86C71C0083EDBF /* FIRSignUpNewUserResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315181E86C6FF0083EDBF /* FIRSignUpNewUserResponseTests.m */; };
  169. DE9315741E86C71C0083EDBF /* FIRTwitterAuthProviderTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315191E86C6FF0083EDBF /* FIRTwitterAuthProviderTests.m */; };
  170. DE9315751E86C71C0083EDBF /* FIRUserTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93151A1E86C6FF0083EDBF /* FIRUserTests.m */; };
  171. DE9315761E86C71C0083EDBF /* FIRVerifyAssertionRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93151B1E86C6FF0083EDBF /* FIRVerifyAssertionRequestTests.m */; };
  172. DE9315771E86C71C0083EDBF /* FIRVerifyAssertionResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93151C1E86C6FF0083EDBF /* FIRVerifyAssertionResponseTests.m */; };
  173. DE9315781E86C71C0083EDBF /* FIRVerifyCustomTokenRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93151D1E86C6FF0083EDBF /* FIRVerifyCustomTokenRequestTests.m */; };
  174. DE9315791E86C71C0083EDBF /* FIRVerifyCustomTokenResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93151E1E86C6FF0083EDBF /* FIRVerifyCustomTokenResponseTests.m */; };
  175. DE93157A1E86C71C0083EDBF /* FIRVerifyPasswordRequestTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE93151F1E86C6FF0083EDBF /* FIRVerifyPasswordRequestTest.m */; };
  176. DE93157B1E86C71C0083EDBF /* FIRVerifyPasswordResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315201E86C6FF0083EDBF /* FIRVerifyPasswordResponseTests.m */; };
  177. DE93157C1E86C71C0083EDBF /* FIRVerifyPhoneNumberRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315211E86C6FF0083EDBF /* FIRVerifyPhoneNumberRequestTests.m */; };
  178. DE93157D1E86C71C0083EDBF /* FIRVerifyPhoneNumberResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315221E86C6FF0083EDBF /* FIRVerifyPhoneNumberResponseTests.m */; };
  179. DE93157E1E86C71C0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315241E86C6FF0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.m */; };
  180. DE9315F41E8738E60083EDBF /* FIRMessagingClientTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315C31E8738B70083EDBF /* FIRMessagingClientTest.m */; };
  181. DE9315F51E8738E60083EDBF /* FIRMessagingCodedInputStreamTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315C41E8738B70083EDBF /* FIRMessagingCodedInputStreamTest.m */; };
  182. DE9315F61E8738E60083EDBF /* FIRMessagingConnectionTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315C51E8738B70083EDBF /* FIRMessagingConnectionTest.m */; };
  183. DE9315F71E8738E60083EDBF /* FIRMessagingContextManagerServiceTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315C61E8738B70083EDBF /* FIRMessagingContextManagerServiceTest.m */; };
  184. DE9315F81E8738E60083EDBF /* FIRMessagingDataMessageManagerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315C71E8738B70083EDBF /* FIRMessagingDataMessageManagerTest.m */; };
  185. DE9315F91E8738E60083EDBF /* FIRMessagingFakeConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315C91E8738B70083EDBF /* FIRMessagingFakeConnection.m */; };
  186. DE9315FA1E8738E60083EDBF /* FIRMessagingFakeSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315CB1E8738B70083EDBF /* FIRMessagingFakeSocket.m */; };
  187. DE9315FB1E8738E60083EDBF /* FIRMessagingLinkHandlingTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315CC1E8738B70083EDBF /* FIRMessagingLinkHandlingTest.m */; };
  188. DE9315FC1E8738E60083EDBF /* FIRMessagingPendingTopicsListTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315CD1E8738B70083EDBF /* FIRMessagingPendingTopicsListTest.m */; };
  189. DE9315FD1E8738E60083EDBF /* FIRMessagingPubSubTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315CE1E8738B70083EDBF /* FIRMessagingPubSubTest.m */; };
  190. DE9315FE1E8738E60083EDBF /* FIRMessagingRegistrarTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315CF1E8738B70083EDBF /* FIRMessagingRegistrarTest.m */; };
  191. DE9315FF1E8738E60083EDBF /* FIRMessagingRemoteNotificationsProxyTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D01E8738B70083EDBF /* FIRMessagingRemoteNotificationsProxyTest.m */; };
  192. DE9316001E8738E60083EDBF /* FIRMessagingRmqManagerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D11E8738B70083EDBF /* FIRMessagingRmqManagerTest.m */; };
  193. DE9316011E8738E60083EDBF /* FIRMessagingSecureSocketTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D21E8738B70083EDBF /* FIRMessagingSecureSocketTest.m */; };
  194. DE9316021E8738E60083EDBF /* FIRMessagingServiceTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D31E8738B70083EDBF /* FIRMessagingServiceTest.m */; };
  195. DE9316031E8738E60083EDBF /* FIRMessagingSyncMessageManagerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D41E8738B70083EDBF /* FIRMessagingSyncMessageManagerTest.m */; };
  196. DE9316041E8738E60083EDBF /* FIRMessagingTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D51E8738B70083EDBF /* FIRMessagingTest.m */; };
  197. DE9316051E8738E60083EDBF /* FIRMessagingTestNotificationUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9315D71E8738B70083EDBF /* FIRMessagingTestNotificationUtilities.m */; };
  198. DEB139F41E73506A00AC236D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
  199. DEB139F51E73506A00AC236D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
  200. DEB139F61E73506A00AC236D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
  201. DEB13A271E73518B00AC236D /* FIRStorageDeleteTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C11E734D9D00AC236D /* FIRStorageDeleteTests.m */; };
  202. DEB13A281E73518B00AC236D /* FIRStorageGetMetadataTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C21E734D9D00AC236D /* FIRStorageGetMetadataTests.m */; };
  203. DEB13A291E73518B00AC236D /* FIRStorageMetadataTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C31E734D9D00AC236D /* FIRStorageMetadataTests.m */; };
  204. DEB13A2A1E73518B00AC236D /* FIRStoragePathTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C41E734D9D00AC236D /* FIRStoragePathTests.m */; };
  205. DEB13A2B1E73518B00AC236D /* FIRStorageReferenceTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C51E734D9D00AC236D /* FIRStorageReferenceTests.m */; };
  206. DEB13A2C1E73518B00AC236D /* FIRStorageTestHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C71E734D9D00AC236D /* FIRStorageTestHelpers.m */; };
  207. DEB13A2D1E73518B00AC236D /* FIRStorageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C81E734D9D00AC236D /* FIRStorageTests.m */; };
  208. DEB13A2E1E73518B00AC236D /* FIRStorageTokenAuthorizerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139C91E734D9D00AC236D /* FIRStorageTokenAuthorizerTests.m */; };
  209. DEB13A2F1E73518B00AC236D /* FIRStorageUpdateMetadataTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139CA1E734D9D00AC236D /* FIRStorageUpdateMetadataTests.m */; };
  210. DEB13A301E73518B00AC236D /* FIRStorageUtilsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB139CB1E734D9D00AC236D /* FIRStorageUtilsTests.m */; };
  211. DEB61EC51E7C5DBB00C04B96 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DEB61EB91E7C5DBB00C04B96 /* LaunchScreen.storyboard */; };
  212. DEB61EC61E7C5DBB00C04B96 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DEB61EBB1E7C5DBB00C04B96 /* Main.storyboard */; };
  213. DEB61EC71E7C5DBB00C04B96 /* FIRAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB61EBE1E7C5DBB00C04B96 /* FIRAppDelegate.m */; };
  214. DEB61EC81E7C5DBB00C04B96 /* FIRViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB61EC01E7C5DBB00C04B96 /* FIRViewController.m */; };
  215. DEB61EC91E7C5DBB00C04B96 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = DEB61EC11E7C5DBB00C04B96 /* GoogleService-Info.plist */; };
  216. DEB61ECB1E7C5DBB00C04B96 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB61EC31E7C5DBB00C04B96 /* main.m */; };
  217. DEC0EE0D1EA427CC007E2177 /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DE6F01B31E9567F1004AEE01 /* FirebaseDev.framework */; };
  218. DEC0EE0F1EA42D5D007E2177 /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DEC0EE0E1EA42D5D007E2177 /* FirebaseDev.framework */; };
  219. DEC0EE111EA42D73007E2177 /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DEC0EE101EA42D73007E2177 /* FirebaseDev.framework */; };
  220. DECE039B1E9ED01600164CA4 /* FIRPhoneAuthProviderTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DECE03991E9ECFF500164CA4 /* FIRPhoneAuthProviderTests.m */; };
  221. DEE13AA11EA170D500D1BABA /* FirebaseDev.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DE6F01B11E9567BF004AEE01 /* FirebaseDev.framework */; };
  222. DEE14D7E1E844677006FA992 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DEE14D681E844677006FA992 /* LaunchScreen.storyboard */; };
  223. DEE14D7F1E844677006FA992 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DEE14D6A1E844677006FA992 /* Main.storyboard */; };
  224. DEE14D811E844677006FA992 /* FIRAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D6E1E844677006FA992 /* FIRAppDelegate.m */; };
  225. DEE14D821E844677006FA992 /* FIRViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D701E844677006FA992 /* FIRViewController.m */; };
  226. DEE14D831E844677006FA992 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = DEE14D711E844677006FA992 /* GoogleService-Info.plist */; };
  227. DEE14D851E844677006FA992 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D731E844677006FA992 /* main.m */; };
  228. DEE14D8E1E84468D006FA992 /* FIRAppAssociationRegistrationUnitTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D751E844677006FA992 /* FIRAppAssociationRegistrationUnitTests.m */; };
  229. DEE14D8F1E84468D006FA992 /* FIRAppTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D761E844677006FA992 /* FIRAppTest.m */; };
  230. DEE14D901E84468D006FA992 /* FIRBundleUtilTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D771E844677006FA992 /* FIRBundleUtilTest.m */; };
  231. DEE14D911E84468D006FA992 /* FIRConfigurationTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D781E844677006FA992 /* FIRConfigurationTest.m */; };
  232. DEE14D921E84468D006FA992 /* FIRLoggerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D791E844677006FA992 /* FIRLoggerTest.m */; };
  233. DEE14D931E84468D006FA992 /* FIROptionsTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D7A1E844677006FA992 /* FIROptionsTest.m */; };
  234. DEE14D941E84468D006FA992 /* FIRTestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE14D7C1E844677006FA992 /* FIRTestCase.m */; };
  235. EA9A4B8DCCA67EB6F9B4008F /* Pods_Messaging_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E9D28B14E5B756D3A1938CB2 /* Pods_Messaging_Tests.framework */; };
  236. /* End PBXBuildFile section */
  237. /* Begin PBXContainerItemProxy section */
  238. 06121EC61EC399D40008D70E /* PBXContainerItemProxy */ = {
  239. isa = PBXContainerItemProxy;
  240. containerPortal = 6003F582195388D10070C39A /* Project object */;
  241. proxyType = 1;
  242. remoteGlobalIDString = DEB139E01E73506A00AC236D;
  243. remoteInfo = Storage_Example;
  244. };
  245. 0624F3E61EC0ECFA00E5940D /* PBXContainerItemProxy */ = {
  246. isa = PBXContainerItemProxy;
  247. containerPortal = 6003F582195388D10070C39A /* Project object */;
  248. proxyType = 1;
  249. remoteGlobalIDString = DE7B8D041E8EF077009EB6DF;
  250. remoteInfo = Database_Example;
  251. };
  252. AFD563111EB140E100EA2233 /* PBXContainerItemProxy */ = {
  253. isa = PBXContainerItemProxy;
  254. containerPortal = 6003F582195388D10070C39A /* Project object */;
  255. proxyType = 1;
  256. remoteGlobalIDString = AFD562E41EB13C6D00EA2233;
  257. remoteInfo = Messaging_Example;
  258. };
  259. DE3373971E73776F00881891 /* PBXContainerItemProxy */ = {
  260. isa = PBXContainerItemProxy;
  261. containerPortal = 6003F582195388D10070C39A /* Project object */;
  262. proxyType = 1;
  263. remoteGlobalIDString = DEB13A0A1E73507E00AC236D;
  264. remoteInfo = Storage_Tests;
  265. };
  266. DE6F01B91E957157004AEE01 /* PBXContainerItemProxy */ = {
  267. isa = PBXContainerItemProxy;
  268. containerPortal = 6003F582195388D10070C39A /* Project object */;
  269. proxyType = 1;
  270. remoteGlobalIDString = DE9315A61E8738460083EDBF;
  271. remoteInfo = Messaging_Tests;
  272. };
  273. DE7B8D1E1E8EF078009EB6DF /* PBXContainerItemProxy */ = {
  274. isa = PBXContainerItemProxy;
  275. containerPortal = 6003F582195388D10070C39A /* Project object */;
  276. proxyType = 1;
  277. remoteGlobalIDString = DE7B8D041E8EF077009EB6DF;
  278. remoteInfo = Database_Example;
  279. };
  280. DE9314DF1E86C6BE0083EDBF /* PBXContainerItemProxy */ = {
  281. isa = PBXContainerItemProxy;
  282. containerPortal = 6003F582195388D10070C39A /* Project object */;
  283. proxyType = 1;
  284. remoteGlobalIDString = DE9314C51E86C6BD0083EDBF;
  285. remoteInfo = Auth_Example;
  286. };
  287. DE9315861E86E9990083EDBF /* PBXContainerItemProxy */ = {
  288. isa = PBXContainerItemProxy;
  289. containerPortal = 6003F582195388D10070C39A /* Project object */;
  290. proxyType = 1;
  291. remoteGlobalIDString = DE9314DD1E86C6BE0083EDBF;
  292. remoteInfo = Auth_Tests;
  293. };
  294. DEB13A251E73512500AC236D /* PBXContainerItemProxy */ = {
  295. isa = PBXContainerItemProxy;
  296. containerPortal = 6003F582195388D10070C39A /* Project object */;
  297. proxyType = 1;
  298. remoteGlobalIDString = DEB139E01E73506A00AC236D;
  299. remoteInfo = Storage_Example;
  300. };
  301. DEB518591E9008CB0089C938 /* PBXContainerItemProxy */ = {
  302. isa = PBXContainerItemProxy;
  303. containerPortal = 6003F582195388D10070C39A /* Project object */;
  304. proxyType = 1;
  305. remoteGlobalIDString = DE7B8D1C1E8EF078009EB6DF;
  306. remoteInfo = Database_Tests;
  307. };
  308. DEE14D5A1E84464D006FA992 /* PBXContainerItemProxy */ = {
  309. isa = PBXContainerItemProxy;
  310. containerPortal = 6003F582195388D10070C39A /* Project object */;
  311. proxyType = 1;
  312. remoteGlobalIDString = DEE14D401E84464D006FA992;
  313. remoteInfo = Core_Example;
  314. };
  315. DEE14E0A1E844FDC006FA992 /* PBXContainerItemProxy */ = {
  316. isa = PBXContainerItemProxy;
  317. containerPortal = 6003F582195388D10070C39A /* Project object */;
  318. proxyType = 1;
  319. remoteGlobalIDString = DEE14D581E84464D006FA992;
  320. remoteInfo = Core_Tests;
  321. };
  322. /* End PBXContainerItemProxy section */
  323. /* Begin PBXFileReference section */
  324. 06121EBC1EC399C50008D70E /* Storage_IntegrationTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Storage_IntegrationTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  325. 06121ECA1EC39A0B0008D70E /* FIRStorageIntegrationTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageIntegrationTests.m; sourceTree = "<group>"; };
  326. 0624F3E11EC0ECFA00E5940D /* Database_IntegrationTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Database_IntegrationTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  327. 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>"; };
  328. 063CB4471EBA7AE200038A59 /* FArraySortedDictionaryTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FArraySortedDictionaryTest.m; path = Database/Tests/Unit/FArraySortedDictionaryTest.m; sourceTree = SOURCE_ROOT; };
  329. 063CB4481EBA7AE200038A59 /* FCompoundHashTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FCompoundHashTest.m; path = Database/Tests/Unit/FCompoundHashTest.m; sourceTree = SOURCE_ROOT; };
  330. 063CB4491EBA7AE200038A59 /* FIRMutableDataTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FIRMutableDataTests.h; path = Database/Tests/Unit/FIRMutableDataTests.h; sourceTree = SOURCE_ROOT; };
  331. 063CB44A1EBA7AE200038A59 /* FIRMutableDataTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FIRMutableDataTests.m; path = Database/Tests/Unit/FIRMutableDataTests.m; sourceTree = SOURCE_ROOT; };
  332. 063CB44B1EBA7AE200038A59 /* FLevelDBStorageEngineTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FLevelDBStorageEngineTests.m; path = Database/Tests/Unit/FLevelDBStorageEngineTests.m; sourceTree = SOURCE_ROOT; };
  333. 063CB44C1EBA7AE200038A59 /* FNodeTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FNodeTests.m; path = Database/Tests/Unit/FNodeTests.m; sourceTree = SOURCE_ROOT; };
  334. 063CB44D1EBA7AE200038A59 /* FPathTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FPathTests.h; path = Database/Tests/Unit/FPathTests.h; sourceTree = SOURCE_ROOT; };
  335. 063CB44E1EBA7AE200038A59 /* FPathTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FPathTests.m; path = Database/Tests/Unit/FPathTests.m; sourceTree = SOURCE_ROOT; };
  336. 063CB44F1EBA7AE200038A59 /* FPersistenceManagerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FPersistenceManagerTest.m; path = Database/Tests/Unit/FPersistenceManagerTest.m; sourceTree = SOURCE_ROOT; };
  337. 063CB4501EBA7AE200038A59 /* FPruneForestTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FPruneForestTest.m; path = Database/Tests/Unit/FPruneForestTest.m; sourceTree = SOURCE_ROOT; };
  338. 063CB4511EBA7AE200038A59 /* FPruningTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FPruningTest.m; path = Database/Tests/Unit/FPruningTest.m; sourceTree = SOURCE_ROOT; };
  339. 063CB4521EBA7AE200038A59 /* FQueryParamsTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FQueryParamsTest.m; path = Database/Tests/Unit/FQueryParamsTest.m; sourceTree = SOURCE_ROOT; };
  340. 063CB4531EBA7AE200038A59 /* FRangeMergeTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FRangeMergeTest.m; path = Database/Tests/Unit/FRangeMergeTest.m; sourceTree = SOURCE_ROOT; };
  341. 063CB4541EBA7AE200038A59 /* FRepoInfoTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FRepoInfoTest.m; path = Database/Tests/Unit/FRepoInfoTest.m; sourceTree = SOURCE_ROOT; };
  342. 063CB4551EBA7AE200038A59 /* FSparseSnapshotTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FSparseSnapshotTests.h; path = Database/Tests/Unit/FSparseSnapshotTests.h; sourceTree = SOURCE_ROOT; };
  343. 063CB4561EBA7AE200038A59 /* FSparseSnapshotTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FSparseSnapshotTests.m; path = Database/Tests/Unit/FSparseSnapshotTests.m; sourceTree = SOURCE_ROOT; };
  344. 063CB4571EBA7AE200038A59 /* FSyncPointTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FSyncPointTests.h; path = Database/Tests/Unit/FSyncPointTests.h; sourceTree = SOURCE_ROOT; };
  345. 063CB4581EBA7AE200038A59 /* FSyncPointTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FSyncPointTests.m; path = Database/Tests/Unit/FSyncPointTests.m; sourceTree = SOURCE_ROOT; };
  346. 063CB4591EBA7AE200038A59 /* FTestBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FTestBase.h; path = Database/Tests/Helpers/FTestBase.h; sourceTree = SOURCE_ROOT; };
  347. 063CB45A1EBA7AE200038A59 /* FTestBase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FTestBase.m; path = Database/Tests/Helpers/FTestBase.m; sourceTree = SOURCE_ROOT; };
  348. 063CB45B1EBA7AE200038A59 /* FTrackedQueryManagerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FTrackedQueryManagerTest.m; path = Database/Tests/Unit/FTrackedQueryManagerTest.m; sourceTree = SOURCE_ROOT; };
  349. 063CB45C1EBA7AE200038A59 /* FUtilitiesTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FUtilitiesTest.m; path = Database/Tests/Unit/FUtilitiesTest.m; sourceTree = SOURCE_ROOT; };
  350. 063CB46E1EBA7AEF00038A59 /* FCompoundWriteTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FCompoundWriteTest.m; sourceTree = "<group>"; };
  351. 063CB46F1EBA7AEF00038A59 /* FConnectionTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FConnectionTest.m; path = Integration/FConnectionTest.m; sourceTree = "<group>"; };
  352. 063CB4701EBA7AEF00038A59 /* FData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FData.h; path = Integration/FData.h; sourceTree = "<group>"; };
  353. 063CB4711EBA7AEF00038A59 /* FData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FData.m; path = Integration/FData.m; sourceTree = "<group>"; };
  354. 063CB4721EBA7AEF00038A59 /* FDotInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FDotInfo.h; path = Integration/FDotInfo.h; sourceTree = "<group>"; };
  355. 063CB4731EBA7AEF00038A59 /* FDotInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FDotInfo.m; path = Integration/FDotInfo.m; sourceTree = "<group>"; };
  356. 063CB4741EBA7AEF00038A59 /* FEventTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FEventTests.h; path = Integration/FEventTests.h; sourceTree = "<group>"; };
  357. 063CB4751EBA7AEF00038A59 /* FEventTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FEventTests.m; path = Integration/FEventTests.m; sourceTree = "<group>"; };
  358. 063CB4761EBA7AEF00038A59 /* FIRAuthTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FIRAuthTests.m; path = Integration/FIRAuthTests.m; sourceTree = "<group>"; };
  359. 063CB4771EBA7AEF00038A59 /* FIRDatabaseQueryTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FIRDatabaseQueryTests.h; path = Integration/FIRDatabaseQueryTests.h; sourceTree = "<group>"; };
  360. 063CB4781EBA7AEF00038A59 /* FIRDatabaseQueryTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseQueryTests.m; path = Integration/FIRDatabaseQueryTests.m; sourceTree = "<group>"; };
  361. 063CB4791EBA7AEF00038A59 /* FIRDatabaseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FIRDatabaseTests.m; path = Integration/FIRDatabaseTests.m; sourceTree = "<group>"; };
  362. 063CB47A1EBA7AEF00038A59 /* FIRDataSnapshotTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRDataSnapshotTests.h; sourceTree = "<group>"; };
  363. 063CB47B1EBA7AEF00038A59 /* FIRDataSnapshotTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRDataSnapshotTests.m; sourceTree = "<group>"; };
  364. 063CB47C1EBA7AEF00038A59 /* FirebaseTests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "FirebaseTests-Info.plist"; sourceTree = "<group>"; };
  365. 063CB47D1EBA7AEF00038A59 /* FIRFakeApp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRFakeApp.h; sourceTree = "<group>"; };
  366. 063CB47E1EBA7AEF00038A59 /* FIRFakeApp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRFakeApp.m; sourceTree = "<group>"; };
  367. 063CB47F1EBA7AEF00038A59 /* FKeepSyncedTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FKeepSyncedTest.m; path = Integration/FKeepSyncedTest.m; sourceTree = "<group>"; };
  368. 063CB4801EBA7AEF00038A59 /* FOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FOrder.h; path = Integration/FOrder.h; sourceTree = "<group>"; };
  369. 063CB4811EBA7AEF00038A59 /* FOrder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FOrder.m; path = Integration/FOrder.m; sourceTree = "<group>"; };
  370. 063CB4821EBA7AEF00038A59 /* FOrderByTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FOrderByTests.h; path = Integration/FOrderByTests.h; sourceTree = "<group>"; };
  371. 063CB4831EBA7AEF00038A59 /* FOrderByTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FOrderByTests.m; path = Integration/FOrderByTests.m; sourceTree = "<group>"; };
  372. 063CB4841EBA7AEF00038A59 /* FPersist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FPersist.h; path = Integration/FPersist.h; sourceTree = "<group>"; };
  373. 063CB4851EBA7AEF00038A59 /* FPersist.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FPersist.m; path = Integration/FPersist.m; sourceTree = "<group>"; };
  374. 063CB4861EBA7AEF00038A59 /* FRealtime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FRealtime.h; path = Integration/FRealtime.h; sourceTree = "<group>"; };
  375. 063CB4871EBA7AEF00038A59 /* FRealtime.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FRealtime.m; path = Integration/FRealtime.m; sourceTree = "<group>"; };
  376. 063CB48D1EBA7AEF00038A59 /* FTestContants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTestContants.h; sourceTree = "<group>"; };
  377. 063CB48E1EBA7AEF00038A59 /* FTransactionTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FTransactionTest.h; path = Integration/FTransactionTest.h; sourceTree = "<group>"; };
  378. 063CB48F1EBA7AEF00038A59 /* FTransactionTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FTransactionTest.m; path = Integration/FTransactionTest.m; sourceTree = "<group>"; };
  379. 063CB4901EBA7AEF00038A59 /* FTreeSortedDictionaryTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTreeSortedDictionaryTests.m; sourceTree = "<group>"; };
  380. 0672F2F11EBBA7D900818E87 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
  381. 069428801EC3B35A00F7BC69 /* 1mb.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = 1mb.dat; sourceTree = "<group>"; };
  382. 0697B1201EC13D8A00542174 /* Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Base64.h; sourceTree = "<group>"; };
  383. 0697B1211EC13D8A00542174 /* Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Base64.m; sourceTree = "<group>"; };
  384. 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>"; };
  385. 08A821396D7D1089ECE810EF /* Pods_Core_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Core_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  386. 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>"; };
  387. 16E92590A6B517109A2B219F /* Pods_Storage_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Storage_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  388. 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>"; };
  389. 1EEA0F965ABC48C695972509 /* Pods_Auth_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Auth_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  390. 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>"; };
  391. 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>"; };
  392. 36DF4C7B93E6FE7AD8F88A38 /* Pods_Storage_IntegrationTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Storage_IntegrationTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  393. 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>"; };
  394. 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>"; };
  395. 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  396. 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  397. 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  398. 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>"; };
  399. 64928F2997FAF0EAEAC9B8CA /* Pods_Database_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Database_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  400. 66C7EEA21795A3320088DEBE /* Pods_Database_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Database_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  401. 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>"; };
  402. 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>"; };
  403. 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>"; };
  404. 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>"; };
  405. 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>"; };
  406. 8496034D8156555C5FCF8F14 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
  407. 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>"; };
  408. 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>"; };
  409. 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>"; };
  410. 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>"; };
  411. AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Shared.xcassets; path = Shared/Shared.xcassets; sourceTree = "<group>"; };
  412. AFC8BA9C1EBD230E00B8EEAE /* NotificationsController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = NotificationsController.swift; path = App/NotificationsController.swift; sourceTree = "<group>"; };
  413. AFC8BA9E1EBD51A700B8EEAE /* Environment.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Environment.swift; path = App/Environment.swift; sourceTree = "<group>"; };
  414. AFC8BAA11EC257D700B8EEAE /* Messaging_Example-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Messaging_Example-Bridging-Header.h"; sourceTree = "<group>"; };
  415. AFC8BAA21EC257D800B8EEAE /* FIRSampleAppUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FIRSampleAppUtilities.h; path = Shared/FIRSampleAppUtilities.h; sourceTree = "<group>"; };
  416. AFC8BAA31EC257D800B8EEAE /* FIRSampleAppUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FIRSampleAppUtilities.m; path = Shared/FIRSampleAppUtilities.m; sourceTree = "<group>"; };
  417. AFD562E51EB13C6D00EA2233 /* Messaging_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Messaging_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
  418. AFD562FF1EB13DF200EA2233 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = App/AppDelegate.swift; sourceTree = "<group>"; };
  419. AFD563001EB13DF200EA2233 /* Messaging-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "Messaging-Info.plist"; path = "App/Messaging-Info.plist"; sourceTree = "<group>"; };
  420. AFD563011EB13DF200EA2233 /* MessagingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = MessagingViewController.swift; path = App/MessagingViewController.swift; sourceTree = "<group>"; };
  421. AFD563091EB1400900EA2233 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = App/Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  422. AFD5630B1EB1400900EA2233 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = App/Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  423. AFD563131EB1466100EA2233 /* GoogleService-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "GoogleService-Info.plist"; path = "App/GoogleService-Info.plist"; sourceTree = "<group>"; };
  424. AFD563141EB29B8C00EA2233 /* Messaging_Example.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = Messaging_Example.entitlements; path = App/Messaging_Example.entitlements; sourceTree = "<group>"; };
  425. AFD563161EBBEF7B00EA2233 /* Data+MessagingExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = "Data+MessagingExtensions.swift"; path = "App/Data+MessagingExtensions.swift"; sourceTree = "<group>"; };
  426. 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>"; };
  427. 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>"; };
  428. C8A6D15690286B6BB4CB8023 /* Pods_Messaging_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Messaging_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  429. 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>"; };
  430. D52CEDD0146DF63640A4C3A5 /* Pods_Core_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Core_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  431. 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>"; };
  432. DA7879CD6EE51EE4E20937C8 /* Pods_Storage_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Storage_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  433. DE0E5BB51EA7D91C00FAA825 /* FIRAuthAppCredentialTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthAppCredentialTests.m; sourceTree = "<group>"; };
  434. DE0E5BB61EA7D91C00FAA825 /* FIRAuthAppDelegateProxyTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthAppDelegateProxyTests.m; sourceTree = "<group>"; };
  435. DE0E5BB91EA7D92E00FAA825 /* FIRVerifyClientRequestTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyClientRequestTest.m; sourceTree = "<group>"; };
  436. DE0E5BBA1EA7D92E00FAA825 /* FIRVerifyClientResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyClientResponseTests.m; sourceTree = "<group>"; };
  437. DE45C6641E7DA8CB009E6ACD /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
  438. DE4E711A1E953ABC00070092 /* FirebaseDev.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = FirebaseDev.podspec; path = ../FirebaseDev.podspec; sourceTree = "<group>"; };
  439. 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>"; };
  440. 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>"; };
  441. 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>"; };
  442. DE750DB51EB3DD4000A75E47 /* FIRAuthAPNSTokenManagerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthAPNSTokenManagerTests.m; sourceTree = "<group>"; };
  443. DE750DB61EB3DD4000A75E47 /* FIRAuthAPNSTokenTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthAPNSTokenTests.m; sourceTree = "<group>"; };
  444. DE750DB71EB3DD4000A75E47 /* FIRAuthAppCredentialManagerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthAppCredentialManagerTests.m; sourceTree = "<group>"; };
  445. DE750DB81EB3DD4000A75E47 /* FIRAuthNotificationManagerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthNotificationManagerTests.m; sourceTree = "<group>"; };
  446. DE7B8D051E8EF077009EB6DF /* Database_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Database_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
  447. DE7B8D1D1E8EF078009EB6DF /* Database_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Database_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  448. DE7B8D2D1E8EF202009EB6DF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  449. DE7B8D2F1E8EF202009EB6DF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  450. DE7B8D311E8EF202009EB6DF /* FIRAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRAppDelegate.h; sourceTree = "<group>"; };
  451. DE7B8D321E8EF202009EB6DF /* FIRAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAppDelegate.m; sourceTree = "<group>"; };
  452. DE7B8D331E8EF202009EB6DF /* FIRViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRViewController.h; sourceTree = "<group>"; };
  453. DE7B8D341E8EF202009EB6DF /* FIRViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRViewController.m; sourceTree = "<group>"; };
  454. DE7B8D371E8EF202009EB6DF /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  455. DE7B8D6A1E8EF202009EB6DF /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  456. DE7B8D781E8EF202009EB6DF /* FDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDevice.h; sourceTree = "<group>"; };
  457. DE7B8D791E8EF202009EB6DF /* FDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FDevice.m; sourceTree = "<group>"; };
  458. DE7B8D7A1E8EF202009EB6DF /* FEventTester.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FEventTester.h; sourceTree = "<group>"; };
  459. DE7B8D7B1E8EF202009EB6DF /* FEventTester.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FEventTester.m; sourceTree = "<group>"; };
  460. DE7B8D7C1E8EF202009EB6DF /* FIRTestAuthTokenProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRTestAuthTokenProvider.h; sourceTree = "<group>"; };
  461. DE7B8D7D1E8EF202009EB6DF /* FIRTestAuthTokenProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRTestAuthTokenProvider.m; sourceTree = "<group>"; };
  462. DE7B8D7E1E8EF202009EB6DF /* FMockStorageEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMockStorageEngine.h; sourceTree = "<group>"; };
  463. DE7B8D7F1E8EF202009EB6DF /* FMockStorageEngine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMockStorageEngine.m; sourceTree = "<group>"; };
  464. DE7B8D801E8EF202009EB6DF /* FTestAuthTokenGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTestAuthTokenGenerator.h; sourceTree = "<group>"; };
  465. DE7B8D811E8EF202009EB6DF /* FTestAuthTokenGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTestAuthTokenGenerator.m; sourceTree = "<group>"; };
  466. DE7B8D821E8EF202009EB6DF /* FTestCachePolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTestCachePolicy.h; sourceTree = "<group>"; };
  467. DE7B8D831E8EF202009EB6DF /* FTestCachePolicy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTestCachePolicy.m; sourceTree = "<group>"; };
  468. DE7B8D841E8EF202009EB6DF /* FTestClock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTestClock.h; sourceTree = "<group>"; };
  469. DE7B8D851E8EF202009EB6DF /* FTestClock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTestClock.m; sourceTree = "<group>"; };
  470. DE7B8D861E8EF202009EB6DF /* FTestExpectations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTestExpectations.h; sourceTree = "<group>"; };
  471. DE7B8D871E8EF202009EB6DF /* FTestExpectations.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTestExpectations.m; sourceTree = "<group>"; };
  472. DE7B8D881E8EF202009EB6DF /* FTestHelpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTestHelpers.h; sourceTree = "<group>"; };
  473. DE7B8D891E8EF202009EB6DF /* FTestHelpers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTestHelpers.m; sourceTree = "<group>"; };
  474. DE7B8D8A1E8EF203009EB6DF /* FTupleEventTypeString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FTupleEventTypeString.h; sourceTree = "<group>"; };
  475. DE7B8D8B1E8EF203009EB6DF /* FTupleEventTypeString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FTupleEventTypeString.m; sourceTree = "<group>"; };
  476. DE7B8D8C1E8EF203009EB6DF /* SenTest+FWaiter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SenTest+FWaiter.h"; sourceTree = "<group>"; };
  477. DE7B8D8D1E8EF203009EB6DF /* SenTest+FWaiter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "SenTest+FWaiter.m"; sourceTree = "<group>"; };
  478. DE7B8D8E1E8EF203009EB6DF /* syncPointSpec.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = syncPointSpec.json; sourceTree = "<group>"; };
  479. DE7B8DD21E8F1CA7009EB6DF /* Database-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Database-Info.plist"; sourceTree = "<group>"; };
  480. DE9314C61E86C6BD0083EDBF /* Auth_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Auth_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
  481. DE9314DE1E86C6BE0083EDBF /* Auth_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Auth_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  482. DE9314EE1E86C6FF0083EDBF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  483. DE9314F01E86C6FF0083EDBF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  484. DE9314F21E86C6FF0083EDBF /* FIRAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRAppDelegate.h; sourceTree = "<group>"; };
  485. DE9314F31E86C6FF0083EDBF /* FIRAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAppDelegate.m; sourceTree = "<group>"; };
  486. DE9314F41E86C6FF0083EDBF /* FIRViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRViewController.h; sourceTree = "<group>"; };
  487. DE9314F51E86C6FF0083EDBF /* FIRViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRViewController.m; sourceTree = "<group>"; };
  488. DE9314F61E86C6FF0083EDBF /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
  489. DE9314F81E86C6FF0083EDBF /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  490. DE9314FA1E86C6FF0083EDBF /* FIRAdditionalUserInfoTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAdditionalUserInfoTests.m; sourceTree = "<group>"; };
  491. DE9314FB1E86C6FF0083EDBF /* FIRApp+FIRAuthUnitTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FIRApp+FIRAuthUnitTests.h"; sourceTree = "<group>"; };
  492. DE9314FC1E86C6FF0083EDBF /* FIRApp+FIRAuthUnitTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "FIRApp+FIRAuthUnitTests.m"; sourceTree = "<group>"; };
  493. DE9314FD1E86C6FF0083EDBF /* FIRAuthBackendCreateAuthURITests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthBackendCreateAuthURITests.m; sourceTree = "<group>"; };
  494. DE9314FE1E86C6FF0083EDBF /* FIRAuthBackendRPCImplementationTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthBackendRPCImplementationTests.m; sourceTree = "<group>"; };
  495. DE9314FF1E86C6FF0083EDBF /* FIRAuthDispatcherTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthDispatcherTests.m; sourceTree = "<group>"; };
  496. DE9315001E86C6FF0083EDBF /* FIRAuthGlobalWorkQueueTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthGlobalWorkQueueTests.m; sourceTree = "<group>"; };
  497. DE9315011E86C6FF0083EDBF /* FIRAuthKeychainTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthKeychainTests.m; sourceTree = "<group>"; };
  498. DE9315021E86C6FF0083EDBF /* FIRAuthSerialTaskQueueTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthSerialTaskQueueTests.m; sourceTree = "<group>"; };
  499. DE9315031E86C6FF0083EDBF /* FIRAuthTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthTests.m; sourceTree = "<group>"; };
  500. DE9315041E86C6FF0083EDBF /* FIRAuthUserDefaultsStorageTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAuthUserDefaultsStorageTests.m; sourceTree = "<group>"; };
  501. DE9315051E86C6FF0083EDBF /* FIRCreateAuthURIRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRCreateAuthURIRequestTests.m; sourceTree = "<group>"; };
  502. DE9315061E86C6FF0083EDBF /* FIRCreateAuthURIResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRCreateAuthURIResponseTests.m; sourceTree = "<group>"; };
  503. DE9315071E86C6FF0083EDBF /* FIRDeleteAccountRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRDeleteAccountRequestTests.m; sourceTree = "<group>"; };
  504. DE9315081E86C6FF0083EDBF /* FIRDeleteAccountResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRDeleteAccountResponseTests.m; sourceTree = "<group>"; };
  505. DE9315091E86C6FF0083EDBF /* FIRFakeBackendRPCIssuer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRFakeBackendRPCIssuer.h; sourceTree = "<group>"; };
  506. DE93150A1E86C6FF0083EDBF /* FIRFakeBackendRPCIssuer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRFakeBackendRPCIssuer.m; sourceTree = "<group>"; };
  507. DE93150B1E86C6FF0083EDBF /* FIRGetAccountInfoRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRGetAccountInfoRequestTests.m; sourceTree = "<group>"; };
  508. DE93150C1E86C6FF0083EDBF /* FIRGetAccountInfoResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRGetAccountInfoResponseTests.m; sourceTree = "<group>"; };
  509. DE93150D1E86C6FF0083EDBF /* FIRGetOOBConfirmationCodeRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRGetOOBConfirmationCodeRequestTests.m; sourceTree = "<group>"; };
  510. DE93150E1E86C6FF0083EDBF /* FIRGetOOBConfirmationCodeResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRGetOOBConfirmationCodeResponseTests.m; sourceTree = "<group>"; };
  511. DE93150F1E86C6FF0083EDBF /* FIRGitHubAuthProviderTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRGitHubAuthProviderTests.m; sourceTree = "<group>"; };
  512. DE9315111E86C6FF0083EDBF /* FIRResetPasswordRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRResetPasswordRequestTests.m; sourceTree = "<group>"; };
  513. DE9315121E86C6FF0083EDBF /* FIRResetPasswordResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRResetPasswordResponseTests.m; sourceTree = "<group>"; };
  514. DE9315131E86C6FF0083EDBF /* FIRSendVerificationCodeRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRSendVerificationCodeRequestTests.m; sourceTree = "<group>"; };
  515. DE9315141E86C6FF0083EDBF /* FIRSendVerificationCodeResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRSendVerificationCodeResponseTests.m; sourceTree = "<group>"; };
  516. DE9315151E86C6FF0083EDBF /* FIRSetAccountInfoRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRSetAccountInfoRequestTests.m; sourceTree = "<group>"; };
  517. DE9315161E86C6FF0083EDBF /* FIRSetAccountInfoResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRSetAccountInfoResponseTests.m; sourceTree = "<group>"; };
  518. DE9315171E86C6FF0083EDBF /* FIRSignUpNewUserRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRSignUpNewUserRequestTests.m; sourceTree = "<group>"; };
  519. DE9315181E86C6FF0083EDBF /* FIRSignUpNewUserResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRSignUpNewUserResponseTests.m; sourceTree = "<group>"; };
  520. DE9315191E86C6FF0083EDBF /* FIRTwitterAuthProviderTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRTwitterAuthProviderTests.m; sourceTree = "<group>"; };
  521. DE93151A1E86C6FF0083EDBF /* FIRUserTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRUserTests.m; sourceTree = "<group>"; };
  522. DE93151B1E86C6FF0083EDBF /* FIRVerifyAssertionRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyAssertionRequestTests.m; sourceTree = "<group>"; };
  523. DE93151C1E86C6FF0083EDBF /* FIRVerifyAssertionResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyAssertionResponseTests.m; sourceTree = "<group>"; };
  524. DE93151D1E86C6FF0083EDBF /* FIRVerifyCustomTokenRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyCustomTokenRequestTests.m; sourceTree = "<group>"; };
  525. DE93151E1E86C6FF0083EDBF /* FIRVerifyCustomTokenResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyCustomTokenResponseTests.m; sourceTree = "<group>"; };
  526. DE93151F1E86C6FF0083EDBF /* FIRVerifyPasswordRequestTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyPasswordRequestTest.m; sourceTree = "<group>"; };
  527. DE9315201E86C6FF0083EDBF /* FIRVerifyPasswordResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyPasswordResponseTests.m; sourceTree = "<group>"; };
  528. DE9315211E86C6FF0083EDBF /* FIRVerifyPhoneNumberRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyPhoneNumberRequestTests.m; sourceTree = "<group>"; };
  529. DE9315221E86C6FF0083EDBF /* FIRVerifyPhoneNumberResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRVerifyPhoneNumberResponseTests.m; sourceTree = "<group>"; };
  530. DE9315231E86C6FF0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "OCMStubRecorder+FIRAuthUnitTests.h"; sourceTree = "<group>"; };
  531. DE9315241E86C6FF0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "OCMStubRecorder+FIRAuthUnitTests.m"; sourceTree = "<group>"; };
  532. DE9315251E86C6FF0083EDBF /* Tests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
  533. DE9315801E86C7F70083EDBF /* Auth-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Auth-Info.plist"; sourceTree = "<group>"; };
  534. DE9315A71E8738460083EDBF /* Messaging_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Messaging_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  535. DE9315C31E8738B70083EDBF /* FIRMessagingClientTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingClientTest.m; sourceTree = "<group>"; };
  536. DE9315C41E8738B70083EDBF /* FIRMessagingCodedInputStreamTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingCodedInputStreamTest.m; sourceTree = "<group>"; };
  537. DE9315C51E8738B70083EDBF /* FIRMessagingConnectionTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingConnectionTest.m; sourceTree = "<group>"; };
  538. DE9315C61E8738B70083EDBF /* FIRMessagingContextManagerServiceTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingContextManagerServiceTest.m; sourceTree = "<group>"; };
  539. DE9315C71E8738B70083EDBF /* FIRMessagingDataMessageManagerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingDataMessageManagerTest.m; sourceTree = "<group>"; };
  540. DE9315C81E8738B70083EDBF /* FIRMessagingFakeConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRMessagingFakeConnection.h; sourceTree = "<group>"; };
  541. DE9315C91E8738B70083EDBF /* FIRMessagingFakeConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingFakeConnection.m; sourceTree = "<group>"; };
  542. DE9315CA1E8738B70083EDBF /* FIRMessagingFakeSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRMessagingFakeSocket.h; sourceTree = "<group>"; };
  543. DE9315CB1E8738B70083EDBF /* FIRMessagingFakeSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingFakeSocket.m; sourceTree = "<group>"; };
  544. DE9315CC1E8738B70083EDBF /* FIRMessagingLinkHandlingTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingLinkHandlingTest.m; sourceTree = "<group>"; };
  545. DE9315CD1E8738B70083EDBF /* FIRMessagingPendingTopicsListTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingPendingTopicsListTest.m; sourceTree = "<group>"; };
  546. DE9315CE1E8738B70083EDBF /* FIRMessagingPubSubTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingPubSubTest.m; sourceTree = "<group>"; };
  547. DE9315CF1E8738B70083EDBF /* FIRMessagingRegistrarTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingRegistrarTest.m; sourceTree = "<group>"; };
  548. DE9315D01E8738B70083EDBF /* FIRMessagingRemoteNotificationsProxyTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingRemoteNotificationsProxyTest.m; sourceTree = "<group>"; };
  549. DE9315D11E8738B70083EDBF /* FIRMessagingRmqManagerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingRmqManagerTest.m; sourceTree = "<group>"; };
  550. DE9315D21E8738B70083EDBF /* FIRMessagingSecureSocketTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingSecureSocketTest.m; sourceTree = "<group>"; };
  551. DE9315D31E8738B70083EDBF /* FIRMessagingServiceTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingServiceTest.m; sourceTree = "<group>"; };
  552. DE9315D41E8738B70083EDBF /* FIRMessagingSyncMessageManagerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingSyncMessageManagerTest.m; sourceTree = "<group>"; };
  553. DE9315D51E8738B70083EDBF /* FIRMessagingTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingTest.m; sourceTree = "<group>"; };
  554. DE9315D61E8738B70083EDBF /* FIRMessagingTestNotificationUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRMessagingTestNotificationUtilities.h; sourceTree = "<group>"; };
  555. DE9315D71E8738B70083EDBF /* FIRMessagingTestNotificationUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRMessagingTestNotificationUtilities.m; sourceTree = "<group>"; };
  556. DE9315D81E8738B70083EDBF /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  557. DEB139C11E734D9D00AC236D /* FIRStorageDeleteTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageDeleteTests.m; sourceTree = "<group>"; };
  558. DEB139C21E734D9D00AC236D /* FIRStorageGetMetadataTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageGetMetadataTests.m; sourceTree = "<group>"; };
  559. DEB139C31E734D9D00AC236D /* FIRStorageMetadataTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageMetadataTests.m; sourceTree = "<group>"; };
  560. DEB139C41E734D9D00AC236D /* FIRStoragePathTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStoragePathTests.m; sourceTree = "<group>"; };
  561. DEB139C51E734D9D00AC236D /* FIRStorageReferenceTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageReferenceTests.m; sourceTree = "<group>"; };
  562. DEB139C61E734D9D00AC236D /* FIRStorageTestHelpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRStorageTestHelpers.h; sourceTree = "<group>"; };
  563. DEB139C71E734D9D00AC236D /* FIRStorageTestHelpers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageTestHelpers.m; sourceTree = "<group>"; };
  564. DEB139C81E734D9D00AC236D /* FIRStorageTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageTests.m; sourceTree = "<group>"; };
  565. DEB139C91E734D9D00AC236D /* FIRStorageTokenAuthorizerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageTokenAuthorizerTests.m; sourceTree = "<group>"; };
  566. DEB139CA1E734D9D00AC236D /* FIRStorageUpdateMetadataTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageUpdateMetadataTests.m; sourceTree = "<group>"; };
  567. DEB139CB1E734D9D00AC236D /* FIRStorageUtilsTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRStorageUtilsTests.m; sourceTree = "<group>"; };
  568. DEB139CC1E734D9D00AC236D /* Tests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
  569. DEB13A081E73506A00AC236D /* Storage_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Storage_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
  570. DEB13A231E73507E00AC236D /* Storage_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Storage_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  571. DEB61E781E7C542600C04B96 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
  572. DEB61EBA1E7C5DBB00C04B96 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  573. DEB61EBC1E7C5DBB00C04B96 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  574. DEB61EBD1E7C5DBB00C04B96 /* FIRAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRAppDelegate.h; sourceTree = "<group>"; };
  575. DEB61EBE1E7C5DBB00C04B96 /* FIRAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAppDelegate.m; sourceTree = "<group>"; };
  576. DEB61EBF1E7C5DBB00C04B96 /* FIRViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRViewController.h; sourceTree = "<group>"; };
  577. DEB61EC01E7C5DBB00C04B96 /* FIRViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRViewController.m; sourceTree = "<group>"; };
  578. DEB61EC11E7C5DBB00C04B96 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
  579. DEB61EC31E7C5DBB00C04B96 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  580. DEB61EC41E7C5DBB00C04B96 /* Storage-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Storage-Info.plist"; sourceTree = "<group>"; };
  581. 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>"; };
  582. 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>"; };
  583. DECE03991E9ECFF500164CA4 /* FIRPhoneAuthProviderTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRPhoneAuthProviderTests.m; sourceTree = "<group>"; };
  584. DEE14D411E84464D006FA992 /* Core_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Core_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
  585. DEE14D591E84464D006FA992 /* Core_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Core_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  586. DEE14D691E844677006FA992 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  587. DEE14D6B1E844677006FA992 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  588. DEE14D6C1E844677006FA992 /* Core-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Core-Info.plist"; sourceTree = "<group>"; };
  589. DEE14D6D1E844677006FA992 /* FIRAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRAppDelegate.h; sourceTree = "<group>"; };
  590. DEE14D6E1E844677006FA992 /* FIRAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAppDelegate.m; sourceTree = "<group>"; };
  591. DEE14D6F1E844677006FA992 /* FIRViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRViewController.h; sourceTree = "<group>"; };
  592. DEE14D701E844677006FA992 /* FIRViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRViewController.m; sourceTree = "<group>"; };
  593. DEE14D711E844677006FA992 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
  594. DEE14D731E844677006FA992 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  595. DEE14D751E844677006FA992 /* FIRAppAssociationRegistrationUnitTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAppAssociationRegistrationUnitTests.m; sourceTree = "<group>"; };
  596. DEE14D761E844677006FA992 /* FIRAppTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRAppTest.m; sourceTree = "<group>"; };
  597. DEE14D771E844677006FA992 /* FIRBundleUtilTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRBundleUtilTest.m; sourceTree = "<group>"; };
  598. DEE14D781E844677006FA992 /* FIRConfigurationTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRConfigurationTest.m; sourceTree = "<group>"; };
  599. DEE14D791E844677006FA992 /* FIRLoggerTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRLoggerTest.m; sourceTree = "<group>"; };
  600. DEE14D7A1E844677006FA992 /* FIROptionsTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIROptionsTest.m; sourceTree = "<group>"; };
  601. DEE14D7B1E844677006FA992 /* FIRTestCase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FIRTestCase.h; sourceTree = "<group>"; };
  602. DEE14D7C1E844677006FA992 /* FIRTestCase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FIRTestCase.m; sourceTree = "<group>"; };
  603. DEE14D7D1E844677006FA992 /* Tests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
  604. E2C2834C90DBAB56D568189F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
  605. E3DEB3CBB1440528DFE1E197 /* Pods_Database_IntegrationTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Database_IntegrationTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  606. E9D28B14E5B756D3A1938CB2 /* Pods_Messaging_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Messaging_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  607. 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>"; };
  608. 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>"; };
  609. 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>"; };
  610. FAB9666F29A81704CA956317 /* Pods_Auth_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Auth_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  611. 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>"; };
  612. /* End PBXFileReference section */
  613. /* Begin PBXFrameworksBuildPhase section */
  614. 06121EB91EC399C50008D70E /* Frameworks */ = {
  615. isa = PBXFrameworksBuildPhase;
  616. buildActionMask = 2147483647;
  617. files = (
  618. 06B47E8C1EC39ADF00170C02 /* FirebaseDev.framework in Frameworks */,
  619. 8D14BB390A3E191CCF78BF91 /* Pods_Storage_IntegrationTests.framework in Frameworks */,
  620. );
  621. runOnlyForDeploymentPostprocessing = 0;
  622. };
  623. 0624F3DE1EC0ECFA00E5940D /* Frameworks */ = {
  624. isa = PBXFrameworksBuildPhase;
  625. buildActionMask = 2147483647;
  626. files = (
  627. 0637BA651EC0F99700CAEFD4 /* FirebaseDev.framework in Frameworks */,
  628. 9653E6AB7DDD8B5E4814442D /* Pods_Database_IntegrationTests.framework in Frameworks */,
  629. );
  630. runOnlyForDeploymentPostprocessing = 0;
  631. };
  632. AFD562E21EB13C6D00EA2233 /* Frameworks */ = {
  633. isa = PBXFrameworksBuildPhase;
  634. buildActionMask = 2147483647;
  635. files = (
  636. 83C9C772827554752364B400 /* Pods_Messaging_Example.framework in Frameworks */,
  637. );
  638. runOnlyForDeploymentPostprocessing = 0;
  639. };
  640. DE7B8D021E8EF077009EB6DF /* Frameworks */ = {
  641. isa = PBXFrameworksBuildPhase;
  642. buildActionMask = 2147483647;
  643. files = (
  644. 48402D5F3CB17E091298C7FF /* Pods_Database_Example.framework in Frameworks */,
  645. );
  646. runOnlyForDeploymentPostprocessing = 0;
  647. };
  648. DE7B8D1A1E8EF078009EB6DF /* Frameworks */ = {
  649. isa = PBXFrameworksBuildPhase;
  650. buildActionMask = 2147483647;
  651. files = (
  652. DEC0EE111EA42D73007E2177 /* FirebaseDev.framework in Frameworks */,
  653. 260F4B35536ACE792D9BD6C6 /* Pods_Database_Tests.framework in Frameworks */,
  654. );
  655. runOnlyForDeploymentPostprocessing = 0;
  656. };
  657. DE9314C31E86C6BD0083EDBF /* Frameworks */ = {
  658. isa = PBXFrameworksBuildPhase;
  659. buildActionMask = 2147483647;
  660. files = (
  661. 22DD1E787F5347BD66CC842B /* Pods_Auth_Example.framework in Frameworks */,
  662. );
  663. runOnlyForDeploymentPostprocessing = 0;
  664. };
  665. DE9314DB1E86C6BE0083EDBF /* Frameworks */ = {
  666. isa = PBXFrameworksBuildPhase;
  667. buildActionMask = 2147483647;
  668. files = (
  669. DEE13AA11EA170D500D1BABA /* FirebaseDev.framework in Frameworks */,
  670. 4768966C0C99B8D4215826A5 /* Pods_Auth_Tests.framework in Frameworks */,
  671. );
  672. runOnlyForDeploymentPostprocessing = 0;
  673. };
  674. DE9315A41E8738460083EDBF /* Frameworks */ = {
  675. isa = PBXFrameworksBuildPhase;
  676. buildActionMask = 2147483647;
  677. files = (
  678. DEC0EE0F1EA42D5D007E2177 /* FirebaseDev.framework in Frameworks */,
  679. EA9A4B8DCCA67EB6F9B4008F /* Pods_Messaging_Tests.framework in Frameworks */,
  680. );
  681. runOnlyForDeploymentPostprocessing = 0;
  682. };
  683. DEB139F31E73506A00AC236D /* Frameworks */ = {
  684. isa = PBXFrameworksBuildPhase;
  685. buildActionMask = 2147483647;
  686. files = (
  687. DEB139F41E73506A00AC236D /* CoreGraphics.framework in Frameworks */,
  688. DEB139F51E73506A00AC236D /* UIKit.framework in Frameworks */,
  689. DEB139F61E73506A00AC236D /* Foundation.framework in Frameworks */,
  690. BDE625D72CA3B8918088E0F5 /* Pods_Storage_Example.framework in Frameworks */,
  691. );
  692. runOnlyForDeploymentPostprocessing = 0;
  693. };
  694. DEB13A161E73507E00AC236D /* Frameworks */ = {
  695. isa = PBXFrameworksBuildPhase;
  696. buildActionMask = 2147483647;
  697. files = (
  698. DE6F01B01E95675E004AEE01 /* FirebaseDev.framework in Frameworks */,
  699. 7EA36B802D84DD89CE6203A0 /* Pods_Storage_Tests.framework in Frameworks */,
  700. );
  701. runOnlyForDeploymentPostprocessing = 0;
  702. };
  703. DEE14D3E1E84464D006FA992 /* Frameworks */ = {
  704. isa = PBXFrameworksBuildPhase;
  705. buildActionMask = 2147483647;
  706. files = (
  707. 3054DA05818345789EA0C5B0 /* Pods_Core_Example.framework in Frameworks */,
  708. );
  709. runOnlyForDeploymentPostprocessing = 0;
  710. };
  711. DEE14D561E84464D006FA992 /* Frameworks */ = {
  712. isa = PBXFrameworksBuildPhase;
  713. buildActionMask = 2147483647;
  714. files = (
  715. DEC0EE0D1EA427CC007E2177 /* FirebaseDev.framework in Frameworks */,
  716. 8CE9133C8720B1C600F7C731 /* Pods_Core_Tests.framework in Frameworks */,
  717. );
  718. runOnlyForDeploymentPostprocessing = 0;
  719. };
  720. /* End PBXFrameworksBuildPhase section */
  721. /* Begin PBXGroup section */
  722. 06121EC81EC399E50008D70E /* Unit */ = {
  723. isa = PBXGroup;
  724. children = (
  725. DEB139C61E734D9D00AC236D /* FIRStorageTestHelpers.h */,
  726. DEB139C11E734D9D00AC236D /* FIRStorageDeleteTests.m */,
  727. DEB139C21E734D9D00AC236D /* FIRStorageGetMetadataTests.m */,
  728. DEB139C31E734D9D00AC236D /* FIRStorageMetadataTests.m */,
  729. DEB139C41E734D9D00AC236D /* FIRStoragePathTests.m */,
  730. DEB139C51E734D9D00AC236D /* FIRStorageReferenceTests.m */,
  731. DEB139C71E734D9D00AC236D /* FIRStorageTestHelpers.m */,
  732. DEB139C81E734D9D00AC236D /* FIRStorageTests.m */,
  733. DEB139C91E734D9D00AC236D /* FIRStorageTokenAuthorizerTests.m */,
  734. DEB139CA1E734D9D00AC236D /* FIRStorageUpdateMetadataTests.m */,
  735. DEB139CB1E734D9D00AC236D /* FIRStorageUtilsTests.m */,
  736. );
  737. path = Unit;
  738. sourceTree = "<group>";
  739. };
  740. 06121EC91EC39A020008D70E /* Integration */ = {
  741. isa = PBXGroup;
  742. children = (
  743. 06121ECA1EC39A0B0008D70E /* FIRStorageIntegrationTests.m */,
  744. );
  745. path = Integration;
  746. sourceTree = "<group>";
  747. };
  748. 063CB43C1EBA752300038A59 /* Integration */ = {
  749. isa = PBXGroup;
  750. children = (
  751. 063CB46F1EBA7AEF00038A59 /* FConnectionTest.m */,
  752. 063CB4701EBA7AEF00038A59 /* FData.h */,
  753. 063CB4711EBA7AEF00038A59 /* FData.m */,
  754. 063CB4721EBA7AEF00038A59 /* FDotInfo.h */,
  755. 063CB4731EBA7AEF00038A59 /* FDotInfo.m */,
  756. 063CB4741EBA7AEF00038A59 /* FEventTests.h */,
  757. 063CB4751EBA7AEF00038A59 /* FEventTests.m */,
  758. 063CB4761EBA7AEF00038A59 /* FIRAuthTests.m */,
  759. 063CB4771EBA7AEF00038A59 /* FIRDatabaseQueryTests.h */,
  760. 063CB4781EBA7AEF00038A59 /* FIRDatabaseQueryTests.m */,
  761. 063CB4791EBA7AEF00038A59 /* FIRDatabaseTests.m */,
  762. 063CB47F1EBA7AEF00038A59 /* FKeepSyncedTest.m */,
  763. 063CB4801EBA7AEF00038A59 /* FOrder.h */,
  764. 063CB4811EBA7AEF00038A59 /* FOrder.m */,
  765. 063CB4821EBA7AEF00038A59 /* FOrderByTests.h */,
  766. 063CB4831EBA7AEF00038A59 /* FOrderByTests.m */,
  767. 063CB4841EBA7AEF00038A59 /* FPersist.h */,
  768. 063CB4851EBA7AEF00038A59 /* FPersist.m */,
  769. 063CB4861EBA7AEF00038A59 /* FRealtime.h */,
  770. 063CB4871EBA7AEF00038A59 /* FRealtime.m */,
  771. 063CB48E1EBA7AEF00038A59 /* FTransactionTest.h */,
  772. 063CB48F1EBA7AEF00038A59 /* FTransactionTest.m */,
  773. );
  774. name = Integration;
  775. sourceTree = "<group>";
  776. };
  777. 0697B11F1EC13D7800542174 /* third_party */ = {
  778. isa = PBXGroup;
  779. children = (
  780. 0697B1201EC13D8A00542174 /* Base64.h */,
  781. 0697B1211EC13D8A00542174 /* Base64.m */,
  782. );
  783. path = third_party;
  784. sourceTree = "<group>";
  785. };
  786. 6003F581195388D10070C39A = {
  787. isa = PBXGroup;
  788. children = (
  789. 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,
  790. DE9314EB1E86C6FF0083EDBF /* Auth */,
  791. DEE14D661E844677006FA992 /* Core */,
  792. DE7B8D2A1E8EF202009EB6DF /* Database */,
  793. DE9315B41E8738B70083EDBF /* Messaging */,
  794. AFC8BAA01EC24B1600B8EEAE /* Shared */,
  795. DEB139B31E734D9D00AC236D /* Storage */,
  796. 6003F58C195388D20070C39A /* Frameworks */,
  797. 6003F58B195388D20070C39A /* Products */,
  798. BDA0613720DCD29C1C3C3791 /* Pods */,
  799. );
  800. sourceTree = "<group>";
  801. };
  802. 6003F58B195388D20070C39A /* Products */ = {
  803. isa = PBXGroup;
  804. children = (
  805. DEB13A081E73506A00AC236D /* Storage_Example.app */,
  806. DEB13A231E73507E00AC236D /* Storage_Tests.xctest */,
  807. DEE14D411E84464D006FA992 /* Core_Example.app */,
  808. DEE14D591E84464D006FA992 /* Core_Tests.xctest */,
  809. DE9314C61E86C6BD0083EDBF /* Auth_Example.app */,
  810. DE9314DE1E86C6BE0083EDBF /* Auth_Tests.xctest */,
  811. DE9315A71E8738460083EDBF /* Messaging_Tests.xctest */,
  812. DE7B8D051E8EF077009EB6DF /* Database_Example.app */,
  813. DE7B8D1D1E8EF078009EB6DF /* Database_Tests.xctest */,
  814. AFD562E51EB13C6D00EA2233 /* Messaging_Example.app */,
  815. 0624F3E11EC0ECFA00E5940D /* Database_IntegrationTests.xctest */,
  816. 06121EBC1EC399C50008D70E /* Storage_IntegrationTests.xctest */,
  817. );
  818. name = Products;
  819. sourceTree = "<group>";
  820. };
  821. 6003F58C195388D20070C39A /* Frameworks */ = {
  822. isa = PBXGroup;
  823. children = (
  824. 06B47E8B1EC39ADF00170C02 /* FirebaseDev.framework */,
  825. 0637BA641EC0F99700CAEFD4 /* FirebaseDev.framework */,
  826. DEC0EE101EA42D73007E2177 /* FirebaseDev.framework */,
  827. DEC0EE0E1EA42D5D007E2177 /* FirebaseDev.framework */,
  828. DE6F01B31E9567F1004AEE01 /* FirebaseDev.framework */,
  829. DE6F01B11E9567BF004AEE01 /* FirebaseDev.framework */,
  830. DE6F01AC1E95673C004AEE01 /* FirebaseDev.framework */,
  831. DE45C6641E7DA8CB009E6ACD /* XCTest.framework */,
  832. DEB61E781E7C542600C04B96 /* libsqlite3.tbd */,
  833. 6003F58D195388D20070C39A /* Foundation.framework */,
  834. 6003F58F195388D20070C39A /* CoreGraphics.framework */,
  835. 6003F591195388D20070C39A /* UIKit.framework */,
  836. 1EEA0F965ABC48C695972509 /* Pods_Auth_Example.framework */,
  837. FAB9666F29A81704CA956317 /* Pods_Auth_Tests.framework */,
  838. 08A821396D7D1089ECE810EF /* Pods_Core_Example.framework */,
  839. D52CEDD0146DF63640A4C3A5 /* Pods_Core_Tests.framework */,
  840. 66C7EEA21795A3320088DEBE /* Pods_Database_Example.framework */,
  841. 64928F2997FAF0EAEAC9B8CA /* Pods_Database_Tests.framework */,
  842. C8A6D15690286B6BB4CB8023 /* Pods_Messaging_Example.framework */,
  843. E9D28B14E5B756D3A1938CB2 /* Pods_Messaging_Tests.framework */,
  844. DA7879CD6EE51EE4E20937C8 /* Pods_Storage_Example.framework */,
  845. 16E92590A6B517109A2B219F /* Pods_Storage_Tests.framework */,
  846. E3DEB3CBB1440528DFE1E197 /* Pods_Database_IntegrationTests.framework */,
  847. 36DF4C7B93E6FE7AD8F88A38 /* Pods_Storage_IntegrationTests.framework */,
  848. );
  849. name = Frameworks;
  850. sourceTree = "<group>";
  851. };
  852. 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {
  853. isa = PBXGroup;
  854. children = (
  855. DE4E711A1E953ABC00070092 /* FirebaseDev.podspec */,
  856. 8496034D8156555C5FCF8F14 /* README.md */,
  857. E2C2834C90DBAB56D568189F /* LICENSE */,
  858. );
  859. name = "Podspec Metadata";
  860. sourceTree = "<group>";
  861. };
  862. AFC8BAA01EC24B1600B8EEAE /* Shared */ = {
  863. isa = PBXGroup;
  864. children = (
  865. AFC8BAA21EC257D800B8EEAE /* FIRSampleAppUtilities.h */,
  866. AFC8BAA31EC257D800B8EEAE /* FIRSampleAppUtilities.m */,
  867. AFAF36F41EC28C25004BDEE5 /* Shared.xcassets */,
  868. );
  869. name = Shared;
  870. sourceTree = "<group>";
  871. };
  872. AFD562F71EB13CC700EA2233 /* App */ = {
  873. isa = PBXGroup;
  874. children = (
  875. AFD563001EB13DF200EA2233 /* Messaging-Info.plist */,
  876. AFD563141EB29B8C00EA2233 /* Messaging_Example.entitlements */,
  877. AFD562FF1EB13DF200EA2233 /* AppDelegate.swift */,
  878. AFD563161EBBEF7B00EA2233 /* Data+MessagingExtensions.swift */,
  879. AFC8BA9E1EBD51A700B8EEAE /* Environment.swift */,
  880. AFD563011EB13DF200EA2233 /* MessagingViewController.swift */,
  881. AFC8BA9C1EBD230E00B8EEAE /* NotificationsController.swift */,
  882. AFD563081EB1400900EA2233 /* LaunchScreen.storyboard */,
  883. AFD5630A1EB1400900EA2233 /* Main.storyboard */,
  884. AFD563131EB1466100EA2233 /* GoogleService-Info.plist */,
  885. );
  886. name = App;
  887. sourceTree = "<group>";
  888. };
  889. BDA0613720DCD29C1C3C3791 /* Pods */ = {
  890. isa = PBXGroup;
  891. children = (
  892. C45949C3AB12F54D27702387 /* Pods-Auth_Example.debug.xcconfig */,
  893. 2F002D4E7FA7F07A830CCFDA /* Pods-Auth_Example.release.xcconfig */,
  894. 18B5255FF5BEBF6F72C40F39 /* Pods-Auth_Tests.debug.xcconfig */,
  895. 60FCE4043D8FE42648646A7F /* Pods-Auth_Tests.release.xcconfig */,
  896. FF57915145DB00008E7C56A8 /* Pods-Core_Example.debug.xcconfig */,
  897. 8F77C04C2E764FBB0F6C05C6 /* Pods-Core_Example.release.xcconfig */,
  898. 8E32E359BE29C3100CF51FC4 /* Pods-Core_Tests.debug.xcconfig */,
  899. 0B1BDA534E1F49931795B5E6 /* Pods-Core_Tests.release.xcconfig */,
  900. 7727BC17692B98E2B7D0EA7A /* Pods-Database_Example.debug.xcconfig */,
  901. EEA5C6257533CD27D37A14FC /* Pods-Database_Example.release.xcconfig */,
  902. F0A9002767E1A9D63CEECFF6 /* Pods-Database_Tests.debug.xcconfig */,
  903. 4A8B7AE7C053949F6BBBDD3E /* Pods-Database_Tests.release.xcconfig */,
  904. 884B87C50C7C950BC18E9091 /* Pods-Messaging_Example.debug.xcconfig */,
  905. A6903B88963F6FD1857889E6 /* Pods-Messaging_Example.release.xcconfig */,
  906. 6E974DE29EBB9602E723757E /* Pods-Messaging_Tests.debug.xcconfig */,
  907. 6D2E4A9396D707C5DEF9B74B /* Pods-Messaging_Tests.release.xcconfig */,
  908. 6A0FCB2A37144B3C05E519F6 /* Pods-Storage_Example.debug.xcconfig */,
  909. 6BAD1CF3DDEDDD76EC87052D /* Pods-Storage_Example.release.xcconfig */,
  910. 3E84D28D93B8196D6A483F15 /* Pods-Storage_Tests.debug.xcconfig */,
  911. D58064F9C4DE303997B89D2E /* Pods-Storage_Tests.release.xcconfig */,
  912. EE077EBC5A738E61E06B5FA2 /* Pods-Database_IntegrationTests.debug.xcconfig */,
  913. BEEA177FFAAB9FA02F898C51 /* Pods-Database_IntegrationTests.release.xcconfig */,
  914. 3673564CCB64DE360C8CB97F /* Pods-Storage_IntegrationTests.debug.xcconfig */,
  915. CA86AD35456DA6130F7DE02C /* Pods-Storage_IntegrationTests.release.xcconfig */,
  916. );
  917. name = Pods;
  918. sourceTree = "<group>";
  919. };
  920. DE7B8D2A1E8EF202009EB6DF /* Database */ = {
  921. isa = PBXGroup;
  922. children = (
  923. DE7B8D2B1E8EF202009EB6DF /* App */,
  924. DE7B8D381E8EF202009EB6DF /* Tests */,
  925. );
  926. path = Database;
  927. sourceTree = "<group>";
  928. };
  929. DE7B8D2B1E8EF202009EB6DF /* App */ = {
  930. isa = PBXGroup;
  931. children = (
  932. 0672F2F11EBBA7D900818E87 /* GoogleService-Info.plist */,
  933. DE7B8DD21E8F1CA7009EB6DF /* Database-Info.plist */,
  934. DE7B8D311E8EF202009EB6DF /* FIRAppDelegate.h */,
  935. DE7B8D331E8EF202009EB6DF /* FIRViewController.h */,
  936. DE7B8D321E8EF202009EB6DF /* FIRAppDelegate.m */,
  937. DE7B8D341E8EF202009EB6DF /* FIRViewController.m */,
  938. DE7B8D371E8EF202009EB6DF /* main.m */,
  939. DE7B8D2C1E8EF202009EB6DF /* LaunchScreen.storyboard */,
  940. DE7B8D2E1E8EF202009EB6DF /* Main.storyboard */,
  941. );
  942. path = App;
  943. sourceTree = "<group>";
  944. };
  945. DE7B8D381E8EF202009EB6DF /* Tests */ = {
  946. isa = PBXGroup;
  947. children = (
  948. 063CB47C1EBA7AEF00038A59 /* FirebaseTests-Info.plist */,
  949. DE7B8D751E8EF202009EB6DF /* Helpers */,
  950. DE7B8D691E8EF202009EB6DF /* InfoPlist.strings */,
  951. 063CB43C1EBA752300038A59 /* Integration */,
  952. DE7B8D8E1E8EF203009EB6DF /* syncPointSpec.json */,
  953. 0697B11F1EC13D7800542174 /* third_party */,
  954. DE7B8D391E8EF202009EB6DF /* Unit */,
  955. );
  956. path = Tests;
  957. sourceTree = "<group>";
  958. };
  959. DE7B8D391E8EF202009EB6DF /* Unit */ = {
  960. isa = PBXGroup;
  961. children = (
  962. 063CB4471EBA7AE200038A59 /* FArraySortedDictionaryTest.m */,
  963. 063CB4481EBA7AE200038A59 /* FCompoundHashTest.m */,
  964. 063CB46E1EBA7AEF00038A59 /* FCompoundWriteTest.m */,
  965. 063CB47A1EBA7AEF00038A59 /* FIRDataSnapshotTests.h */,
  966. 063CB47B1EBA7AEF00038A59 /* FIRDataSnapshotTests.m */,
  967. 063CB4491EBA7AE200038A59 /* FIRMutableDataTests.h */,
  968. 063CB44A1EBA7AE200038A59 /* FIRMutableDataTests.m */,
  969. 063CB44B1EBA7AE200038A59 /* FLevelDBStorageEngineTests.m */,
  970. 063CB44C1EBA7AE200038A59 /* FNodeTests.m */,
  971. 063CB44D1EBA7AE200038A59 /* FPathTests.h */,
  972. 063CB44E1EBA7AE200038A59 /* FPathTests.m */,
  973. 063CB44F1EBA7AE200038A59 /* FPersistenceManagerTest.m */,
  974. 063CB4501EBA7AE200038A59 /* FPruneForestTest.m */,
  975. 063CB4511EBA7AE200038A59 /* FPruningTest.m */,
  976. 063CB4521EBA7AE200038A59 /* FQueryParamsTest.m */,
  977. 063CB4531EBA7AE200038A59 /* FRangeMergeTest.m */,
  978. 063CB4541EBA7AE200038A59 /* FRepoInfoTest.m */,
  979. 063CB4551EBA7AE200038A59 /* FSparseSnapshotTests.h */,
  980. 063CB4561EBA7AE200038A59 /* FSparseSnapshotTests.m */,
  981. 063CB4571EBA7AE200038A59 /* FSyncPointTests.h */,
  982. 063CB4581EBA7AE200038A59 /* FSyncPointTests.m */,
  983. 063CB45B1EBA7AE200038A59 /* FTrackedQueryManagerTest.m */,
  984. 063CB4901EBA7AEF00038A59 /* FTreeSortedDictionaryTests.m */,
  985. 063CB45C1EBA7AE200038A59 /* FUtilitiesTest.m */,
  986. );
  987. path = Unit;
  988. sourceTree = "<group>";
  989. };
  990. DE7B8D751E8EF202009EB6DF /* Helpers */ = {
  991. isa = PBXGroup;
  992. children = (
  993. DE7B8D781E8EF202009EB6DF /* FDevice.h */,
  994. DE7B8D791E8EF202009EB6DF /* FDevice.m */,
  995. DE7B8D7A1E8EF202009EB6DF /* FEventTester.h */,
  996. DE7B8D7B1E8EF202009EB6DF /* FEventTester.m */,
  997. 063CB47D1EBA7AEF00038A59 /* FIRFakeApp.h */,
  998. 063CB47E1EBA7AEF00038A59 /* FIRFakeApp.m */,
  999. DE7B8D7C1E8EF202009EB6DF /* FIRTestAuthTokenProvider.h */,
  1000. DE7B8D7D1E8EF202009EB6DF /* FIRTestAuthTokenProvider.m */,
  1001. DE7B8D7E1E8EF202009EB6DF /* FMockStorageEngine.h */,
  1002. DE7B8D7F1E8EF202009EB6DF /* FMockStorageEngine.m */,
  1003. DE7B8D801E8EF202009EB6DF /* FTestAuthTokenGenerator.h */,
  1004. DE7B8D811E8EF202009EB6DF /* FTestAuthTokenGenerator.m */,
  1005. 063CB4591EBA7AE200038A59 /* FTestBase.h */,
  1006. 063CB45A1EBA7AE200038A59 /* FTestBase.m */,
  1007. DE7B8D821E8EF202009EB6DF /* FTestCachePolicy.h */,
  1008. DE7B8D831E8EF202009EB6DF /* FTestCachePolicy.m */,
  1009. DE7B8D841E8EF202009EB6DF /* FTestClock.h */,
  1010. DE7B8D851E8EF202009EB6DF /* FTestClock.m */,
  1011. 063CB48D1EBA7AEF00038A59 /* FTestContants.h */,
  1012. DE7B8D861E8EF202009EB6DF /* FTestExpectations.h */,
  1013. DE7B8D871E8EF202009EB6DF /* FTestExpectations.m */,
  1014. DE7B8D881E8EF202009EB6DF /* FTestHelpers.h */,
  1015. DE7B8D891E8EF202009EB6DF /* FTestHelpers.m */,
  1016. DE7B8D8A1E8EF203009EB6DF /* FTupleEventTypeString.h */,
  1017. DE7B8D8B1E8EF203009EB6DF /* FTupleEventTypeString.m */,
  1018. DE7B8D8C1E8EF203009EB6DF /* SenTest+FWaiter.h */,
  1019. DE7B8D8D1E8EF203009EB6DF /* SenTest+FWaiter.m */,
  1020. );
  1021. path = Helpers;
  1022. sourceTree = "<group>";
  1023. };
  1024. DE9314EB1E86C6FF0083EDBF /* Auth */ = {
  1025. isa = PBXGroup;
  1026. children = (
  1027. DE9314EC1E86C6FF0083EDBF /* App */,
  1028. DE9314F91E86C6FF0083EDBF /* Tests */,
  1029. );
  1030. path = Auth;
  1031. sourceTree = "<group>";
  1032. };
  1033. DE9314EC1E86C6FF0083EDBF /* App */ = {
  1034. isa = PBXGroup;
  1035. children = (
  1036. DE9315801E86C7F70083EDBF /* Auth-Info.plist */,
  1037. DE9314ED1E86C6FF0083EDBF /* LaunchScreen.storyboard */,
  1038. DE9314EF1E86C6FF0083EDBF /* Main.storyboard */,
  1039. DE9314F21E86C6FF0083EDBF /* FIRAppDelegate.h */,
  1040. DE9314F31E86C6FF0083EDBF /* FIRAppDelegate.m */,
  1041. DE9314F41E86C6FF0083EDBF /* FIRViewController.h */,
  1042. DE9314F51E86C6FF0083EDBF /* FIRViewController.m */,
  1043. DE9314F61E86C6FF0083EDBF /* GoogleService-Info.plist */,
  1044. DE9314F81E86C6FF0083EDBF /* main.m */,
  1045. );
  1046. path = App;
  1047. sourceTree = "<group>";
  1048. };
  1049. DE9314F91E86C6FF0083EDBF /* Tests */ = {
  1050. isa = PBXGroup;
  1051. children = (
  1052. DE750DB51EB3DD4000A75E47 /* FIRAuthAPNSTokenManagerTests.m */,
  1053. DE750DB61EB3DD4000A75E47 /* FIRAuthAPNSTokenTests.m */,
  1054. DE750DB71EB3DD4000A75E47 /* FIRAuthAppCredentialManagerTests.m */,
  1055. DE750DB81EB3DD4000A75E47 /* FIRAuthNotificationManagerTests.m */,
  1056. DE0E5BB91EA7D92E00FAA825 /* FIRVerifyClientRequestTest.m */,
  1057. DE0E5BBA1EA7D92E00FAA825 /* FIRVerifyClientResponseTests.m */,
  1058. DE0E5BB51EA7D91C00FAA825 /* FIRAuthAppCredentialTests.m */,
  1059. DE0E5BB61EA7D91C00FAA825 /* FIRAuthAppDelegateProxyTests.m */,
  1060. DECE03991E9ECFF500164CA4 /* FIRPhoneAuthProviderTests.m */,
  1061. DE9314FB1E86C6FF0083EDBF /* FIRApp+FIRAuthUnitTests.h */,
  1062. DE9315091E86C6FF0083EDBF /* FIRFakeBackendRPCIssuer.h */,
  1063. DE9315231E86C6FF0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.h */,
  1064. DE9314FA1E86C6FF0083EDBF /* FIRAdditionalUserInfoTests.m */,
  1065. DE9314FC1E86C6FF0083EDBF /* FIRApp+FIRAuthUnitTests.m */,
  1066. DE9314FD1E86C6FF0083EDBF /* FIRAuthBackendCreateAuthURITests.m */,
  1067. DE9314FE1E86C6FF0083EDBF /* FIRAuthBackendRPCImplementationTests.m */,
  1068. DE9314FF1E86C6FF0083EDBF /* FIRAuthDispatcherTests.m */,
  1069. DE9315001E86C6FF0083EDBF /* FIRAuthGlobalWorkQueueTests.m */,
  1070. DE9315011E86C6FF0083EDBF /* FIRAuthKeychainTests.m */,
  1071. DE9315021E86C6FF0083EDBF /* FIRAuthSerialTaskQueueTests.m */,
  1072. DE9315031E86C6FF0083EDBF /* FIRAuthTests.m */,
  1073. DE9315041E86C6FF0083EDBF /* FIRAuthUserDefaultsStorageTests.m */,
  1074. DE9315051E86C6FF0083EDBF /* FIRCreateAuthURIRequestTests.m */,
  1075. DE9315061E86C6FF0083EDBF /* FIRCreateAuthURIResponseTests.m */,
  1076. DE9315071E86C6FF0083EDBF /* FIRDeleteAccountRequestTests.m */,
  1077. DE9315081E86C6FF0083EDBF /* FIRDeleteAccountResponseTests.m */,
  1078. DE93150A1E86C6FF0083EDBF /* FIRFakeBackendRPCIssuer.m */,
  1079. DE93150B1E86C6FF0083EDBF /* FIRGetAccountInfoRequestTests.m */,
  1080. DE93150C1E86C6FF0083EDBF /* FIRGetAccountInfoResponseTests.m */,
  1081. DE93150D1E86C6FF0083EDBF /* FIRGetOOBConfirmationCodeRequestTests.m */,
  1082. DE93150E1E86C6FF0083EDBF /* FIRGetOOBConfirmationCodeResponseTests.m */,
  1083. DE93150F1E86C6FF0083EDBF /* FIRGitHubAuthProviderTests.m */,
  1084. DE9315111E86C6FF0083EDBF /* FIRResetPasswordRequestTests.m */,
  1085. DE9315121E86C6FF0083EDBF /* FIRResetPasswordResponseTests.m */,
  1086. DE9315131E86C6FF0083EDBF /* FIRSendVerificationCodeRequestTests.m */,
  1087. DE9315141E86C6FF0083EDBF /* FIRSendVerificationCodeResponseTests.m */,
  1088. DE9315151E86C6FF0083EDBF /* FIRSetAccountInfoRequestTests.m */,
  1089. DE9315161E86C6FF0083EDBF /* FIRSetAccountInfoResponseTests.m */,
  1090. DE9315171E86C6FF0083EDBF /* FIRSignUpNewUserRequestTests.m */,
  1091. DE9315181E86C6FF0083EDBF /* FIRSignUpNewUserResponseTests.m */,
  1092. DE9315191E86C6FF0083EDBF /* FIRTwitterAuthProviderTests.m */,
  1093. DE93151A1E86C6FF0083EDBF /* FIRUserTests.m */,
  1094. DE93151B1E86C6FF0083EDBF /* FIRVerifyAssertionRequestTests.m */,
  1095. DE93151C1E86C6FF0083EDBF /* FIRVerifyAssertionResponseTests.m */,
  1096. DE93151D1E86C6FF0083EDBF /* FIRVerifyCustomTokenRequestTests.m */,
  1097. DE93151E1E86C6FF0083EDBF /* FIRVerifyCustomTokenResponseTests.m */,
  1098. DE93151F1E86C6FF0083EDBF /* FIRVerifyPasswordRequestTest.m */,
  1099. DE9315201E86C6FF0083EDBF /* FIRVerifyPasswordResponseTests.m */,
  1100. DE9315211E86C6FF0083EDBF /* FIRVerifyPhoneNumberRequestTests.m */,
  1101. DE9315221E86C6FF0083EDBF /* FIRVerifyPhoneNumberResponseTests.m */,
  1102. DE9315241E86C6FF0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.m */,
  1103. DE9315251E86C6FF0083EDBF /* Tests-Info.plist */,
  1104. );
  1105. path = Tests;
  1106. sourceTree = "<group>";
  1107. };
  1108. DE9315B41E8738B70083EDBF /* Messaging */ = {
  1109. isa = PBXGroup;
  1110. children = (
  1111. AFC8BAA11EC257D700B8EEAE /* Messaging_Example-Bridging-Header.h */,
  1112. AFD562F71EB13CC700EA2233 /* App */,
  1113. DE9315C21E8738B70083EDBF /* Tests */,
  1114. );
  1115. path = Messaging;
  1116. sourceTree = "<group>";
  1117. };
  1118. DE9315C21E8738B70083EDBF /* Tests */ = {
  1119. isa = PBXGroup;
  1120. children = (
  1121. DE9315C81E8738B70083EDBF /* FIRMessagingFakeConnection.h */,
  1122. DE9315CA1E8738B70083EDBF /* FIRMessagingFakeSocket.h */,
  1123. DE9315D61E8738B70083EDBF /* FIRMessagingTestNotificationUtilities.h */,
  1124. DE9315C31E8738B70083EDBF /* FIRMessagingClientTest.m */,
  1125. DE9315C41E8738B70083EDBF /* FIRMessagingCodedInputStreamTest.m */,
  1126. DE9315C51E8738B70083EDBF /* FIRMessagingConnectionTest.m */,
  1127. DE9315C61E8738B70083EDBF /* FIRMessagingContextManagerServiceTest.m */,
  1128. DE9315C71E8738B70083EDBF /* FIRMessagingDataMessageManagerTest.m */,
  1129. DE9315C91E8738B70083EDBF /* FIRMessagingFakeConnection.m */,
  1130. DE9315CB1E8738B70083EDBF /* FIRMessagingFakeSocket.m */,
  1131. DE9315CC1E8738B70083EDBF /* FIRMessagingLinkHandlingTest.m */,
  1132. DE9315CD1E8738B70083EDBF /* FIRMessagingPendingTopicsListTest.m */,
  1133. DE9315CE1E8738B70083EDBF /* FIRMessagingPubSubTest.m */,
  1134. DE9315CF1E8738B70083EDBF /* FIRMessagingRegistrarTest.m */,
  1135. DE9315D01E8738B70083EDBF /* FIRMessagingRemoteNotificationsProxyTest.m */,
  1136. DE9315D11E8738B70083EDBF /* FIRMessagingRmqManagerTest.m */,
  1137. DE9315D21E8738B70083EDBF /* FIRMessagingSecureSocketTest.m */,
  1138. DE9315D31E8738B70083EDBF /* FIRMessagingServiceTest.m */,
  1139. DE9315D41E8738B70083EDBF /* FIRMessagingSyncMessageManagerTest.m */,
  1140. DE9315D51E8738B70083EDBF /* FIRMessagingTest.m */,
  1141. DE9315D71E8738B70083EDBF /* FIRMessagingTestNotificationUtilities.m */,
  1142. DE9315D81E8738B70083EDBF /* Info.plist */,
  1143. );
  1144. path = Tests;
  1145. sourceTree = "<group>";
  1146. };
  1147. DEB139B31E734D9D00AC236D /* Storage */ = {
  1148. isa = PBXGroup;
  1149. children = (
  1150. DEB61EB81E7C5DBB00C04B96 /* App */,
  1151. DEB139C01E734D9D00AC236D /* Tests */,
  1152. );
  1153. path = Storage;
  1154. sourceTree = "<group>";
  1155. };
  1156. DEB139C01E734D9D00AC236D /* Tests */ = {
  1157. isa = PBXGroup;
  1158. children = (
  1159. 06121EC91EC39A020008D70E /* Integration */,
  1160. 06121EC81EC399E50008D70E /* Unit */,
  1161. DEB139CC1E734D9D00AC236D /* Tests-Info.plist */,
  1162. );
  1163. path = Tests;
  1164. sourceTree = "<group>";
  1165. };
  1166. DEB61EB81E7C5DBB00C04B96 /* App */ = {
  1167. isa = PBXGroup;
  1168. children = (
  1169. 069428801EC3B35A00F7BC69 /* 1mb.dat */,
  1170. DEB61EB91E7C5DBB00C04B96 /* LaunchScreen.storyboard */,
  1171. DEB61EBB1E7C5DBB00C04B96 /* Main.storyboard */,
  1172. DEB61EBD1E7C5DBB00C04B96 /* FIRAppDelegate.h */,
  1173. DEB61EBE1E7C5DBB00C04B96 /* FIRAppDelegate.m */,
  1174. DEB61EBF1E7C5DBB00C04B96 /* FIRViewController.h */,
  1175. DEB61EC01E7C5DBB00C04B96 /* FIRViewController.m */,
  1176. DEB61EC11E7C5DBB00C04B96 /* GoogleService-Info.plist */,
  1177. DEB61EC31E7C5DBB00C04B96 /* main.m */,
  1178. DEB61EC41E7C5DBB00C04B96 /* Storage-Info.plist */,
  1179. );
  1180. path = App;
  1181. sourceTree = "<group>";
  1182. };
  1183. DEE14D661E844677006FA992 /* Core */ = {
  1184. isa = PBXGroup;
  1185. children = (
  1186. DEE14D671E844677006FA992 /* App */,
  1187. DEE14D741E844677006FA992 /* Tests */,
  1188. );
  1189. path = Core;
  1190. sourceTree = "<group>";
  1191. };
  1192. DEE14D671E844677006FA992 /* App */ = {
  1193. isa = PBXGroup;
  1194. children = (
  1195. DEE14D681E844677006FA992 /* LaunchScreen.storyboard */,
  1196. DEE14D6A1E844677006FA992 /* Main.storyboard */,
  1197. DEE14D6C1E844677006FA992 /* Core-Info.plist */,
  1198. DEE14D6D1E844677006FA992 /* FIRAppDelegate.h */,
  1199. DEE14D6E1E844677006FA992 /* FIRAppDelegate.m */,
  1200. DEE14D6F1E844677006FA992 /* FIRViewController.h */,
  1201. DEE14D701E844677006FA992 /* FIRViewController.m */,
  1202. DEE14D711E844677006FA992 /* GoogleService-Info.plist */,
  1203. DEE14D731E844677006FA992 /* main.m */,
  1204. );
  1205. path = App;
  1206. sourceTree = "<group>";
  1207. };
  1208. DEE14D741E844677006FA992 /* Tests */ = {
  1209. isa = PBXGroup;
  1210. children = (
  1211. DEE14D7B1E844677006FA992 /* FIRTestCase.h */,
  1212. DEE14D751E844677006FA992 /* FIRAppAssociationRegistrationUnitTests.m */,
  1213. DEE14D761E844677006FA992 /* FIRAppTest.m */,
  1214. DEE14D771E844677006FA992 /* FIRBundleUtilTest.m */,
  1215. DEE14D781E844677006FA992 /* FIRConfigurationTest.m */,
  1216. DEE14D791E844677006FA992 /* FIRLoggerTest.m */,
  1217. DEE14D7A1E844677006FA992 /* FIROptionsTest.m */,
  1218. DEE14D7C1E844677006FA992 /* FIRTestCase.m */,
  1219. DEE14D7D1E844677006FA992 /* Tests-Info.plist */,
  1220. );
  1221. path = Tests;
  1222. sourceTree = "<group>";
  1223. };
  1224. /* End PBXGroup section */
  1225. /* Begin PBXNativeTarget section */
  1226. 06121EBB1EC399C50008D70E /* Storage_IntegrationTests */ = {
  1227. isa = PBXNativeTarget;
  1228. buildConfigurationList = 06121EC51EC399C50008D70E /* Build configuration list for PBXNativeTarget "Storage_IntegrationTests" */;
  1229. buildPhases = (
  1230. BCC67418B8EBA4E90488CD55 /* [CP] Check Pods Manifest.lock */,
  1231. 06121EB81EC399C50008D70E /* Sources */,
  1232. 06121EB91EC399C50008D70E /* Frameworks */,
  1233. 06121EBA1EC399C50008D70E /* Resources */,
  1234. 0840546A7D90530C21375416 /* [CP] Embed Pods Frameworks */,
  1235. B84CF6076850A6EA9E66592F /* [CP] Copy Pods Resources */,
  1236. );
  1237. buildRules = (
  1238. );
  1239. dependencies = (
  1240. 06121EC71EC399D40008D70E /* PBXTargetDependency */,
  1241. );
  1242. name = Storage_IntegrationTests;
  1243. productName = Storage_IntegrationTests;
  1244. productReference = 06121EBC1EC399C50008D70E /* Storage_IntegrationTests.xctest */;
  1245. productType = "com.apple.product-type.bundle.unit-test";
  1246. };
  1247. 0624F3E01EC0ECFA00E5940D /* Database_IntegrationTests */ = {
  1248. isa = PBXNativeTarget;
  1249. buildConfigurationList = 0624F3E81EC0ECFA00E5940D /* Build configuration list for PBXNativeTarget "Database_IntegrationTests" */;
  1250. buildPhases = (
  1251. BF9A61F6BBE9655CED5E897D /* [CP] Check Pods Manifest.lock */,
  1252. 0624F3DD1EC0ECFA00E5940D /* Sources */,
  1253. 0624F3DE1EC0ECFA00E5940D /* Frameworks */,
  1254. 0624F3DF1EC0ECFA00E5940D /* Resources */,
  1255. 744AF9F9B2DB5C511EB9969A /* [CP] Embed Pods Frameworks */,
  1256. 597B88E0E6B632C48707E8EB /* [CP] Copy Pods Resources */,
  1257. );
  1258. buildRules = (
  1259. );
  1260. dependencies = (
  1261. 0624F3E71EC0ECFA00E5940D /* PBXTargetDependency */,
  1262. );
  1263. name = Database_IntegrationTests;
  1264. productName = Database_IntegratioNtests;
  1265. productReference = 0624F3E11EC0ECFA00E5940D /* Database_IntegrationTests.xctest */;
  1266. productType = "com.apple.product-type.bundle.unit-test";
  1267. };
  1268. AFD562E41EB13C6D00EA2233 /* Messaging_Example */ = {
  1269. isa = PBXNativeTarget;
  1270. buildConfigurationList = AFD562F41EB13C6D00EA2233 /* Build configuration list for PBXNativeTarget "Messaging_Example" */;
  1271. buildPhases = (
  1272. 26F9869011740630E2119D0D /* [CP] Check Pods Manifest.lock */,
  1273. AFD562E11EB13C6D00EA2233 /* Sources */,
  1274. AFD562E21EB13C6D00EA2233 /* Frameworks */,
  1275. AFD562E31EB13C6D00EA2233 /* Resources */,
  1276. ADFC988CE33AA0C8F0C59177 /* [CP] Embed Pods Frameworks */,
  1277. A39D405E17BE3A6646B8E38E /* [CP] Copy Pods Resources */,
  1278. );
  1279. buildRules = (
  1280. );
  1281. dependencies = (
  1282. );
  1283. name = Messaging_Example;
  1284. productName = Messaging_Example;
  1285. productReference = AFD562E51EB13C6D00EA2233 /* Messaging_Example.app */;
  1286. productType = "com.apple.product-type.application";
  1287. };
  1288. DE7B8D041E8EF077009EB6DF /* Database_Example */ = {
  1289. isa = PBXNativeTarget;
  1290. buildConfigurationList = DE7B8D281E8EF078009EB6DF /* Build configuration list for PBXNativeTarget "Database_Example" */;
  1291. buildPhases = (
  1292. 4363D4BBFAAC4D505B9B18EC /* [CP] Check Pods Manifest.lock */,
  1293. DE7B8D011E8EF077009EB6DF /* Sources */,
  1294. DE7B8D021E8EF077009EB6DF /* Frameworks */,
  1295. DE7B8D031E8EF077009EB6DF /* Resources */,
  1296. E9A4ADE4EE7390DC85A9FC17 /* [CP] Embed Pods Frameworks */,
  1297. 5AE0F6A81F9A499BD752D5E9 /* [CP] Copy Pods Resources */,
  1298. );
  1299. buildRules = (
  1300. );
  1301. dependencies = (
  1302. );
  1303. name = Database_Example;
  1304. productName = Database_Example;
  1305. productReference = DE7B8D051E8EF077009EB6DF /* Database_Example.app */;
  1306. productType = "com.apple.product-type.application";
  1307. };
  1308. DE7B8D1C1E8EF078009EB6DF /* Database_Tests */ = {
  1309. isa = PBXNativeTarget;
  1310. buildConfigurationList = DE7B8D291E8EF078009EB6DF /* Build configuration list for PBXNativeTarget "Database_Tests" */;
  1311. buildPhases = (
  1312. EE21F035A2A97C35635C2F3C /* [CP] Check Pods Manifest.lock */,
  1313. DE7B8D191E8EF078009EB6DF /* Sources */,
  1314. DE7B8D1A1E8EF078009EB6DF /* Frameworks */,
  1315. DE7B8D1B1E8EF078009EB6DF /* Resources */,
  1316. 5EFAE1A18DA8F6BFC0C191E8 /* [CP] Embed Pods Frameworks */,
  1317. 634E392CCD4D5E88B96D3EF1 /* [CP] Copy Pods Resources */,
  1318. );
  1319. buildRules = (
  1320. );
  1321. dependencies = (
  1322. DE7B8D1F1E8EF078009EB6DF /* PBXTargetDependency */,
  1323. );
  1324. name = Database_Tests;
  1325. productName = Database_ExampleTests;
  1326. productReference = DE7B8D1D1E8EF078009EB6DF /* Database_Tests.xctest */;
  1327. productType = "com.apple.product-type.bundle.unit-test";
  1328. };
  1329. DE9314C51E86C6BD0083EDBF /* Auth_Example */ = {
  1330. isa = PBXNativeTarget;
  1331. buildConfigurationList = DE9314E91E86C6BE0083EDBF /* Build configuration list for PBXNativeTarget "Auth_Example" */;
  1332. buildPhases = (
  1333. 7CC2EB21DFB0E48B1B8171B2 /* [CP] Check Pods Manifest.lock */,
  1334. DE9314C21E86C6BD0083EDBF /* Sources */,
  1335. DE9314C31E86C6BD0083EDBF /* Frameworks */,
  1336. DE9314C41E86C6BD0083EDBF /* Resources */,
  1337. B293C142610E914FBE2CA4C9 /* [CP] Embed Pods Frameworks */,
  1338. A2DF8D8C8D3B6639CBD9CB5B /* [CP] Copy Pods Resources */,
  1339. );
  1340. buildRules = (
  1341. );
  1342. dependencies = (
  1343. );
  1344. name = Auth_Example;
  1345. productName = Auth_Example;
  1346. productReference = DE9314C61E86C6BD0083EDBF /* Auth_Example.app */;
  1347. productType = "com.apple.product-type.application";
  1348. };
  1349. DE9314DD1E86C6BE0083EDBF /* Auth_Tests */ = {
  1350. isa = PBXNativeTarget;
  1351. buildConfigurationList = DE9314EA1E86C6BE0083EDBF /* Build configuration list for PBXNativeTarget "Auth_Tests" */;
  1352. buildPhases = (
  1353. 016A3201E8E0C5ABE835F645 /* [CP] Check Pods Manifest.lock */,
  1354. DE9314DA1E86C6BE0083EDBF /* Sources */,
  1355. DE9314DB1E86C6BE0083EDBF /* Frameworks */,
  1356. DE9314DC1E86C6BE0083EDBF /* Resources */,
  1357. 54175166C251F5F698B6B1C3 /* [CP] Embed Pods Frameworks */,
  1358. 9D8053D74F91F866DB0D0199 /* [CP] Copy Pods Resources */,
  1359. );
  1360. buildRules = (
  1361. );
  1362. dependencies = (
  1363. DE9314E01E86C6BE0083EDBF /* PBXTargetDependency */,
  1364. );
  1365. name = Auth_Tests;
  1366. productName = Auth_ExampleTests;
  1367. productReference = DE9314DE1E86C6BE0083EDBF /* Auth_Tests.xctest */;
  1368. productType = "com.apple.product-type.bundle.unit-test";
  1369. };
  1370. DE9315A61E8738460083EDBF /* Messaging_Tests */ = {
  1371. isa = PBXNativeTarget;
  1372. buildConfigurationList = DE9315B31E8738460083EDBF /* Build configuration list for PBXNativeTarget "Messaging_Tests" */;
  1373. buildPhases = (
  1374. 66C488F8D840BC12E26BEE9C /* [CP] Check Pods Manifest.lock */,
  1375. DE9315A31E8738460083EDBF /* Sources */,
  1376. DE9315A41E8738460083EDBF /* Frameworks */,
  1377. DE9315A51E8738460083EDBF /* Resources */,
  1378. 3D9876DCE9EFE13441346E50 /* [CP] Embed Pods Frameworks */,
  1379. AA723E4B93CCA8A3A4C24F4E /* [CP] Copy Pods Resources */,
  1380. );
  1381. buildRules = (
  1382. );
  1383. dependencies = (
  1384. AFD563121EB140E100EA2233 /* PBXTargetDependency */,
  1385. );
  1386. name = Messaging_Tests;
  1387. productName = Messaging_ExampleTests;
  1388. productReference = DE9315A71E8738460083EDBF /* Messaging_Tests.xctest */;
  1389. productType = "com.apple.product-type.bundle.unit-test";
  1390. };
  1391. DEB139E01E73506A00AC236D /* Storage_Example */ = {
  1392. isa = PBXNativeTarget;
  1393. buildConfigurationList = DEB13A051E73506A00AC236D /* Build configuration list for PBXNativeTarget "Storage_Example" */;
  1394. buildPhases = (
  1395. 7E9B7B5115CCC4F0FCBED014 /* [CP] Check Pods Manifest.lock */,
  1396. DEB139E21E73506A00AC236D /* Sources */,
  1397. DEB139F31E73506A00AC236D /* Frameworks */,
  1398. DEB139F91E73506A00AC236D /* Resources */,
  1399. E8657FA5227C3B5EB7B83B40 /* [CP] Embed Pods Frameworks */,
  1400. 5BE3F4C8BA697C65D55C055E /* [CP] Copy Pods Resources */,
  1401. );
  1402. buildRules = (
  1403. );
  1404. dependencies = (
  1405. );
  1406. name = Storage_Example;
  1407. productName = Firebase;
  1408. productReference = DEB13A081E73506A00AC236D /* Storage_Example.app */;
  1409. productType = "com.apple.product-type.application";
  1410. };
  1411. DEB13A0A1E73507E00AC236D /* Storage_Tests */ = {
  1412. isa = PBXNativeTarget;
  1413. buildConfigurationList = DEB13A201E73507E00AC236D /* Build configuration list for PBXNativeTarget "Storage_Tests" */;
  1414. buildPhases = (
  1415. AD42F17297AF3C18062D4C51 /* [CP] Check Pods Manifest.lock */,
  1416. DEB13A0E1E73507E00AC236D /* Sources */,
  1417. DEB13A161E73507E00AC236D /* Frameworks */,
  1418. DEB13A1D1E73507E00AC236D /* Resources */,
  1419. 57EF5C8DAF88A5F43BE0C6FE /* [CP] Embed Pods Frameworks */,
  1420. 12F6D0DD1D452316A3123EED /* [CP] Copy Pods Resources */,
  1421. );
  1422. buildRules = (
  1423. );
  1424. dependencies = (
  1425. DEB13A261E73512500AC236D /* PBXTargetDependency */,
  1426. );
  1427. name = Storage_Tests;
  1428. productName = FirebaseTests;
  1429. productReference = DEB13A231E73507E00AC236D /* Storage_Tests.xctest */;
  1430. productType = "com.apple.product-type.bundle.unit-test";
  1431. };
  1432. DEE14D401E84464D006FA992 /* Core_Example */ = {
  1433. isa = PBXNativeTarget;
  1434. buildConfigurationList = DEE14D641E84464D006FA992 /* Build configuration list for PBXNativeTarget "Core_Example" */;
  1435. buildPhases = (
  1436. AB5B6984AF16CF03E74EA522 /* [CP] Check Pods Manifest.lock */,
  1437. DEE14D3D1E84464D006FA992 /* Sources */,
  1438. DEE14D3E1E84464D006FA992 /* Frameworks */,
  1439. DEE14D3F1E84464D006FA992 /* Resources */,
  1440. DEFCD9C6026936498AE2778C /* [CP] Embed Pods Frameworks */,
  1441. 883CE42B54A7BB78295FBCDA /* [CP] Copy Pods Resources */,
  1442. );
  1443. buildRules = (
  1444. );
  1445. dependencies = (
  1446. );
  1447. name = Core_Example;
  1448. productName = Core_Example;
  1449. productReference = DEE14D411E84464D006FA992 /* Core_Example.app */;
  1450. productType = "com.apple.product-type.application";
  1451. };
  1452. DEE14D581E84464D006FA992 /* Core_Tests */ = {
  1453. isa = PBXNativeTarget;
  1454. buildConfigurationList = DEE14D651E84464D006FA992 /* Build configuration list for PBXNativeTarget "Core_Tests" */;
  1455. buildPhases = (
  1456. C3AFD8761D910A99E506F606 /* [CP] Check Pods Manifest.lock */,
  1457. DEE14D551E84464D006FA992 /* Sources */,
  1458. DEE14D561E84464D006FA992 /* Frameworks */,
  1459. DEE14D571E84464D006FA992 /* Resources */,
  1460. 316D851DAC53422509F9B7B4 /* [CP] Embed Pods Frameworks */,
  1461. 9D6CD2CDCDD281E43FDD3492 /* [CP] Copy Pods Resources */,
  1462. );
  1463. buildRules = (
  1464. );
  1465. dependencies = (
  1466. DEE14D5B1E84464D006FA992 /* PBXTargetDependency */,
  1467. );
  1468. name = Core_Tests;
  1469. productName = Core_ExampleTests;
  1470. productReference = DEE14D591E84464D006FA992 /* Core_Tests.xctest */;
  1471. productType = "com.apple.product-type.bundle.unit-test";
  1472. };
  1473. /* End PBXNativeTarget section */
  1474. /* Begin PBXProject section */
  1475. 6003F582195388D10070C39A /* Project object */ = {
  1476. isa = PBXProject;
  1477. attributes = {
  1478. CLASSPREFIX = FIR;
  1479. LastSwiftUpdateCheck = 0830;
  1480. LastUpgradeCheck = 0820;
  1481. ORGANIZATIONNAME = "Paul Beusterien";
  1482. TargetAttributes = {
  1483. 06121EBB1EC399C50008D70E = {
  1484. CreatedOnToolsVersion = 8.2.1;
  1485. ProvisioningStyle = Automatic;
  1486. TestTargetID = DEB139E01E73506A00AC236D;
  1487. };
  1488. 0624F3E01EC0ECFA00E5940D = {
  1489. CreatedOnToolsVersion = 8.2.1;
  1490. ProvisioningStyle = Automatic;
  1491. TestTargetID = DE7B8D041E8EF077009EB6DF;
  1492. };
  1493. AFD562E41EB13C6D00EA2233 = {
  1494. CreatedOnToolsVersion = 8.3.2;
  1495. LastSwiftMigration = 0830;
  1496. ProvisioningStyle = Automatic;
  1497. SystemCapabilities = {
  1498. com.apple.BackgroundModes = {
  1499. enabled = 1;
  1500. };
  1501. com.apple.Push = {
  1502. enabled = 1;
  1503. };
  1504. };
  1505. };
  1506. DE3373891E73773400881891 = {
  1507. CreatedOnToolsVersion = 8.2.1;
  1508. DevelopmentTeam = EQHXZ8M8AV;
  1509. ProvisioningStyle = Automatic;
  1510. };
  1511. DE7B8D041E8EF077009EB6DF = {
  1512. CreatedOnToolsVersion = 8.3;
  1513. ProvisioningStyle = Automatic;
  1514. };
  1515. DE7B8D1C1E8EF078009EB6DF = {
  1516. CreatedOnToolsVersion = 8.3;
  1517. ProvisioningStyle = Automatic;
  1518. TestTargetID = DE7B8D041E8EF077009EB6DF;
  1519. };
  1520. DE9314C51E86C6BD0083EDBF = {
  1521. CreatedOnToolsVersion = 8.2.1;
  1522. LastSwiftMigration = 0830;
  1523. ProvisioningStyle = Automatic;
  1524. };
  1525. DE9314DD1E86C6BE0083EDBF = {
  1526. CreatedOnToolsVersion = 8.2.1;
  1527. ProvisioningStyle = Automatic;
  1528. TestTargetID = DE9314C51E86C6BD0083EDBF;
  1529. };
  1530. DE9315A61E8738460083EDBF = {
  1531. CreatedOnToolsVersion = 8.2.1;
  1532. ProvisioningStyle = Automatic;
  1533. TestTargetID = AFD562E41EB13C6D00EA2233;
  1534. };
  1535. DEB13A0A1E73507E00AC236D = {
  1536. TestTargetID = DEB139E01E73506A00AC236D;
  1537. };
  1538. DEE14D401E84464D006FA992 = {
  1539. CreatedOnToolsVersion = 8.2.1;
  1540. ProvisioningStyle = Automatic;
  1541. };
  1542. DEE14D581E84464D006FA992 = {
  1543. CreatedOnToolsVersion = 8.2.1;
  1544. ProvisioningStyle = Automatic;
  1545. TestTargetID = DEE14D401E84464D006FA992;
  1546. };
  1547. };
  1548. };
  1549. buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "Firebase" */;
  1550. compatibilityVersion = "Xcode 3.2";
  1551. developmentRegion = English;
  1552. hasScannedForEncodings = 0;
  1553. knownRegions = (
  1554. en,
  1555. Base,
  1556. );
  1557. mainGroup = 6003F581195388D10070C39A;
  1558. productRefGroup = 6003F58B195388D20070C39A /* Products */;
  1559. projectDirPath = "";
  1560. projectRoot = "";
  1561. targets = (
  1562. DE9314C51E86C6BD0083EDBF /* Auth_Example */,
  1563. DE9314DD1E86C6BE0083EDBF /* Auth_Tests */,
  1564. DEE14D401E84464D006FA992 /* Core_Example */,
  1565. DEE14D581E84464D006FA992 /* Core_Tests */,
  1566. DE7B8D041E8EF077009EB6DF /* Database_Example */,
  1567. DE7B8D1C1E8EF078009EB6DF /* Database_Tests */,
  1568. 0624F3E01EC0ECFA00E5940D /* Database_IntegrationTests */,
  1569. AFD562E41EB13C6D00EA2233 /* Messaging_Example */,
  1570. DE9315A61E8738460083EDBF /* Messaging_Tests */,
  1571. DEB139E01E73506A00AC236D /* Storage_Example */,
  1572. DEB13A0A1E73507E00AC236D /* Storage_Tests */,
  1573. 06121EBB1EC399C50008D70E /* Storage_IntegrationTests */,
  1574. DE3373891E73773400881891 /* AllUnitTests */,
  1575. );
  1576. };
  1577. /* End PBXProject section */
  1578. /* Begin PBXResourcesBuildPhase section */
  1579. 06121EBA1EC399C50008D70E /* Resources */ = {
  1580. isa = PBXResourcesBuildPhase;
  1581. buildActionMask = 2147483647;
  1582. files = (
  1583. );
  1584. runOnlyForDeploymentPostprocessing = 0;
  1585. };
  1586. 0624F3DF1EC0ECFA00E5940D /* Resources */ = {
  1587. isa = PBXResourcesBuildPhase;
  1588. buildActionMask = 2147483647;
  1589. files = (
  1590. );
  1591. runOnlyForDeploymentPostprocessing = 0;
  1592. };
  1593. AFD562E31EB13C6D00EA2233 /* Resources */ = {
  1594. isa = PBXResourcesBuildPhase;
  1595. buildActionMask = 2147483647;
  1596. files = (
  1597. AFD5630D1EB1400900EA2233 /* Main.storyboard in Resources */,
  1598. AFAF36F81EC28C25004BDEE5 /* Shared.xcassets in Resources */,
  1599. AFD563151EB29EDE00EA2233 /* GoogleService-Info.plist in Resources */,
  1600. AFD5630C1EB1400900EA2233 /* LaunchScreen.storyboard in Resources */,
  1601. );
  1602. runOnlyForDeploymentPostprocessing = 0;
  1603. };
  1604. DE7B8D031E8EF077009EB6DF /* Resources */ = {
  1605. isa = PBXResourcesBuildPhase;
  1606. buildActionMask = 2147483647;
  1607. files = (
  1608. AFAF36F71EC28C25004BDEE5 /* Shared.xcassets in Resources */,
  1609. 0672F2F21EBBA7D900818E87 /* GoogleService-Info.plist in Resources */,
  1610. DE7B8DD11E8EF24F009EB6DF /* Main.storyboard in Resources */,
  1611. DE7B8DD01E8EF246009EB6DF /* LaunchScreen.storyboard in Resources */,
  1612. );
  1613. runOnlyForDeploymentPostprocessing = 0;
  1614. };
  1615. DE7B8D1B1E8EF078009EB6DF /* Resources */ = {
  1616. isa = PBXResourcesBuildPhase;
  1617. buildActionMask = 2147483647;
  1618. files = (
  1619. DE7B8DB61E8EF203009EB6DF /* InfoPlist.strings in Resources */,
  1620. DE7B8DC91E8EF203009EB6DF /* syncPointSpec.json in Resources */,
  1621. 0672F2F31EBBA7D900818E87 /* GoogleService-Info.plist in Resources */,
  1622. );
  1623. runOnlyForDeploymentPostprocessing = 0;
  1624. };
  1625. DE9314C41E86C6BD0083EDBF /* Resources */ = {
  1626. isa = PBXResourcesBuildPhase;
  1627. buildActionMask = 2147483647;
  1628. files = (
  1629. DE93152B1E86C6FF0083EDBF /* GoogleService-Info.plist in Resources */,
  1630. AFAF36F51EC28C25004BDEE5 /* Shared.xcassets in Resources */,
  1631. DE9315261E86C6FF0083EDBF /* LaunchScreen.storyboard in Resources */,
  1632. DE9315271E86C6FF0083EDBF /* Main.storyboard in Resources */,
  1633. DE4E711B1E953ABC00070092 /* FirebaseDev.podspec in Resources */,
  1634. DE7B8DD31E8F1CA7009EB6DF /* Database-Info.plist in Resources */,
  1635. 063CB49A1EBA7AEF00038A59 /* FirebaseTests-Info.plist in Resources */,
  1636. );
  1637. runOnlyForDeploymentPostprocessing = 0;
  1638. };
  1639. DE9314DC1E86C6BE0083EDBF /* Resources */ = {
  1640. isa = PBXResourcesBuildPhase;
  1641. buildActionMask = 2147483647;
  1642. files = (
  1643. );
  1644. runOnlyForDeploymentPostprocessing = 0;
  1645. };
  1646. DE9315A51E8738460083EDBF /* Resources */ = {
  1647. isa = PBXResourcesBuildPhase;
  1648. buildActionMask = 2147483647;
  1649. files = (
  1650. );
  1651. runOnlyForDeploymentPostprocessing = 0;
  1652. };
  1653. DEB139F91E73506A00AC236D /* Resources */ = {
  1654. isa = PBXResourcesBuildPhase;
  1655. buildActionMask = 2147483647;
  1656. files = (
  1657. 069428831EC3B38C00F7BC69 /* 1mb.dat in Resources */,
  1658. DEB61EC51E7C5DBB00C04B96 /* LaunchScreen.storyboard in Resources */,
  1659. AFAF36F91EC28C25004BDEE5 /* Shared.xcassets in Resources */,
  1660. DEB61EC61E7C5DBB00C04B96 /* Main.storyboard in Resources */,
  1661. DEB61EC91E7C5DBB00C04B96 /* GoogleService-Info.plist in Resources */,
  1662. );
  1663. runOnlyForDeploymentPostprocessing = 0;
  1664. };
  1665. DEB13A1D1E73507E00AC236D /* Resources */ = {
  1666. isa = PBXResourcesBuildPhase;
  1667. buildActionMask = 2147483647;
  1668. files = (
  1669. );
  1670. runOnlyForDeploymentPostprocessing = 0;
  1671. };
  1672. DEE14D3F1E84464D006FA992 /* Resources */ = {
  1673. isa = PBXResourcesBuildPhase;
  1674. buildActionMask = 2147483647;
  1675. files = (
  1676. AFAF36F61EC28C25004BDEE5 /* Shared.xcassets in Resources */,
  1677. DEE14D831E844677006FA992 /* GoogleService-Info.plist in Resources */,
  1678. DEE14D7E1E844677006FA992 /* LaunchScreen.storyboard in Resources */,
  1679. DEE14D7F1E844677006FA992 /* Main.storyboard in Resources */,
  1680. );
  1681. runOnlyForDeploymentPostprocessing = 0;
  1682. };
  1683. DEE14D571E84464D006FA992 /* Resources */ = {
  1684. isa = PBXResourcesBuildPhase;
  1685. buildActionMask = 2147483647;
  1686. files = (
  1687. );
  1688. runOnlyForDeploymentPostprocessing = 0;
  1689. };
  1690. /* End PBXResourcesBuildPhase section */
  1691. /* Begin PBXShellScriptBuildPhase section */
  1692. 016A3201E8E0C5ABE835F645 /* [CP] Check Pods Manifest.lock */ = {
  1693. isa = PBXShellScriptBuildPhase;
  1694. buildActionMask = 2147483647;
  1695. files = (
  1696. );
  1697. inputPaths = (
  1698. );
  1699. name = "[CP] Check Pods Manifest.lock";
  1700. outputPaths = (
  1701. );
  1702. runOnlyForDeploymentPostprocessing = 0;
  1703. shellPath = /bin/sh;
  1704. 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";
  1705. showEnvVarsInLog = 0;
  1706. };
  1707. 0840546A7D90530C21375416 /* [CP] Embed Pods Frameworks */ = {
  1708. isa = PBXShellScriptBuildPhase;
  1709. buildActionMask = 2147483647;
  1710. files = (
  1711. );
  1712. inputPaths = (
  1713. );
  1714. name = "[CP] Embed Pods Frameworks";
  1715. outputPaths = (
  1716. );
  1717. runOnlyForDeploymentPostprocessing = 0;
  1718. shellPath = /bin/sh;
  1719. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Storage_IntegrationTests/Pods-Storage_IntegrationTests-frameworks.sh\"\n";
  1720. showEnvVarsInLog = 0;
  1721. };
  1722. 12F6D0DD1D452316A3123EED /* [CP] Copy Pods Resources */ = {
  1723. isa = PBXShellScriptBuildPhase;
  1724. buildActionMask = 2147483647;
  1725. files = (
  1726. );
  1727. inputPaths = (
  1728. );
  1729. name = "[CP] Copy Pods Resources";
  1730. outputPaths = (
  1731. );
  1732. runOnlyForDeploymentPostprocessing = 0;
  1733. shellPath = /bin/sh;
  1734. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Storage_Tests/Pods-Storage_Tests-resources.sh\"\n";
  1735. showEnvVarsInLog = 0;
  1736. };
  1737. 26F9869011740630E2119D0D /* [CP] Check Pods Manifest.lock */ = {
  1738. isa = PBXShellScriptBuildPhase;
  1739. buildActionMask = 2147483647;
  1740. files = (
  1741. );
  1742. inputPaths = (
  1743. );
  1744. name = "[CP] Check Pods Manifest.lock";
  1745. outputPaths = (
  1746. );
  1747. runOnlyForDeploymentPostprocessing = 0;
  1748. shellPath = /bin/sh;
  1749. 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";
  1750. showEnvVarsInLog = 0;
  1751. };
  1752. 316D851DAC53422509F9B7B4 /* [CP] Embed Pods Frameworks */ = {
  1753. isa = PBXShellScriptBuildPhase;
  1754. buildActionMask = 2147483647;
  1755. files = (
  1756. );
  1757. inputPaths = (
  1758. );
  1759. name = "[CP] Embed Pods Frameworks";
  1760. outputPaths = (
  1761. );
  1762. runOnlyForDeploymentPostprocessing = 0;
  1763. shellPath = /bin/sh;
  1764. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Core_Tests/Pods-Core_Tests-frameworks.sh\"\n";
  1765. showEnvVarsInLog = 0;
  1766. };
  1767. 3D9876DCE9EFE13441346E50 /* [CP] Embed Pods Frameworks */ = {
  1768. isa = PBXShellScriptBuildPhase;
  1769. buildActionMask = 2147483647;
  1770. files = (
  1771. );
  1772. inputPaths = (
  1773. );
  1774. name = "[CP] Embed Pods Frameworks";
  1775. outputPaths = (
  1776. );
  1777. runOnlyForDeploymentPostprocessing = 0;
  1778. shellPath = /bin/sh;
  1779. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Messaging_Tests/Pods-Messaging_Tests-frameworks.sh\"\n";
  1780. showEnvVarsInLog = 0;
  1781. };
  1782. 4363D4BBFAAC4D505B9B18EC /* [CP] Check Pods Manifest.lock */ = {
  1783. isa = PBXShellScriptBuildPhase;
  1784. buildActionMask = 2147483647;
  1785. files = (
  1786. );
  1787. inputPaths = (
  1788. );
  1789. name = "[CP] Check Pods Manifest.lock";
  1790. outputPaths = (
  1791. );
  1792. runOnlyForDeploymentPostprocessing = 0;
  1793. shellPath = /bin/sh;
  1794. 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";
  1795. showEnvVarsInLog = 0;
  1796. };
  1797. 54175166C251F5F698B6B1C3 /* [CP] Embed Pods Frameworks */ = {
  1798. isa = PBXShellScriptBuildPhase;
  1799. buildActionMask = 2147483647;
  1800. files = (
  1801. );
  1802. inputPaths = (
  1803. );
  1804. name = "[CP] Embed Pods Frameworks";
  1805. outputPaths = (
  1806. );
  1807. runOnlyForDeploymentPostprocessing = 0;
  1808. shellPath = /bin/sh;
  1809. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Auth_Tests/Pods-Auth_Tests-frameworks.sh\"\n";
  1810. showEnvVarsInLog = 0;
  1811. };
  1812. 57EF5C8DAF88A5F43BE0C6FE /* [CP] Embed Pods Frameworks */ = {
  1813. isa = PBXShellScriptBuildPhase;
  1814. buildActionMask = 2147483647;
  1815. files = (
  1816. );
  1817. inputPaths = (
  1818. );
  1819. name = "[CP] Embed Pods Frameworks";
  1820. outputPaths = (
  1821. );
  1822. runOnlyForDeploymentPostprocessing = 0;
  1823. shellPath = /bin/sh;
  1824. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Storage_Tests/Pods-Storage_Tests-frameworks.sh\"\n";
  1825. showEnvVarsInLog = 0;
  1826. };
  1827. 597B88E0E6B632C48707E8EB /* [CP] Copy Pods Resources */ = {
  1828. isa = PBXShellScriptBuildPhase;
  1829. buildActionMask = 2147483647;
  1830. files = (
  1831. );
  1832. inputPaths = (
  1833. );
  1834. name = "[CP] Copy Pods Resources";
  1835. outputPaths = (
  1836. );
  1837. runOnlyForDeploymentPostprocessing = 0;
  1838. shellPath = /bin/sh;
  1839. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Database_IntegrationTests/Pods-Database_IntegrationTests-resources.sh\"\n";
  1840. showEnvVarsInLog = 0;
  1841. };
  1842. 5AE0F6A81F9A499BD752D5E9 /* [CP] Copy Pods Resources */ = {
  1843. isa = PBXShellScriptBuildPhase;
  1844. buildActionMask = 2147483647;
  1845. files = (
  1846. );
  1847. inputPaths = (
  1848. );
  1849. name = "[CP] Copy Pods Resources";
  1850. outputPaths = (
  1851. );
  1852. runOnlyForDeploymentPostprocessing = 0;
  1853. shellPath = /bin/sh;
  1854. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Database_Example/Pods-Database_Example-resources.sh\"\n";
  1855. showEnvVarsInLog = 0;
  1856. };
  1857. 5BE3F4C8BA697C65D55C055E /* [CP] Copy Pods Resources */ = {
  1858. isa = PBXShellScriptBuildPhase;
  1859. buildActionMask = 2147483647;
  1860. files = (
  1861. );
  1862. inputPaths = (
  1863. );
  1864. name = "[CP] Copy Pods Resources";
  1865. outputPaths = (
  1866. );
  1867. runOnlyForDeploymentPostprocessing = 0;
  1868. shellPath = /bin/sh;
  1869. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Storage_Example/Pods-Storage_Example-resources.sh\"\n";
  1870. showEnvVarsInLog = 0;
  1871. };
  1872. 5EFAE1A18DA8F6BFC0C191E8 /* [CP] Embed Pods Frameworks */ = {
  1873. isa = PBXShellScriptBuildPhase;
  1874. buildActionMask = 2147483647;
  1875. files = (
  1876. );
  1877. inputPaths = (
  1878. );
  1879. name = "[CP] Embed Pods Frameworks";
  1880. outputPaths = (
  1881. );
  1882. runOnlyForDeploymentPostprocessing = 0;
  1883. shellPath = /bin/sh;
  1884. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Database_Tests/Pods-Database_Tests-frameworks.sh\"\n";
  1885. showEnvVarsInLog = 0;
  1886. };
  1887. 634E392CCD4D5E88B96D3EF1 /* [CP] Copy Pods Resources */ = {
  1888. isa = PBXShellScriptBuildPhase;
  1889. buildActionMask = 2147483647;
  1890. files = (
  1891. );
  1892. inputPaths = (
  1893. );
  1894. name = "[CP] Copy Pods Resources";
  1895. outputPaths = (
  1896. );
  1897. runOnlyForDeploymentPostprocessing = 0;
  1898. shellPath = /bin/sh;
  1899. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Database_Tests/Pods-Database_Tests-resources.sh\"\n";
  1900. showEnvVarsInLog = 0;
  1901. };
  1902. 66C488F8D840BC12E26BEE9C /* [CP] Check Pods Manifest.lock */ = {
  1903. isa = PBXShellScriptBuildPhase;
  1904. buildActionMask = 2147483647;
  1905. files = (
  1906. );
  1907. inputPaths = (
  1908. );
  1909. name = "[CP] Check Pods Manifest.lock";
  1910. outputPaths = (
  1911. );
  1912. runOnlyForDeploymentPostprocessing = 0;
  1913. shellPath = /bin/sh;
  1914. 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";
  1915. showEnvVarsInLog = 0;
  1916. };
  1917. 744AF9F9B2DB5C511EB9969A /* [CP] Embed Pods Frameworks */ = {
  1918. isa = PBXShellScriptBuildPhase;
  1919. buildActionMask = 2147483647;
  1920. files = (
  1921. );
  1922. inputPaths = (
  1923. );
  1924. name = "[CP] Embed Pods Frameworks";
  1925. outputPaths = (
  1926. );
  1927. runOnlyForDeploymentPostprocessing = 0;
  1928. shellPath = /bin/sh;
  1929. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Database_IntegrationTests/Pods-Database_IntegrationTests-frameworks.sh\"\n";
  1930. showEnvVarsInLog = 0;
  1931. };
  1932. 7CC2EB21DFB0E48B1B8171B2 /* [CP] Check Pods Manifest.lock */ = {
  1933. isa = PBXShellScriptBuildPhase;
  1934. buildActionMask = 2147483647;
  1935. files = (
  1936. );
  1937. inputPaths = (
  1938. );
  1939. name = "[CP] Check Pods Manifest.lock";
  1940. outputPaths = (
  1941. );
  1942. runOnlyForDeploymentPostprocessing = 0;
  1943. shellPath = /bin/sh;
  1944. 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";
  1945. showEnvVarsInLog = 0;
  1946. };
  1947. 7E9B7B5115CCC4F0FCBED014 /* [CP] Check Pods Manifest.lock */ = {
  1948. isa = PBXShellScriptBuildPhase;
  1949. buildActionMask = 2147483647;
  1950. files = (
  1951. );
  1952. inputPaths = (
  1953. );
  1954. name = "[CP] Check Pods Manifest.lock";
  1955. outputPaths = (
  1956. );
  1957. runOnlyForDeploymentPostprocessing = 0;
  1958. shellPath = /bin/sh;
  1959. 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";
  1960. showEnvVarsInLog = 0;
  1961. };
  1962. 883CE42B54A7BB78295FBCDA /* [CP] Copy Pods Resources */ = {
  1963. isa = PBXShellScriptBuildPhase;
  1964. buildActionMask = 2147483647;
  1965. files = (
  1966. );
  1967. inputPaths = (
  1968. );
  1969. name = "[CP] Copy Pods Resources";
  1970. outputPaths = (
  1971. );
  1972. runOnlyForDeploymentPostprocessing = 0;
  1973. shellPath = /bin/sh;
  1974. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Core_Example/Pods-Core_Example-resources.sh\"\n";
  1975. showEnvVarsInLog = 0;
  1976. };
  1977. 9D6CD2CDCDD281E43FDD3492 /* [CP] Copy Pods Resources */ = {
  1978. isa = PBXShellScriptBuildPhase;
  1979. buildActionMask = 2147483647;
  1980. files = (
  1981. );
  1982. inputPaths = (
  1983. );
  1984. name = "[CP] Copy Pods Resources";
  1985. outputPaths = (
  1986. );
  1987. runOnlyForDeploymentPostprocessing = 0;
  1988. shellPath = /bin/sh;
  1989. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Core_Tests/Pods-Core_Tests-resources.sh\"\n";
  1990. showEnvVarsInLog = 0;
  1991. };
  1992. 9D8053D74F91F866DB0D0199 /* [CP] Copy Pods Resources */ = {
  1993. isa = PBXShellScriptBuildPhase;
  1994. buildActionMask = 2147483647;
  1995. files = (
  1996. );
  1997. inputPaths = (
  1998. );
  1999. name = "[CP] Copy Pods Resources";
  2000. outputPaths = (
  2001. );
  2002. runOnlyForDeploymentPostprocessing = 0;
  2003. shellPath = /bin/sh;
  2004. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Auth_Tests/Pods-Auth_Tests-resources.sh\"\n";
  2005. showEnvVarsInLog = 0;
  2006. };
  2007. A2DF8D8C8D3B6639CBD9CB5B /* [CP] Copy Pods Resources */ = {
  2008. isa = PBXShellScriptBuildPhase;
  2009. buildActionMask = 2147483647;
  2010. files = (
  2011. );
  2012. inputPaths = (
  2013. );
  2014. name = "[CP] Copy Pods Resources";
  2015. outputPaths = (
  2016. );
  2017. runOnlyForDeploymentPostprocessing = 0;
  2018. shellPath = /bin/sh;
  2019. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Auth_Example/Pods-Auth_Example-resources.sh\"\n";
  2020. showEnvVarsInLog = 0;
  2021. };
  2022. A39D405E17BE3A6646B8E38E /* [CP] Copy Pods Resources */ = {
  2023. isa = PBXShellScriptBuildPhase;
  2024. buildActionMask = 2147483647;
  2025. files = (
  2026. );
  2027. inputPaths = (
  2028. );
  2029. name = "[CP] Copy Pods Resources";
  2030. outputPaths = (
  2031. );
  2032. runOnlyForDeploymentPostprocessing = 0;
  2033. shellPath = /bin/sh;
  2034. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Messaging_Example/Pods-Messaging_Example-resources.sh\"\n";
  2035. showEnvVarsInLog = 0;
  2036. };
  2037. AA723E4B93CCA8A3A4C24F4E /* [CP] Copy Pods Resources */ = {
  2038. isa = PBXShellScriptBuildPhase;
  2039. buildActionMask = 2147483647;
  2040. files = (
  2041. );
  2042. inputPaths = (
  2043. );
  2044. name = "[CP] Copy Pods Resources";
  2045. outputPaths = (
  2046. );
  2047. runOnlyForDeploymentPostprocessing = 0;
  2048. shellPath = /bin/sh;
  2049. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Messaging_Tests/Pods-Messaging_Tests-resources.sh\"\n";
  2050. showEnvVarsInLog = 0;
  2051. };
  2052. AB5B6984AF16CF03E74EA522 /* [CP] Check Pods Manifest.lock */ = {
  2053. isa = PBXShellScriptBuildPhase;
  2054. buildActionMask = 2147483647;
  2055. files = (
  2056. );
  2057. inputPaths = (
  2058. );
  2059. name = "[CP] Check Pods Manifest.lock";
  2060. outputPaths = (
  2061. );
  2062. runOnlyForDeploymentPostprocessing = 0;
  2063. shellPath = /bin/sh;
  2064. 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";
  2065. showEnvVarsInLog = 0;
  2066. };
  2067. AD42F17297AF3C18062D4C51 /* [CP] Check Pods Manifest.lock */ = {
  2068. isa = PBXShellScriptBuildPhase;
  2069. buildActionMask = 2147483647;
  2070. files = (
  2071. );
  2072. inputPaths = (
  2073. );
  2074. name = "[CP] Check Pods Manifest.lock";
  2075. outputPaths = (
  2076. );
  2077. runOnlyForDeploymentPostprocessing = 0;
  2078. shellPath = /bin/sh;
  2079. 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";
  2080. showEnvVarsInLog = 0;
  2081. };
  2082. ADFC988CE33AA0C8F0C59177 /* [CP] Embed Pods Frameworks */ = {
  2083. isa = PBXShellScriptBuildPhase;
  2084. buildActionMask = 2147483647;
  2085. files = (
  2086. );
  2087. inputPaths = (
  2088. );
  2089. name = "[CP] Embed Pods Frameworks";
  2090. outputPaths = (
  2091. );
  2092. runOnlyForDeploymentPostprocessing = 0;
  2093. shellPath = /bin/sh;
  2094. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Messaging_Example/Pods-Messaging_Example-frameworks.sh\"\n";
  2095. showEnvVarsInLog = 0;
  2096. };
  2097. B293C142610E914FBE2CA4C9 /* [CP] Embed Pods Frameworks */ = {
  2098. isa = PBXShellScriptBuildPhase;
  2099. buildActionMask = 2147483647;
  2100. files = (
  2101. );
  2102. inputPaths = (
  2103. );
  2104. name = "[CP] Embed Pods Frameworks";
  2105. outputPaths = (
  2106. );
  2107. runOnlyForDeploymentPostprocessing = 0;
  2108. shellPath = /bin/sh;
  2109. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Auth_Example/Pods-Auth_Example-frameworks.sh\"\n";
  2110. showEnvVarsInLog = 0;
  2111. };
  2112. B84CF6076850A6EA9E66592F /* [CP] Copy Pods Resources */ = {
  2113. isa = PBXShellScriptBuildPhase;
  2114. buildActionMask = 2147483647;
  2115. files = (
  2116. );
  2117. inputPaths = (
  2118. );
  2119. name = "[CP] Copy Pods Resources";
  2120. outputPaths = (
  2121. );
  2122. runOnlyForDeploymentPostprocessing = 0;
  2123. shellPath = /bin/sh;
  2124. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Storage_IntegrationTests/Pods-Storage_IntegrationTests-resources.sh\"\n";
  2125. showEnvVarsInLog = 0;
  2126. };
  2127. BCC67418B8EBA4E90488CD55 /* [CP] Check Pods Manifest.lock */ = {
  2128. isa = PBXShellScriptBuildPhase;
  2129. buildActionMask = 2147483647;
  2130. files = (
  2131. );
  2132. inputPaths = (
  2133. );
  2134. name = "[CP] Check Pods Manifest.lock";
  2135. outputPaths = (
  2136. );
  2137. runOnlyForDeploymentPostprocessing = 0;
  2138. shellPath = /bin/sh;
  2139. 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";
  2140. showEnvVarsInLog = 0;
  2141. };
  2142. BF9A61F6BBE9655CED5E897D /* [CP] Check Pods Manifest.lock */ = {
  2143. isa = PBXShellScriptBuildPhase;
  2144. buildActionMask = 2147483647;
  2145. files = (
  2146. );
  2147. inputPaths = (
  2148. );
  2149. name = "[CP] Check Pods Manifest.lock";
  2150. outputPaths = (
  2151. );
  2152. runOnlyForDeploymentPostprocessing = 0;
  2153. shellPath = /bin/sh;
  2154. 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";
  2155. showEnvVarsInLog = 0;
  2156. };
  2157. C3AFD8761D910A99E506F606 /* [CP] Check Pods Manifest.lock */ = {
  2158. isa = PBXShellScriptBuildPhase;
  2159. buildActionMask = 2147483647;
  2160. files = (
  2161. );
  2162. inputPaths = (
  2163. );
  2164. name = "[CP] Check Pods Manifest.lock";
  2165. outputPaths = (
  2166. );
  2167. runOnlyForDeploymentPostprocessing = 0;
  2168. shellPath = /bin/sh;
  2169. 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";
  2170. showEnvVarsInLog = 0;
  2171. };
  2172. DEFCD9C6026936498AE2778C /* [CP] Embed Pods Frameworks */ = {
  2173. isa = PBXShellScriptBuildPhase;
  2174. buildActionMask = 2147483647;
  2175. files = (
  2176. );
  2177. inputPaths = (
  2178. );
  2179. name = "[CP] Embed Pods Frameworks";
  2180. outputPaths = (
  2181. );
  2182. runOnlyForDeploymentPostprocessing = 0;
  2183. shellPath = /bin/sh;
  2184. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Core_Example/Pods-Core_Example-frameworks.sh\"\n";
  2185. showEnvVarsInLog = 0;
  2186. };
  2187. E8657FA5227C3B5EB7B83B40 /* [CP] Embed Pods Frameworks */ = {
  2188. isa = PBXShellScriptBuildPhase;
  2189. buildActionMask = 2147483647;
  2190. files = (
  2191. );
  2192. inputPaths = (
  2193. );
  2194. name = "[CP] Embed Pods Frameworks";
  2195. outputPaths = (
  2196. );
  2197. runOnlyForDeploymentPostprocessing = 0;
  2198. shellPath = /bin/sh;
  2199. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Storage_Example/Pods-Storage_Example-frameworks.sh\"\n";
  2200. showEnvVarsInLog = 0;
  2201. };
  2202. E9A4ADE4EE7390DC85A9FC17 /* [CP] Embed Pods Frameworks */ = {
  2203. isa = PBXShellScriptBuildPhase;
  2204. buildActionMask = 2147483647;
  2205. files = (
  2206. );
  2207. inputPaths = (
  2208. );
  2209. name = "[CP] Embed Pods Frameworks";
  2210. outputPaths = (
  2211. );
  2212. runOnlyForDeploymentPostprocessing = 0;
  2213. shellPath = /bin/sh;
  2214. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Database_Example/Pods-Database_Example-frameworks.sh\"\n";
  2215. showEnvVarsInLog = 0;
  2216. };
  2217. EE21F035A2A97C35635C2F3C /* [CP] Check Pods Manifest.lock */ = {
  2218. isa = PBXShellScriptBuildPhase;
  2219. buildActionMask = 2147483647;
  2220. files = (
  2221. );
  2222. inputPaths = (
  2223. );
  2224. name = "[CP] Check Pods Manifest.lock";
  2225. outputPaths = (
  2226. );
  2227. runOnlyForDeploymentPostprocessing = 0;
  2228. shellPath = /bin/sh;
  2229. 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";
  2230. showEnvVarsInLog = 0;
  2231. };
  2232. /* End PBXShellScriptBuildPhase section */
  2233. /* Begin PBXSourcesBuildPhase section */
  2234. 06121EB81EC399C50008D70E /* Sources */ = {
  2235. isa = PBXSourcesBuildPhase;
  2236. buildActionMask = 2147483647;
  2237. files = (
  2238. 06C24A061EC39BCB005208CA /* FIRStorageIntegrationTests.m in Sources */,
  2239. );
  2240. runOnlyForDeploymentPostprocessing = 0;
  2241. };
  2242. 0624F3DD1EC0ECFA00E5940D /* Sources */ = {
  2243. isa = PBXSourcesBuildPhase;
  2244. buildActionMask = 2147483647;
  2245. files = (
  2246. 0624F3EC1EC0ED1B00E5940D /* FData.m in Sources */,
  2247. 0637BA6D1EC0F9CF00CAEFD4 /* FTestBase.m in Sources */,
  2248. 0637BA721EC0F9E000CAEFD4 /* FTupleEventTypeString.m in Sources */,
  2249. 0637BA6C1EC0F9CB00CAEFD4 /* FTestAuthTokenGenerator.m in Sources */,
  2250. 0637BA6B1EC0F9C700CAEFD4 /* FMockStorageEngine.m in Sources */,
  2251. 0624F3EB1EC0ED0800E5940D /* FConnectionTest.m in Sources */,
  2252. 0624F3F21EC0ED3F00E5940D /* FKeepSyncedTest.m in Sources */,
  2253. 0624F3F71EC0ED5600E5940D /* FTransactionTest.m in Sources */,
  2254. 0624F3F01EC0ED3500E5940D /* FIRDatabaseQueryTests.m in Sources */,
  2255. 0637BA701EC0F9D900CAEFD4 /* FTestExpectations.m in Sources */,
  2256. 0637BA6F1EC0F9D500CAEFD4 /* FTestClock.m in Sources */,
  2257. 0637BA691EC0F9C100CAEFD4 /* FIRFakeApp.m in Sources */,
  2258. 0624F3EE1EC0ED2A00E5940D /* FEventTests.m in Sources */,
  2259. 0624F3ED1EC0ED2300E5940D /* FDotInfo.m in Sources */,
  2260. 0624F3F61EC0ED5100E5940D /* FRealtime.m in Sources */,
  2261. 0637BA671EC0F9BA00CAEFD4 /* FDevice.m in Sources */,
  2262. 0637BA6A1EC0F9C400CAEFD4 /* FIRTestAuthTokenProvider.m in Sources */,
  2263. 0637BA731EC0F9E400CAEFD4 /* SenTest+FWaiter.m in Sources */,
  2264. 0624F3F11EC0ED3A00E5940D /* FIRDatabaseTests.m in Sources */,
  2265. 0624F3F41EC0ED4800E5940D /* FOrderByTests.m in Sources */,
  2266. 0624F3F51EC0ED4D00E5940D /* FPersist.m in Sources */,
  2267. 0624F3EF1EC0ED3000E5940D /* FIRAuthTests.m in Sources */,
  2268. 0624F3F31EC0ED4300E5940D /* FOrder.m in Sources */,
  2269. 0637BA6E1EC0F9D200CAEFD4 /* FTestCachePolicy.m in Sources */,
  2270. 0637BA711EC0F9DD00CAEFD4 /* FTestHelpers.m in Sources */,
  2271. 0637BA681EC0F9BD00CAEFD4 /* FEventTester.m in Sources */,
  2272. );
  2273. runOnlyForDeploymentPostprocessing = 0;
  2274. };
  2275. AFD562E11EB13C6D00EA2233 /* Sources */ = {
  2276. isa = PBXSourcesBuildPhase;
  2277. buildActionMask = 2147483647;
  2278. files = (
  2279. AFD563171EBBEF7B00EA2233 /* Data+MessagingExtensions.swift in Sources */,
  2280. AFD5630E1EB1402300EA2233 /* AppDelegate.swift in Sources */,
  2281. AFC8BA9D1EBD230E00B8EEAE /* NotificationsController.swift in Sources */,
  2282. AFD5630F1EB1402300EA2233 /* MessagingViewController.swift in Sources */,
  2283. AFC8BAA71EC257D800B8EEAE /* FIRSampleAppUtilities.m in Sources */,
  2284. AFC8BA9F1EBD51A700B8EEAE /* Environment.swift in Sources */,
  2285. );
  2286. runOnlyForDeploymentPostprocessing = 0;
  2287. };
  2288. DE7B8D011E8EF077009EB6DF /* Sources */ = {
  2289. isa = PBXSourcesBuildPhase;
  2290. buildActionMask = 2147483647;
  2291. files = (
  2292. DE7B8DCB1E8EF23A009EB6DF /* FIRViewController.m in Sources */,
  2293. DE7B8DCC1E8EF23A009EB6DF /* main.m in Sources */,
  2294. DE7B8DCA1E8EF23A009EB6DF /* FIRAppDelegate.m in Sources */,
  2295. );
  2296. runOnlyForDeploymentPostprocessing = 0;
  2297. };
  2298. DE7B8D191E8EF078009EB6DF /* Sources */ = {
  2299. isa = PBXSourcesBuildPhase;
  2300. buildActionMask = 2147483647;
  2301. files = (
  2302. DE7B8DC61E8EF203009EB6DF /* FTestHelpers.m in Sources */,
  2303. 063CB4CE1EBA7B4600038A59 /* FPathTests.m in Sources */,
  2304. DE7B8DC31E8EF203009EB6DF /* FTestCachePolicy.m in Sources */,
  2305. 063CB4D11EBA7B4600038A59 /* FPruningTest.m in Sources */,
  2306. DE7B8DC41E8EF203009EB6DF /* FTestClock.m in Sources */,
  2307. DE7B8DC01E8EF203009EB6DF /* FIRTestAuthTokenProvider.m in Sources */,
  2308. 063CB4D31EBA7B4600038A59 /* FRangeMergeTest.m in Sources */,
  2309. 063CB4C81EBA7B3100038A59 /* FTreeSortedDictionaryTests.m in Sources */,
  2310. 063CB4CD1EBA7B4600038A59 /* FNodeTests.m in Sources */,
  2311. 063CB4CB1EBA7B4600038A59 /* FIRMutableDataTests.m in Sources */,
  2312. 063CB4BE1EBA7B3100038A59 /* FIRDataSnapshotTests.m in Sources */,
  2313. DE7B8DC11E8EF203009EB6DF /* FMockStorageEngine.m in Sources */,
  2314. DE7B8DC71E8EF203009EB6DF /* FTupleEventTypeString.m in Sources */,
  2315. 063CB4CC1EBA7B4600038A59 /* FLevelDBStorageEngineTests.m in Sources */,
  2316. 063CB4D41EBA7B4600038A59 /* FRepoInfoTest.m in Sources */,
  2317. 063CB4CA1EBA7B4600038A59 /* FCompoundHashTest.m in Sources */,
  2318. 063CB4D81EBA7B4600038A59 /* FTrackedQueryManagerTest.m in Sources */,
  2319. 063CB4D91EBA7B4600038A59 /* FUtilitiesTest.m in Sources */,
  2320. 063CB4D51EBA7B4600038A59 /* FSparseSnapshotTests.m in Sources */,
  2321. 063CB4D71EBA7B4600038A59 /* FTestBase.m in Sources */,
  2322. DE7B8DBE1E8EF203009EB6DF /* FDevice.m in Sources */,
  2323. 063CB4CF1EBA7B4600038A59 /* FPersistenceManagerTest.m in Sources */,
  2324. 063CB4A71EBA7B0B00038A59 /* FCompoundWriteTest.m in Sources */,
  2325. DE7B8DC81E8EF203009EB6DF /* SenTest+FWaiter.m in Sources */,
  2326. 063CB4D01EBA7B4600038A59 /* FPruneForestTest.m in Sources */,
  2327. DE7B8DC51E8EF203009EB6DF /* FTestExpectations.m in Sources */,
  2328. 063CB4BF1EBA7B3100038A59 /* FIRFakeApp.m in Sources */,
  2329. DE7B8DBF1E8EF203009EB6DF /* FEventTester.m in Sources */,
  2330. 063CB4D21EBA7B4600038A59 /* FQueryParamsTest.m in Sources */,
  2331. 063CB4DB1EBAA89E00038A59 /* FSyncPointTests.m in Sources */,
  2332. 063CB4C91EBA7B4600038A59 /* FArraySortedDictionaryTest.m in Sources */,
  2333. DE7B8DC21E8EF203009EB6DF /* FTestAuthTokenGenerator.m in Sources */,
  2334. );
  2335. runOnlyForDeploymentPostprocessing = 0;
  2336. };
  2337. DE9314C21E86C6BD0083EDBF /* Sources */ = {
  2338. isa = PBXSourcesBuildPhase;
  2339. buildActionMask = 2147483647;
  2340. files = (
  2341. 0697B1221EC13D8A00542174 /* Base64.m in Sources */,
  2342. DE93152A1E86C6FF0083EDBF /* FIRViewController.m in Sources */,
  2343. DE93152D1E86C6FF0083EDBF /* main.m in Sources */,
  2344. DE9315291E86C6FF0083EDBF /* FIRAppDelegate.m in Sources */,
  2345. );
  2346. runOnlyForDeploymentPostprocessing = 0;
  2347. };
  2348. DE9314DA1E86C6BE0083EDBF /* Sources */ = {
  2349. isa = PBXSourcesBuildPhase;
  2350. buildActionMask = 2147483647;
  2351. files = (
  2352. DE9315691E86C71C0083EDBF /* FIRGetOOBConfirmationCodeResponseTests.m in Sources */,
  2353. DE9315661E86C71C0083EDBF /* FIRGetAccountInfoRequestTests.m in Sources */,
  2354. DE9315731E86C71C0083EDBF /* FIRSignUpNewUserResponseTests.m in Sources */,
  2355. DE9315681E86C71C0083EDBF /* FIRGetOOBConfirmationCodeRequestTests.m in Sources */,
  2356. DE9315571E86C71C0083EDBF /* FIRAdditionalUserInfoTests.m in Sources */,
  2357. DE750DBF1EB3DD6C00A75E47 /* FIRAuthAppCredentialManagerTests.m in Sources */,
  2358. DE93157B1E86C71C0083EDBF /* FIRVerifyPasswordResponseTests.m in Sources */,
  2359. DE93155B1E86C71C0083EDBF /* FIRAuthDispatcherTests.m in Sources */,
  2360. DE9315791E86C71C0083EDBF /* FIRVerifyCustomTokenResponseTests.m in Sources */,
  2361. DE9315601E86C71C0083EDBF /* FIRAuthUserDefaultsStorageTests.m in Sources */,
  2362. DE9315641E86C71C0083EDBF /* FIRDeleteAccountResponseTests.m in Sources */,
  2363. DE9315741E86C71C0083EDBF /* FIRTwitterAuthProviderTests.m in Sources */,
  2364. DE750DC01EB3DD6F00A75E47 /* FIRAuthNotificationManagerTests.m in Sources */,
  2365. DE93156A1E86C71C0083EDBF /* FIRGitHubAuthProviderTests.m in Sources */,
  2366. DE9315761E86C71C0083EDBF /* FIRVerifyAssertionRequestTests.m in Sources */,
  2367. DE9315781E86C71C0083EDBF /* FIRVerifyCustomTokenRequestTests.m in Sources */,
  2368. DE93157C1E86C71C0083EDBF /* FIRVerifyPhoneNumberRequestTests.m in Sources */,
  2369. DE9315651E86C71C0083EDBF /* FIRFakeBackendRPCIssuer.m in Sources */,
  2370. DE9315591E86C71C0083EDBF /* FIRAuthBackendCreateAuthURITests.m in Sources */,
  2371. DE0E5BBB1EA7D92E00FAA825 /* FIRVerifyClientRequestTest.m in Sources */,
  2372. DE93156F1E86C71C0083EDBF /* FIRSendVerificationCodeResponseTests.m in Sources */,
  2373. DE93156C1E86C71C0083EDBF /* FIRResetPasswordRequestTests.m in Sources */,
  2374. DE93156D1E86C71C0083EDBF /* FIRResetPasswordResponseTests.m in Sources */,
  2375. DE9315611E86C71C0083EDBF /* FIRCreateAuthURIRequestTests.m in Sources */,
  2376. DE93156E1E86C71C0083EDBF /* FIRSendVerificationCodeRequestTests.m in Sources */,
  2377. DE93155D1E86C71C0083EDBF /* FIRAuthKeychainTests.m in Sources */,
  2378. DE93155C1E86C71C0083EDBF /* FIRAuthGlobalWorkQueueTests.m in Sources */,
  2379. DE9315631E86C71C0083EDBF /* FIRDeleteAccountRequestTests.m in Sources */,
  2380. DECE039B1E9ED01600164CA4 /* FIRPhoneAuthProviderTests.m in Sources */,
  2381. DE750DBE1EB3DD6800A75E47 /* FIRAuthAPNSTokenManagerTests.m in Sources */,
  2382. DE93157A1E86C71C0083EDBF /* FIRVerifyPasswordRequestTest.m in Sources */,
  2383. DE9315621E86C71C0083EDBF /* FIRCreateAuthURIResponseTests.m in Sources */,
  2384. DE93155A1E86C71C0083EDBF /* FIRAuthBackendRPCImplementationTests.m in Sources */,
  2385. DE93157D1E86C71C0083EDBF /* FIRVerifyPhoneNumberResponseTests.m in Sources */,
  2386. DE93157E1E86C71C0083EDBF /* OCMStubRecorder+FIRAuthUnitTests.m in Sources */,
  2387. DE9315771E86C71C0083EDBF /* FIRVerifyAssertionResponseTests.m in Sources */,
  2388. DE9315721E86C71C0083EDBF /* FIRSignUpNewUserRequestTests.m in Sources */,
  2389. DE9315671E86C71C0083EDBF /* FIRGetAccountInfoResponseTests.m in Sources */,
  2390. DE9315701E86C71C0083EDBF /* FIRSetAccountInfoRequestTests.m in Sources */,
  2391. DE0E5BBD1EA7D93100FAA825 /* FIRAuthAppCredentialTests.m in Sources */,
  2392. DE93155E1E86C71C0083EDBF /* FIRAuthSerialTaskQueueTests.m in Sources */,
  2393. DE9315581E86C71C0083EDBF /* FIRApp+FIRAuthUnitTests.m in Sources */,
  2394. DE9315711E86C71C0083EDBF /* FIRSetAccountInfoResponseTests.m in Sources */,
  2395. DE93155F1E86C71C0083EDBF /* FIRAuthTests.m in Sources */,
  2396. DE750DBD1EB3DD5B00A75E47 /* FIRAuthAPNSTokenTests.m in Sources */,
  2397. DE0E5BBE1EA7D93500FAA825 /* FIRAuthAppDelegateProxyTests.m in Sources */,
  2398. DE0E5BBC1EA7D92E00FAA825 /* FIRVerifyClientResponseTests.m in Sources */,
  2399. DE9315751E86C71C0083EDBF /* FIRUserTests.m in Sources */,
  2400. );
  2401. runOnlyForDeploymentPostprocessing = 0;
  2402. };
  2403. DE9315A31E8738460083EDBF /* Sources */ = {
  2404. isa = PBXSourcesBuildPhase;
  2405. buildActionMask = 2147483647;
  2406. files = (
  2407. DE9315F41E8738E60083EDBF /* FIRMessagingClientTest.m in Sources */,
  2408. DE9315F51E8738E60083EDBF /* FIRMessagingCodedInputStreamTest.m in Sources */,
  2409. DE9315F71E8738E60083EDBF /* FIRMessagingContextManagerServiceTest.m in Sources */,
  2410. DE9315FD1E8738E60083EDBF /* FIRMessagingPubSubTest.m in Sources */,
  2411. DE9316011E8738E60083EDBF /* FIRMessagingSecureSocketTest.m in Sources */,
  2412. DE9315FB1E8738E60083EDBF /* FIRMessagingLinkHandlingTest.m in Sources */,
  2413. DE9315FC1E8738E60083EDBF /* FIRMessagingPendingTopicsListTest.m in Sources */,
  2414. DE9316001E8738E60083EDBF /* FIRMessagingRmqManagerTest.m in Sources */,
  2415. DE9315F91E8738E60083EDBF /* FIRMessagingFakeConnection.m in Sources */,
  2416. DE9316021E8738E60083EDBF /* FIRMessagingServiceTest.m in Sources */,
  2417. DE9315FE1E8738E60083EDBF /* FIRMessagingRegistrarTest.m in Sources */,
  2418. DE9316031E8738E60083EDBF /* FIRMessagingSyncMessageManagerTest.m in Sources */,
  2419. DE9315FF1E8738E60083EDBF /* FIRMessagingRemoteNotificationsProxyTest.m in Sources */,
  2420. DE9315F81E8738E60083EDBF /* FIRMessagingDataMessageManagerTest.m in Sources */,
  2421. DE9316051E8738E60083EDBF /* FIRMessagingTestNotificationUtilities.m in Sources */,
  2422. DE9315F61E8738E60083EDBF /* FIRMessagingConnectionTest.m in Sources */,
  2423. DE9316041E8738E60083EDBF /* FIRMessagingTest.m in Sources */,
  2424. DE9315FA1E8738E60083EDBF /* FIRMessagingFakeSocket.m in Sources */,
  2425. );
  2426. runOnlyForDeploymentPostprocessing = 0;
  2427. };
  2428. DEB139E21E73506A00AC236D /* Sources */ = {
  2429. isa = PBXSourcesBuildPhase;
  2430. buildActionMask = 2147483647;
  2431. files = (
  2432. DEB61EC81E7C5DBB00C04B96 /* FIRViewController.m in Sources */,
  2433. DEB61ECB1E7C5DBB00C04B96 /* main.m in Sources */,
  2434. DEB61EC71E7C5DBB00C04B96 /* FIRAppDelegate.m in Sources */,
  2435. );
  2436. runOnlyForDeploymentPostprocessing = 0;
  2437. };
  2438. DEB13A0E1E73507E00AC236D /* Sources */ = {
  2439. isa = PBXSourcesBuildPhase;
  2440. buildActionMask = 2147483647;
  2441. files = (
  2442. DEB13A301E73518B00AC236D /* FIRStorageUtilsTests.m in Sources */,
  2443. DEB13A2D1E73518B00AC236D /* FIRStorageTests.m in Sources */,
  2444. DEB13A281E73518B00AC236D /* FIRStorageGetMetadataTests.m in Sources */,
  2445. DEB13A2F1E73518B00AC236D /* FIRStorageUpdateMetadataTests.m in Sources */,
  2446. DEB13A271E73518B00AC236D /* FIRStorageDeleteTests.m in Sources */,
  2447. DEB13A2C1E73518B00AC236D /* FIRStorageTestHelpers.m in Sources */,
  2448. DEB13A291E73518B00AC236D /* FIRStorageMetadataTests.m in Sources */,
  2449. DEB13A2E1E73518B00AC236D /* FIRStorageTokenAuthorizerTests.m in Sources */,
  2450. DEB13A2B1E73518B00AC236D /* FIRStorageReferenceTests.m in Sources */,
  2451. DEB13A2A1E73518B00AC236D /* FIRStoragePathTests.m in Sources */,
  2452. );
  2453. runOnlyForDeploymentPostprocessing = 0;
  2454. };
  2455. DEE14D3D1E84464D006FA992 /* Sources */ = {
  2456. isa = PBXSourcesBuildPhase;
  2457. buildActionMask = 2147483647;
  2458. files = (
  2459. DEE14D821E844677006FA992 /* FIRViewController.m in Sources */,
  2460. DEE14D851E844677006FA992 /* main.m in Sources */,
  2461. DEE14D811E844677006FA992 /* FIRAppDelegate.m in Sources */,
  2462. );
  2463. runOnlyForDeploymentPostprocessing = 0;
  2464. };
  2465. DEE14D551E84464D006FA992 /* Sources */ = {
  2466. isa = PBXSourcesBuildPhase;
  2467. buildActionMask = 2147483647;
  2468. files = (
  2469. DEE14D8E1E84468D006FA992 /* FIRAppAssociationRegistrationUnitTests.m in Sources */,
  2470. DEE14D8F1E84468D006FA992 /* FIRAppTest.m in Sources */,
  2471. DEE14D911E84468D006FA992 /* FIRConfigurationTest.m in Sources */,
  2472. DEE14D921E84468D006FA992 /* FIRLoggerTest.m in Sources */,
  2473. DEE14D931E84468D006FA992 /* FIROptionsTest.m in Sources */,
  2474. DEE14D901E84468D006FA992 /* FIRBundleUtilTest.m in Sources */,
  2475. DEE14D941E84468D006FA992 /* FIRTestCase.m in Sources */,
  2476. );
  2477. runOnlyForDeploymentPostprocessing = 0;
  2478. };
  2479. /* End PBXSourcesBuildPhase section */
  2480. /* Begin PBXTargetDependency section */
  2481. 06121EC71EC399D40008D70E /* PBXTargetDependency */ = {
  2482. isa = PBXTargetDependency;
  2483. target = DEB139E01E73506A00AC236D /* Storage_Example */;
  2484. targetProxy = 06121EC61EC399D40008D70E /* PBXContainerItemProxy */;
  2485. };
  2486. 0624F3E71EC0ECFA00E5940D /* PBXTargetDependency */ = {
  2487. isa = PBXTargetDependency;
  2488. target = DE7B8D041E8EF077009EB6DF /* Database_Example */;
  2489. targetProxy = 0624F3E61EC0ECFA00E5940D /* PBXContainerItemProxy */;
  2490. };
  2491. AFD563121EB140E100EA2233 /* PBXTargetDependency */ = {
  2492. isa = PBXTargetDependency;
  2493. target = AFD562E41EB13C6D00EA2233 /* Messaging_Example */;
  2494. targetProxy = AFD563111EB140E100EA2233 /* PBXContainerItemProxy */;
  2495. };
  2496. DE3373981E73776F00881891 /* PBXTargetDependency */ = {
  2497. isa = PBXTargetDependency;
  2498. target = DEB13A0A1E73507E00AC236D /* Storage_Tests */;
  2499. targetProxy = DE3373971E73776F00881891 /* PBXContainerItemProxy */;
  2500. };
  2501. DE6F01BA1E957157004AEE01 /* PBXTargetDependency */ = {
  2502. isa = PBXTargetDependency;
  2503. target = DE9315A61E8738460083EDBF /* Messaging_Tests */;
  2504. targetProxy = DE6F01B91E957157004AEE01 /* PBXContainerItemProxy */;
  2505. };
  2506. DE7B8D1F1E8EF078009EB6DF /* PBXTargetDependency */ = {
  2507. isa = PBXTargetDependency;
  2508. target = DE7B8D041E8EF077009EB6DF /* Database_Example */;
  2509. targetProxy = DE7B8D1E1E8EF078009EB6DF /* PBXContainerItemProxy */;
  2510. };
  2511. DE9314E01E86C6BE0083EDBF /* PBXTargetDependency */ = {
  2512. isa = PBXTargetDependency;
  2513. target = DE9314C51E86C6BD0083EDBF /* Auth_Example */;
  2514. targetProxy = DE9314DF1E86C6BE0083EDBF /* PBXContainerItemProxy */;
  2515. };
  2516. DE9315871E86E9990083EDBF /* PBXTargetDependency */ = {
  2517. isa = PBXTargetDependency;
  2518. target = DE9314DD1E86C6BE0083EDBF /* Auth_Tests */;
  2519. targetProxy = DE9315861E86E9990083EDBF /* PBXContainerItemProxy */;
  2520. };
  2521. DEB13A261E73512500AC236D /* PBXTargetDependency */ = {
  2522. isa = PBXTargetDependency;
  2523. target = DEB139E01E73506A00AC236D /* Storage_Example */;
  2524. targetProxy = DEB13A251E73512500AC236D /* PBXContainerItemProxy */;
  2525. };
  2526. DEB5185A1E9008CB0089C938 /* PBXTargetDependency */ = {
  2527. isa = PBXTargetDependency;
  2528. target = DE7B8D1C1E8EF078009EB6DF /* Database_Tests */;
  2529. targetProxy = DEB518591E9008CB0089C938 /* PBXContainerItemProxy */;
  2530. };
  2531. DEE14D5B1E84464D006FA992 /* PBXTargetDependency */ = {
  2532. isa = PBXTargetDependency;
  2533. target = DEE14D401E84464D006FA992 /* Core_Example */;
  2534. targetProxy = DEE14D5A1E84464D006FA992 /* PBXContainerItemProxy */;
  2535. };
  2536. DEE14E0B1E844FDC006FA992 /* PBXTargetDependency */ = {
  2537. isa = PBXTargetDependency;
  2538. target = DEE14D581E84464D006FA992 /* Core_Tests */;
  2539. targetProxy = DEE14E0A1E844FDC006FA992 /* PBXContainerItemProxy */;
  2540. };
  2541. /* End PBXTargetDependency section */
  2542. /* Begin PBXVariantGroup section */
  2543. AFD563081EB1400900EA2233 /* LaunchScreen.storyboard */ = {
  2544. isa = PBXVariantGroup;
  2545. children = (
  2546. AFD563091EB1400900EA2233 /* Base */,
  2547. );
  2548. name = LaunchScreen.storyboard;
  2549. sourceTree = "<group>";
  2550. };
  2551. AFD5630A1EB1400900EA2233 /* Main.storyboard */ = {
  2552. isa = PBXVariantGroup;
  2553. children = (
  2554. AFD5630B1EB1400900EA2233 /* Base */,
  2555. );
  2556. name = Main.storyboard;
  2557. sourceTree = "<group>";
  2558. };
  2559. DE7B8D2C1E8EF202009EB6DF /* LaunchScreen.storyboard */ = {
  2560. isa = PBXVariantGroup;
  2561. children = (
  2562. DE7B8D2D1E8EF202009EB6DF /* Base */,
  2563. );
  2564. name = LaunchScreen.storyboard;
  2565. sourceTree = "<group>";
  2566. };
  2567. DE7B8D2E1E8EF202009EB6DF /* Main.storyboard */ = {
  2568. isa = PBXVariantGroup;
  2569. children = (
  2570. DE7B8D2F1E8EF202009EB6DF /* Base */,
  2571. );
  2572. name = Main.storyboard;
  2573. sourceTree = "<group>";
  2574. };
  2575. DE7B8D691E8EF202009EB6DF /* InfoPlist.strings */ = {
  2576. isa = PBXVariantGroup;
  2577. children = (
  2578. DE7B8D6A1E8EF202009EB6DF /* en */,
  2579. );
  2580. name = InfoPlist.strings;
  2581. sourceTree = "<group>";
  2582. };
  2583. DE9314ED1E86C6FF0083EDBF /* LaunchScreen.storyboard */ = {
  2584. isa = PBXVariantGroup;
  2585. children = (
  2586. DE9314EE1E86C6FF0083EDBF /* Base */,
  2587. );
  2588. name = LaunchScreen.storyboard;
  2589. sourceTree = "<group>";
  2590. };
  2591. DE9314EF1E86C6FF0083EDBF /* Main.storyboard */ = {
  2592. isa = PBXVariantGroup;
  2593. children = (
  2594. DE9314F01E86C6FF0083EDBF /* Base */,
  2595. );
  2596. name = Main.storyboard;
  2597. sourceTree = "<group>";
  2598. };
  2599. DEB61EB91E7C5DBB00C04B96 /* LaunchScreen.storyboard */ = {
  2600. isa = PBXVariantGroup;
  2601. children = (
  2602. DEB61EBA1E7C5DBB00C04B96 /* Base */,
  2603. );
  2604. name = LaunchScreen.storyboard;
  2605. sourceTree = "<group>";
  2606. };
  2607. DEB61EBB1E7C5DBB00C04B96 /* Main.storyboard */ = {
  2608. isa = PBXVariantGroup;
  2609. children = (
  2610. DEB61EBC1E7C5DBB00C04B96 /* Base */,
  2611. );
  2612. name = Main.storyboard;
  2613. sourceTree = "<group>";
  2614. };
  2615. DEE14D681E844677006FA992 /* LaunchScreen.storyboard */ = {
  2616. isa = PBXVariantGroup;
  2617. children = (
  2618. DEE14D691E844677006FA992 /* Base */,
  2619. );
  2620. name = LaunchScreen.storyboard;
  2621. sourceTree = "<group>";
  2622. };
  2623. DEE14D6A1E844677006FA992 /* Main.storyboard */ = {
  2624. isa = PBXVariantGroup;
  2625. children = (
  2626. DEE14D6B1E844677006FA992 /* Base */,
  2627. );
  2628. name = Main.storyboard;
  2629. sourceTree = "<group>";
  2630. };
  2631. /* End PBXVariantGroup section */
  2632. /* Begin XCBuildConfiguration section */
  2633. 06121EC31EC399C50008D70E /* Debug */ = {
  2634. isa = XCBuildConfiguration;
  2635. baseConfigurationReference = 3673564CCB64DE360C8CB97F /* Pods-Storage_IntegrationTests.debug.xcconfig */;
  2636. buildSettings = {
  2637. BUNDLE_LOADER = "$(TEST_HOST)";
  2638. CLANG_ANALYZER_NONNULL = YES;
  2639. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2640. DEBUG_INFORMATION_FORMAT = dwarf;
  2641. HEADER_SEARCH_PATHS = (
  2642. "$(inherited)",
  2643. "\"${PODS_ROOT}/../../Firebase/Storage/Private\"",
  2644. "\"$(SRCROOT)/../Firebase/Core/Private\"",
  2645. );
  2646. INFOPLIST_FILE = "Storage/Tests/Tests-Info.plist";
  2647. IPHONEOS_DEPLOYMENT_TARGET = 10.2;
  2648. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2649. MTL_ENABLE_DEBUG_INFO = YES;
  2650. PRODUCT_BUNDLE_IDENTIFIER = "com.firebase.mobile.Storage-IntegrationTests";
  2651. PRODUCT_NAME = "$(TARGET_NAME)";
  2652. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Storage_Example.app/Storage_Example";
  2653. };
  2654. name = Debug;
  2655. };
  2656. 06121EC41EC399C50008D70E /* Release */ = {
  2657. isa = XCBuildConfiguration;
  2658. baseConfigurationReference = CA86AD35456DA6130F7DE02C /* Pods-Storage_IntegrationTests.release.xcconfig */;
  2659. buildSettings = {
  2660. BUNDLE_LOADER = "$(TEST_HOST)";
  2661. CLANG_ANALYZER_NONNULL = YES;
  2662. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2663. COPY_PHASE_STRIP = NO;
  2664. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2665. HEADER_SEARCH_PATHS = (
  2666. "$(inherited)",
  2667. "\"${PODS_ROOT}/../../Firebase/Storage/Private\"",
  2668. "\"$(SRCROOT)/../Firebase/Core/Private\"",
  2669. );
  2670. INFOPLIST_FILE = "Storage/Tests/Tests-Info.plist";
  2671. IPHONEOS_DEPLOYMENT_TARGET = 10.2;
  2672. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2673. MTL_ENABLE_DEBUG_INFO = NO;
  2674. PRODUCT_BUNDLE_IDENTIFIER = "com.firebase.mobile.Storage-IntegrationTests";
  2675. PRODUCT_NAME = "$(TARGET_NAME)";
  2676. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Storage_Example.app/Storage_Example";
  2677. };
  2678. name = Release;
  2679. };
  2680. 0624F3E91EC0ECFA00E5940D /* Debug */ = {
  2681. isa = XCBuildConfiguration;
  2682. baseConfigurationReference = EE077EBC5A738E61E06B5FA2 /* Pods-Database_IntegrationTests.debug.xcconfig */;
  2683. buildSettings = {
  2684. BUNDLE_LOADER = "$(TEST_HOST)";
  2685. CLANG_ANALYZER_NONNULL = YES;
  2686. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2687. DEBUG_INFORMATION_FORMAT = dwarf;
  2688. HEADER_SEARCH_PATHS = (
  2689. "$(inherited)",
  2690. "\"${PODS_ROOT}/../../Firebase/Database/Utilities/Tuples\"",
  2691. "\"${PODS_ROOT}/../../Firebase/Database/Core\"",
  2692. "\"${PODS_ROOT}/../../Firebase/Database/Realtime\"",
  2693. "\"${PODS_ROOT}/../../Firebase/Database/third_party/SocketRocket\"",
  2694. "\"${PODS_ROOT}/../../Firebase/Database/Utilities\"",
  2695. "\"${PODS_ROOT}/../../Firebase/Database/Libraries\"",
  2696. "\"${PODS_ROOT}/../../Firebase/Database/Core/Utilities\"",
  2697. "\"${PODS_ROOT}/../../Firebase/Database/Api/Private\"",
  2698. "\"${PODS_ROOT}/../../Firebase/Database/Api\"",
  2699. "\"${PODS_ROOT}/../../Firebase/Database/Snapshot\"",
  2700. "\"${PODS_ROOT}/../../Firebase/Database/Login\"",
  2701. "\"${PODS_ROOT}/../../Firebase/Database/Constants\"",
  2702. "\"${PODS_ROOT}/../../Firebase/Database\"",
  2703. "\"${PODS_ROOT}/../../Firebase/Database/Persistence\"",
  2704. "\"${PODS_ROOT}/../../Firebase/Database/FImmutableSortedDictionary/FImmutableSortedDictionary\"",
  2705. "\"${PODS_ROOT}/../../Firebase/Database/Core/View\"",
  2706. "\"$(SRCROOT)/../Firebase/Core/Private\"",
  2707. );
  2708. INFOPLIST_FILE = "Database/Tests/FirebaseTests-Info.plist";
  2709. IPHONEOS_DEPLOYMENT_TARGET = 10.2;
  2710. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2711. MTL_ENABLE_DEBUG_INFO = YES;
  2712. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Database-IntegrationTests";
  2713. PRODUCT_NAME = "$(TARGET_NAME)";
  2714. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Database_Example.app/Database_Example";
  2715. };
  2716. name = Debug;
  2717. };
  2718. 0624F3EA1EC0ECFA00E5940D /* Release */ = {
  2719. isa = XCBuildConfiguration;
  2720. baseConfigurationReference = BEEA177FFAAB9FA02F898C51 /* Pods-Database_IntegrationTests.release.xcconfig */;
  2721. buildSettings = {
  2722. BUNDLE_LOADER = "$(TEST_HOST)";
  2723. CLANG_ANALYZER_NONNULL = YES;
  2724. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2725. COPY_PHASE_STRIP = NO;
  2726. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2727. HEADER_SEARCH_PATHS = (
  2728. "$(inherited)",
  2729. "\"${PODS_ROOT}/../../Firebase/Database/Utilities/Tuples\"",
  2730. "\"${PODS_ROOT}/../../Firebase/Database/Core\"",
  2731. "\"${PODS_ROOT}/../../Firebase/Database/Realtime\"",
  2732. "\"${PODS_ROOT}/../../Firebase/Database/third_party/SocketRocket\"",
  2733. "\"${PODS_ROOT}/../../Firebase/Database/Utilities\"",
  2734. "\"${PODS_ROOT}/../../Firebase/Database/Libraries\"",
  2735. "\"${PODS_ROOT}/../../Firebase/Database/Core/Utilities\"",
  2736. "\"${PODS_ROOT}/../../Firebase/Database/Api/Private\"",
  2737. "\"${PODS_ROOT}/../../Firebase/Database/Api\"",
  2738. "\"${PODS_ROOT}/../../Firebase/Database/Snapshot\"",
  2739. "\"${PODS_ROOT}/../../Firebase/Database/Login\"",
  2740. "\"${PODS_ROOT}/../../Firebase/Database/Constants\"",
  2741. "\"${PODS_ROOT}/../../Firebase/Database\"",
  2742. "\"${PODS_ROOT}/../../Firebase/Database/Persistence\"",
  2743. "\"${PODS_ROOT}/../../Firebase/Database/FImmutableSortedDictionary/FImmutableSortedDictionary\"",
  2744. "\"${PODS_ROOT}/../../Firebase/Database/Core/View\"",
  2745. "\"$(SRCROOT)/../Firebase/Core/Private\"",
  2746. );
  2747. INFOPLIST_FILE = "Database/Tests/FirebaseTests-Info.plist";
  2748. IPHONEOS_DEPLOYMENT_TARGET = 10.2;
  2749. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2750. MTL_ENABLE_DEBUG_INFO = NO;
  2751. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Database-IntegrationTests";
  2752. PRODUCT_NAME = "$(TARGET_NAME)";
  2753. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Database_Example.app/Database_Example";
  2754. };
  2755. name = Release;
  2756. };
  2757. 6003F5BD195388D20070C39A /* Debug */ = {
  2758. isa = XCBuildConfiguration;
  2759. buildSettings = {
  2760. ALWAYS_SEARCH_USER_PATHS = NO;
  2761. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2762. CLANG_CXX_LIBRARY = "libc++";
  2763. CLANG_ENABLE_MODULES = YES;
  2764. CLANG_ENABLE_OBJC_ARC = YES;
  2765. CLANG_WARN_BOOL_CONVERSION = YES;
  2766. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2767. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2768. CLANG_WARN_EMPTY_BODY = YES;
  2769. CLANG_WARN_ENUM_CONVERSION = YES;
  2770. CLANG_WARN_INFINITE_RECURSION = YES;
  2771. CLANG_WARN_INT_CONVERSION = YES;
  2772. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2773. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2774. CLANG_WARN_UNREACHABLE_CODE = YES;
  2775. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2776. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2777. COPY_PHASE_STRIP = NO;
  2778. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2779. ENABLE_TESTABILITY = YES;
  2780. GCC_C_LANGUAGE_STANDARD = gnu99;
  2781. GCC_DYNAMIC_NO_PIC = NO;
  2782. GCC_NO_COMMON_BLOCKS = YES;
  2783. GCC_OPTIMIZATION_LEVEL = 0;
  2784. GCC_PREPROCESSOR_DEFINITIONS = (
  2785. "DEBUG=1",
  2786. "$(inherited)",
  2787. );
  2788. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  2789. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2790. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2791. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2792. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2793. GCC_WARN_UNUSED_FUNCTION = YES;
  2794. GCC_WARN_UNUSED_VARIABLE = YES;
  2795. IPHONEOS_DEPLOYMENT_TARGET = 8.3;
  2796. ONLY_ACTIVE_ARCH = YES;
  2797. SDKROOT = iphoneos;
  2798. TARGETED_DEVICE_FAMILY = "1,2";
  2799. };
  2800. name = Debug;
  2801. };
  2802. 6003F5BE195388D20070C39A /* Release */ = {
  2803. isa = XCBuildConfiguration;
  2804. buildSettings = {
  2805. ALWAYS_SEARCH_USER_PATHS = NO;
  2806. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2807. CLANG_CXX_LIBRARY = "libc++";
  2808. CLANG_ENABLE_MODULES = YES;
  2809. CLANG_ENABLE_OBJC_ARC = YES;
  2810. CLANG_WARN_BOOL_CONVERSION = YES;
  2811. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2812. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2813. CLANG_WARN_EMPTY_BODY = YES;
  2814. CLANG_WARN_ENUM_CONVERSION = YES;
  2815. CLANG_WARN_INFINITE_RECURSION = YES;
  2816. CLANG_WARN_INT_CONVERSION = YES;
  2817. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2818. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2819. CLANG_WARN_UNREACHABLE_CODE = YES;
  2820. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2821. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2822. COPY_PHASE_STRIP = YES;
  2823. ENABLE_NS_ASSERTIONS = NO;
  2824. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2825. GCC_C_LANGUAGE_STANDARD = gnu99;
  2826. GCC_NO_COMMON_BLOCKS = YES;
  2827. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2828. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2829. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2830. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2831. GCC_WARN_UNUSED_FUNCTION = YES;
  2832. GCC_WARN_UNUSED_VARIABLE = YES;
  2833. IPHONEOS_DEPLOYMENT_TARGET = 8.3;
  2834. SDKROOT = iphoneos;
  2835. TARGETED_DEVICE_FAMILY = "1,2";
  2836. VALIDATE_PRODUCT = YES;
  2837. };
  2838. name = Release;
  2839. };
  2840. AFD562F51EB13C6D00EA2233 /* Debug */ = {
  2841. isa = XCBuildConfiguration;
  2842. baseConfigurationReference = 884B87C50C7C950BC18E9091 /* Pods-Messaging_Example.debug.xcconfig */;
  2843. buildSettings = {
  2844. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2845. CLANG_ANALYZER_NONNULL = YES;
  2846. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2847. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2848. CODE_SIGN_ENTITLEMENTS = Messaging/App/Messaging_Example.entitlements;
  2849. DEBUG_INFORMATION_FORMAT = dwarf;
  2850. DEVELOPMENT_TEAM = "";
  2851. INFOPLIST_FILE = "Messaging/App/Messaging-Info.plist";
  2852. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2853. MTL_ENABLE_DEBUG_INFO = YES;
  2854. PRODUCT_BUNDLE_IDENTIFIER = com.google.FirebaseMessagingSample.dev;
  2855. PRODUCT_NAME = "$(TARGET_NAME)";
  2856. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  2857. SWIFT_OBJC_BRIDGING_HEADER = "Messaging/Messaging_Example-Bridging-Header.h";
  2858. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2859. SWIFT_VERSION = 3.0;
  2860. };
  2861. name = Debug;
  2862. };
  2863. AFD562F61EB13C6D00EA2233 /* Release */ = {
  2864. isa = XCBuildConfiguration;
  2865. baseConfigurationReference = A6903B88963F6FD1857889E6 /* Pods-Messaging_Example.release.xcconfig */;
  2866. buildSettings = {
  2867. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2868. CLANG_ANALYZER_NONNULL = YES;
  2869. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2870. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2871. CODE_SIGN_ENTITLEMENTS = Messaging/App/Messaging_Example.entitlements;
  2872. COPY_PHASE_STRIP = NO;
  2873. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2874. DEVELOPMENT_TEAM = "";
  2875. INFOPLIST_FILE = "Messaging/App/Messaging-Info.plist";
  2876. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2877. MTL_ENABLE_DEBUG_INFO = NO;
  2878. PRODUCT_BUNDLE_IDENTIFIER = com.google.FirebaseMessagingSample.dev;
  2879. PRODUCT_NAME = "$(TARGET_NAME)";
  2880. SWIFT_OBJC_BRIDGING_HEADER = "Messaging/Messaging_Example-Bridging-Header.h";
  2881. SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
  2882. SWIFT_VERSION = 3.0;
  2883. };
  2884. name = Release;
  2885. };
  2886. DE33738B1E73773400881891 /* Debug */ = {
  2887. isa = XCBuildConfiguration;
  2888. buildSettings = {
  2889. DEVELOPMENT_TEAM = EQHXZ8M8AV;
  2890. PRODUCT_NAME = "$(TARGET_NAME)";
  2891. };
  2892. name = Debug;
  2893. };
  2894. DE33738C1E73773400881891 /* Release */ = {
  2895. isa = XCBuildConfiguration;
  2896. buildSettings = {
  2897. DEVELOPMENT_TEAM = EQHXZ8M8AV;
  2898. PRODUCT_NAME = "$(TARGET_NAME)";
  2899. };
  2900. name = Release;
  2901. };
  2902. DE7B8D241E8EF078009EB6DF /* Debug */ = {
  2903. isa = XCBuildConfiguration;
  2904. baseConfigurationReference = 7727BC17692B98E2B7D0EA7A /* Pods-Database_Example.debug.xcconfig */;
  2905. buildSettings = {
  2906. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2907. CLANG_ANALYZER_NONNULL = YES;
  2908. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2909. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2910. DEBUG_INFORMATION_FORMAT = dwarf;
  2911. DEVELOPMENT_TEAM = "";
  2912. INFOPLIST_FILE = "$(SRCROOT)/Database/App/Database-Info.plist";
  2913. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2914. MTL_ENABLE_DEBUG_INFO = YES;
  2915. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Database-Example";
  2916. PRODUCT_NAME = "$(TARGET_NAME)";
  2917. };
  2918. name = Debug;
  2919. };
  2920. DE7B8D251E8EF078009EB6DF /* Release */ = {
  2921. isa = XCBuildConfiguration;
  2922. baseConfigurationReference = EEA5C6257533CD27D37A14FC /* Pods-Database_Example.release.xcconfig */;
  2923. buildSettings = {
  2924. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2925. CLANG_ANALYZER_NONNULL = YES;
  2926. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2927. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2928. COPY_PHASE_STRIP = NO;
  2929. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2930. DEVELOPMENT_TEAM = "";
  2931. INFOPLIST_FILE = "$(SRCROOT)/Database/App/Database-Info.plist";
  2932. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2933. MTL_ENABLE_DEBUG_INFO = NO;
  2934. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Database-Example";
  2935. PRODUCT_NAME = "$(TARGET_NAME)";
  2936. };
  2937. name = Release;
  2938. };
  2939. DE7B8D261E8EF078009EB6DF /* Debug */ = {
  2940. isa = XCBuildConfiguration;
  2941. baseConfigurationReference = F0A9002767E1A9D63CEECFF6 /* Pods-Database_Tests.debug.xcconfig */;
  2942. buildSettings = {
  2943. BUNDLE_LOADER = "$(TEST_HOST)";
  2944. CLANG_ANALYZER_NONNULL = YES;
  2945. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2946. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2947. DEBUG_INFORMATION_FORMAT = dwarf;
  2948. DEVELOPMENT_TEAM = "";
  2949. HEADER_SEARCH_PATHS = (
  2950. "$(inherited)",
  2951. "\"${PODS_ROOT}/../../Firebase/Database/Utilities/Tuples\"",
  2952. "\"${PODS_ROOT}/../../Firebase/Database/Core\"",
  2953. "\"${PODS_ROOT}/../../Firebase/Database/Realtime\"",
  2954. "\"${PODS_ROOT}/../../Firebase/Database/third_party/SocketRocket\"",
  2955. "\"${PODS_ROOT}/../../Firebase/Database/Utilities\"",
  2956. "\"${PODS_ROOT}/../../Firebase/Database/Libraries\"",
  2957. "\"${PODS_ROOT}/../../Firebase/Database/Core/Utilities\"",
  2958. "\"${PODS_ROOT}/../../Firebase/Database/Api/Private\"",
  2959. "\"${PODS_ROOT}/../../Firebase/Database/Api\"",
  2960. "\"${PODS_ROOT}/../../Firebase/Database/Snapshot\"",
  2961. "\"${PODS_ROOT}/../../Firebase/Database/Login\"",
  2962. "\"${PODS_ROOT}/../../Firebase/Database/Constants\"",
  2963. "\"${PODS_ROOT}/../../Firebase/Database\"",
  2964. "\"${PODS_ROOT}/../../Firebase/Database/Persistence\"",
  2965. "\"${PODS_ROOT}/../../Firebase/Database/FImmutableSortedDictionary/FImmutableSortedDictionary\"",
  2966. "\"${PODS_ROOT}/../../Firebase/Database/Core/View\"",
  2967. "\"$(SRCROOT)/../Firebase/Core/Private\"",
  2968. );
  2969. INFOPLIST_FILE = "Database/Tests/FirebaseTests-Info.plist";
  2970. IPHONEOS_DEPLOYMENT_TARGET = 10.2;
  2971. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  2972. MTL_ENABLE_DEBUG_INFO = YES;
  2973. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Database-ExampleTests";
  2974. PRODUCT_NAME = "$(TARGET_NAME)";
  2975. SDKROOT = iphoneos;
  2976. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Database_Example.app/Database_Example";
  2977. };
  2978. name = Debug;
  2979. };
  2980. DE7B8D271E8EF078009EB6DF /* Release */ = {
  2981. isa = XCBuildConfiguration;
  2982. baseConfigurationReference = 4A8B7AE7C053949F6BBBDD3E /* Pods-Database_Tests.release.xcconfig */;
  2983. buildSettings = {
  2984. BUNDLE_LOADER = "$(TEST_HOST)";
  2985. CLANG_ANALYZER_NONNULL = YES;
  2986. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2987. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2988. COPY_PHASE_STRIP = NO;
  2989. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2990. DEVELOPMENT_TEAM = "";
  2991. HEADER_SEARCH_PATHS = (
  2992. "$(inherited)",
  2993. "\"${PODS_ROOT}/../../Firebase/Database/Utilities/Tuples\"",
  2994. "\"${PODS_ROOT}/../../Firebase/Database/Core\"",
  2995. "\"${PODS_ROOT}/../../Firebase/Database/Realtime\"",
  2996. "\"${PODS_ROOT}/../../Firebase/Database/third_party/SocketRocket\"",
  2997. "\"${PODS_ROOT}/../../Firebase/Database/Utilities\"",
  2998. "\"${PODS_ROOT}/../../Firebase/Database/Libraries\"",
  2999. "\"${PODS_ROOT}/../../Firebase/Database/Core/Utilities\"",
  3000. "\"${PODS_ROOT}/../../Firebase/Database/Api/Private\"",
  3001. "\"${PODS_ROOT}/../../Firebase/Database/Api\"",
  3002. "\"${PODS_ROOT}/../../Firebase/Database/Snapshot\"",
  3003. "\"${PODS_ROOT}/../../Firebase/Database/Login\"",
  3004. "\"${PODS_ROOT}/../../Firebase/Database/Constants\"",
  3005. "\"${PODS_ROOT}/../../Firebase/Database\"",
  3006. "\"${PODS_ROOT}/../../Firebase/Database/Persistence\"",
  3007. "\"${PODS_ROOT}/../../Firebase/Database/FImmutableSortedDictionary/FImmutableSortedDictionary\"",
  3008. "\"${PODS_ROOT}/../../Firebase/Database/Core/View\"",
  3009. "\"$(SRCROOT)/../Firebase/Core/Private\"",
  3010. );
  3011. INFOPLIST_FILE = "Database/Tests/FirebaseTests-Info.plist";
  3012. IPHONEOS_DEPLOYMENT_TARGET = 10.2;
  3013. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3014. MTL_ENABLE_DEBUG_INFO = NO;
  3015. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Database-ExampleTests";
  3016. PRODUCT_NAME = "$(TARGET_NAME)";
  3017. SDKROOT = iphoneos;
  3018. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Database_Example.app/Database_Example";
  3019. };
  3020. name = Release;
  3021. };
  3022. DE9314E51E86C6BE0083EDBF /* Debug */ = {
  3023. isa = XCBuildConfiguration;
  3024. baseConfigurationReference = C45949C3AB12F54D27702387 /* Pods-Auth_Example.debug.xcconfig */;
  3025. buildSettings = {
  3026. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3027. CLANG_ANALYZER_NONNULL = YES;
  3028. CLANG_ENABLE_MODULES = YES;
  3029. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3030. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3031. DEBUG_INFORMATION_FORMAT = dwarf;
  3032. DEVELOPMENT_TEAM = "";
  3033. INFOPLIST_FILE = "$(SRCROOT)/Auth/App/Auth-Info.plist";
  3034. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  3035. MTL_ENABLE_DEBUG_INFO = YES;
  3036. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Auth-Example";
  3037. PRODUCT_NAME = "$(TARGET_NAME)";
  3038. PROVISIONING_PROFILE_SPECIFIER = "";
  3039. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3040. SWIFT_VERSION = 3.0;
  3041. };
  3042. name = Debug;
  3043. };
  3044. DE9314E61E86C6BE0083EDBF /* Release */ = {
  3045. isa = XCBuildConfiguration;
  3046. baseConfigurationReference = 2F002D4E7FA7F07A830CCFDA /* Pods-Auth_Example.release.xcconfig */;
  3047. buildSettings = {
  3048. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3049. CLANG_ANALYZER_NONNULL = YES;
  3050. CLANG_ENABLE_MODULES = YES;
  3051. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3052. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3053. COPY_PHASE_STRIP = NO;
  3054. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3055. DEVELOPMENT_TEAM = "";
  3056. INFOPLIST_FILE = "$(SRCROOT)/Auth/App/Auth-Info.plist";
  3057. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  3058. MTL_ENABLE_DEBUG_INFO = NO;
  3059. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Auth-Example";
  3060. PRODUCT_NAME = "$(TARGET_NAME)";
  3061. PROVISIONING_PROFILE_SPECIFIER = "";
  3062. SWIFT_VERSION = 3.0;
  3063. };
  3064. name = Release;
  3065. };
  3066. DE9314E71E86C6BE0083EDBF /* Debug */ = {
  3067. isa = XCBuildConfiguration;
  3068. baseConfigurationReference = 18B5255FF5BEBF6F72C40F39 /* Pods-Auth_Tests.debug.xcconfig */;
  3069. buildSettings = {
  3070. BUNDLE_LOADER = "$(TEST_HOST)";
  3071. CLANG_ANALYZER_NONNULL = YES;
  3072. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3073. DEBUG_INFORMATION_FORMAT = dwarf;
  3074. DEVELOPMENT_TEAM = "";
  3075. HEADER_SEARCH_PATHS = (
  3076. "\"${PODS_ROOT}/../../Firebase/Auth/Source/RPCs\"",
  3077. "$(inherited)",
  3078. "\"${PODS_ROOT}/../../Firebase/Auth/Source/Private\"",
  3079. "\"${PODS_ROOT}/../../Firebase/Auth/Source/AuthProviders\"",
  3080. "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
  3081. );
  3082. INFOPLIST_FILE = "Auth/Tests/Tests-Info.plist";
  3083. IPHONEOS_DEPLOYMENT_TARGET = 10.2;
  3084. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3085. MTL_ENABLE_DEBUG_INFO = YES;
  3086. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Auth-ExampleTests";
  3087. PRODUCT_NAME = "$(TARGET_NAME)";
  3088. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Auth_Example.app/Auth_Example";
  3089. };
  3090. name = Debug;
  3091. };
  3092. DE9314E81E86C6BE0083EDBF /* Release */ = {
  3093. isa = XCBuildConfiguration;
  3094. baseConfigurationReference = 60FCE4043D8FE42648646A7F /* Pods-Auth_Tests.release.xcconfig */;
  3095. buildSettings = {
  3096. BUNDLE_LOADER = "$(TEST_HOST)";
  3097. CLANG_ANALYZER_NONNULL = YES;
  3098. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3099. COPY_PHASE_STRIP = NO;
  3100. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3101. DEVELOPMENT_TEAM = "";
  3102. HEADER_SEARCH_PATHS = (
  3103. "\"${PODS_ROOT}/../../Firebase/Auth/Source/RPCs\"",
  3104. "$(inherited)",
  3105. "\"${PODS_ROOT}/../../Firebase/Auth/Source/Private\"",
  3106. "\"${PODS_ROOT}/../../Firebase/Auth/Source/AuthProviders\"",
  3107. "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
  3108. );
  3109. INFOPLIST_FILE = "Auth/Tests/Tests-Info.plist";
  3110. IPHONEOS_DEPLOYMENT_TARGET = 10.2;
  3111. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3112. MTL_ENABLE_DEBUG_INFO = NO;
  3113. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Auth-ExampleTests";
  3114. PRODUCT_NAME = "$(TARGET_NAME)";
  3115. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Auth_Example.app/Auth_Example";
  3116. };
  3117. name = Release;
  3118. };
  3119. DE9315B01E8738460083EDBF /* Debug */ = {
  3120. isa = XCBuildConfiguration;
  3121. baseConfigurationReference = 6E974DE29EBB9602E723757E /* Pods-Messaging_Tests.debug.xcconfig */;
  3122. buildSettings = {
  3123. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3124. BUNDLE_LOADER = "$(TEST_HOST)";
  3125. CLANG_ANALYZER_NONNULL = YES;
  3126. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3127. DEBUG_INFORMATION_FORMAT = dwarf;
  3128. DEVELOPMENT_TEAM = "";
  3129. GCC_PREPROCESSOR_DEFINITIONS = (
  3130. "$(inherited)",
  3131. "COCOAPODS=1",
  3132. "GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1",
  3133. );
  3134. HEADER_SEARCH_PATHS = (
  3135. "$(inherited)",
  3136. "\"${PODS_ROOT}/Headers/Public\"",
  3137. "\"${PODS_ROOT}/Headers/Public/FirebaseAnalytics\"",
  3138. "\"${PODS_ROOT}/../../Firebase/Messaging\"",
  3139. "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
  3140. );
  3141. INFOPLIST_FILE = Messaging/Tests/Info.plist;
  3142. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3143. MTL_ENABLE_DEBUG_INFO = YES;
  3144. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Messaging-ExampleTests";
  3145. PRODUCT_NAME = "$(TARGET_NAME)";
  3146. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Messaging_Example.app/Messaging_Example";
  3147. };
  3148. name = Debug;
  3149. };
  3150. DE9315B11E8738460083EDBF /* Release */ = {
  3151. isa = XCBuildConfiguration;
  3152. baseConfigurationReference = 6D2E4A9396D707C5DEF9B74B /* Pods-Messaging_Tests.release.xcconfig */;
  3153. buildSettings = {
  3154. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3155. BUNDLE_LOADER = "$(TEST_HOST)";
  3156. CLANG_ANALYZER_NONNULL = YES;
  3157. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3158. COPY_PHASE_STRIP = NO;
  3159. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3160. DEVELOPMENT_TEAM = "";
  3161. GCC_PREPROCESSOR_DEFINITIONS = (
  3162. "$(inherited)",
  3163. "COCOAPODS=1",
  3164. "GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1",
  3165. );
  3166. HEADER_SEARCH_PATHS = (
  3167. "$(inherited)",
  3168. "\"${PODS_ROOT}/Headers/Public\"",
  3169. "\"${PODS_ROOT}/Headers/Public/FirebaseAnalytics\"",
  3170. "\"${PODS_ROOT}/../../Firebase/Messaging\"",
  3171. "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
  3172. );
  3173. INFOPLIST_FILE = Messaging/Tests/Info.plist;
  3174. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3175. MTL_ENABLE_DEBUG_INFO = NO;
  3176. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Messaging-ExampleTests";
  3177. PRODUCT_NAME = "$(TARGET_NAME)";
  3178. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Messaging_Example.app/Messaging_Example";
  3179. };
  3180. name = Release;
  3181. };
  3182. DEB13A061E73506A00AC236D /* Debug */ = {
  3183. isa = XCBuildConfiguration;
  3184. baseConfigurationReference = 6A0FCB2A37144B3C05E519F6 /* Pods-Storage_Example.debug.xcconfig */;
  3185. buildSettings = {
  3186. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3187. DEVELOPMENT_TEAM = "";
  3188. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  3189. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  3190. GCC_PREFIX_HEADER = "";
  3191. HEADER_SEARCH_PATHS = (
  3192. "\"${PODS_ROOT}/../../Firebase/Storage/Private\"",
  3193. "$(inherited)",
  3194. );
  3195. INFOPLIST_FILE = "$(SRCROOT)/Storage/App/Storage-Info.plist";
  3196. MODULE_NAME = ExampleApp;
  3197. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  3198. PRODUCT_NAME = "$(TARGET_NAME)";
  3199. WRAPPER_EXTENSION = app;
  3200. };
  3201. name = Debug;
  3202. };
  3203. DEB13A071E73506A00AC236D /* Release */ = {
  3204. isa = XCBuildConfiguration;
  3205. baseConfigurationReference = 6BAD1CF3DDEDDD76EC87052D /* Pods-Storage_Example.release.xcconfig */;
  3206. buildSettings = {
  3207. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3208. DEVELOPMENT_TEAM = "";
  3209. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  3210. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  3211. GCC_PREFIX_HEADER = "";
  3212. HEADER_SEARCH_PATHS = (
  3213. "\"${PODS_ROOT}/../../Firebase/Storage/Private\"",
  3214. "$(inherited)",
  3215. );
  3216. INFOPLIST_FILE = "$(SRCROOT)/Storage/App/Storage-Info.plist";
  3217. MODULE_NAME = ExampleApp;
  3218. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  3219. PRODUCT_NAME = "$(TARGET_NAME)";
  3220. WRAPPER_EXTENSION = app;
  3221. };
  3222. name = Release;
  3223. };
  3224. DEB13A211E73507E00AC236D /* Debug */ = {
  3225. isa = XCBuildConfiguration;
  3226. baseConfigurationReference = 3E84D28D93B8196D6A483F15 /* Pods-Storage_Tests.debug.xcconfig */;
  3227. buildSettings = {
  3228. BUNDLE_LOADER = "$(TEST_HOST)";
  3229. DEVELOPMENT_TEAM = "";
  3230. FRAMEWORK_SEARCH_PATHS = (
  3231. "$(SDKROOT)/Developer/Library/Frameworks",
  3232. "$(inherited)",
  3233. "$(DEVELOPER_FRAMEWORKS_DIR)",
  3234. );
  3235. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  3236. GCC_PREFIX_HEADER = "";
  3237. GCC_PREPROCESSOR_DEFINITIONS = (
  3238. "DEBUG=1",
  3239. "$(inherited)",
  3240. );
  3241. HEADER_SEARCH_PATHS = (
  3242. "$(inherited)",
  3243. "\"${PODS_ROOT}/../../Firebase/Storage/Private\"",
  3244. "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
  3245. );
  3246. INFOPLIST_FILE = "Storage/Tests/Tests-Info.plist";
  3247. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  3248. PRODUCT_NAME = "$(TARGET_NAME)";
  3249. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Storage_Example.app/Storage_Example";
  3250. WRAPPER_EXTENSION = xctest;
  3251. };
  3252. name = Debug;
  3253. };
  3254. DEB13A221E73507E00AC236D /* Release */ = {
  3255. isa = XCBuildConfiguration;
  3256. baseConfigurationReference = D58064F9C4DE303997B89D2E /* Pods-Storage_Tests.release.xcconfig */;
  3257. buildSettings = {
  3258. BUNDLE_LOADER = "$(TEST_HOST)";
  3259. DEVELOPMENT_TEAM = "";
  3260. FRAMEWORK_SEARCH_PATHS = (
  3261. "$(SDKROOT)/Developer/Library/Frameworks",
  3262. "$(inherited)",
  3263. "$(DEVELOPER_FRAMEWORKS_DIR)",
  3264. );
  3265. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  3266. GCC_PREFIX_HEADER = "";
  3267. HEADER_SEARCH_PATHS = (
  3268. "$(inherited)",
  3269. "\"${PODS_ROOT}/../../Firebase/Storage/Private\"",
  3270. "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
  3271. );
  3272. INFOPLIST_FILE = "Storage/Tests/Tests-Info.plist";
  3273. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  3274. PRODUCT_NAME = "$(TARGET_NAME)";
  3275. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Storage_Example.app/Storage_Example";
  3276. WRAPPER_EXTENSION = xctest;
  3277. };
  3278. name = Release;
  3279. };
  3280. DEE14D601E84464D006FA992 /* Debug */ = {
  3281. isa = XCBuildConfiguration;
  3282. baseConfigurationReference = FF57915145DB00008E7C56A8 /* Pods-Core_Example.debug.xcconfig */;
  3283. buildSettings = {
  3284. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3285. CLANG_ANALYZER_NONNULL = YES;
  3286. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3287. DEBUG_INFORMATION_FORMAT = dwarf;
  3288. DEVELOPMENT_TEAM = "";
  3289. INFOPLIST_FILE = "$(SRCROOT)/Core/App/Core-Info.plist";
  3290. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  3291. MTL_ENABLE_DEBUG_INFO = YES;
  3292. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Core-Example";
  3293. PRODUCT_NAME = "$(TARGET_NAME)";
  3294. };
  3295. name = Debug;
  3296. };
  3297. DEE14D611E84464D006FA992 /* Release */ = {
  3298. isa = XCBuildConfiguration;
  3299. baseConfigurationReference = 8F77C04C2E764FBB0F6C05C6 /* Pods-Core_Example.release.xcconfig */;
  3300. buildSettings = {
  3301. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3302. CLANG_ANALYZER_NONNULL = YES;
  3303. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3304. COPY_PHASE_STRIP = NO;
  3305. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3306. DEVELOPMENT_TEAM = "";
  3307. INFOPLIST_FILE = "$(SRCROOT)/Core/App/Core-Info.plist";
  3308. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  3309. MTL_ENABLE_DEBUG_INFO = NO;
  3310. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Core-Example";
  3311. PRODUCT_NAME = "$(TARGET_NAME)";
  3312. };
  3313. name = Release;
  3314. };
  3315. DEE14D621E84464D006FA992 /* Debug */ = {
  3316. isa = XCBuildConfiguration;
  3317. baseConfigurationReference = 8E32E359BE29C3100CF51FC4 /* Pods-Core_Tests.debug.xcconfig */;
  3318. buildSettings = {
  3319. BUNDLE_LOADER = "$(TEST_HOST)";
  3320. CLANG_ANALYZER_NONNULL = YES;
  3321. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3322. DEBUG_INFORMATION_FORMAT = dwarf;
  3323. DEVELOPMENT_TEAM = "";
  3324. FRAMEWORK_SEARCH_PATHS = (
  3325. "$(inherited)",
  3326. "$(PROJECT_DIR)/build/Debug-iphoneos/FirebaseCore",
  3327. );
  3328. HEADER_SEARCH_PATHS = (
  3329. "$(inherited)",
  3330. "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
  3331. );
  3332. INFOPLIST_FILE = "Core/Tests/Tests-Info.plist";
  3333. IPHONEOS_DEPLOYMENT_TARGET = 10.2;
  3334. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3335. MTL_ENABLE_DEBUG_INFO = YES;
  3336. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Core-ExampleTests";
  3337. PRODUCT_NAME = "$(TARGET_NAME)";
  3338. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Core_Example.app/Core_Example";
  3339. };
  3340. name = Debug;
  3341. };
  3342. DEE14D631E84464D006FA992 /* Release */ = {
  3343. isa = XCBuildConfiguration;
  3344. baseConfigurationReference = 0B1BDA534E1F49931795B5E6 /* Pods-Core_Tests.release.xcconfig */;
  3345. buildSettings = {
  3346. BUNDLE_LOADER = "$(TEST_HOST)";
  3347. CLANG_ANALYZER_NONNULL = YES;
  3348. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3349. COPY_PHASE_STRIP = NO;
  3350. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3351. DEVELOPMENT_TEAM = "";
  3352. FRAMEWORK_SEARCH_PATHS = (
  3353. "$(inherited)",
  3354. "$(PROJECT_DIR)/build/Debug-iphoneos/FirebaseCore",
  3355. );
  3356. HEADER_SEARCH_PATHS = (
  3357. "$(inherited)",
  3358. "\"${PODS_ROOT}/../../Firebase/Core/Private\"",
  3359. );
  3360. INFOPLIST_FILE = "Core/Tests/Tests-Info.plist";
  3361. IPHONEOS_DEPLOYMENT_TARGET = 10.2;
  3362. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  3363. MTL_ENABLE_DEBUG_INFO = NO;
  3364. PRODUCT_BUNDLE_IDENTIFIER = "com.google.Core-ExampleTests";
  3365. PRODUCT_NAME = "$(TARGET_NAME)";
  3366. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Core_Example.app/Core_Example";
  3367. };
  3368. name = Release;
  3369. };
  3370. /* End XCBuildConfiguration section */
  3371. /* Begin XCConfigurationList section */
  3372. 06121EC51EC399C50008D70E /* Build configuration list for PBXNativeTarget "Storage_IntegrationTests" */ = {
  3373. isa = XCConfigurationList;
  3374. buildConfigurations = (
  3375. 06121EC31EC399C50008D70E /* Debug */,
  3376. 06121EC41EC399C50008D70E /* Release */,
  3377. );
  3378. defaultConfigurationIsVisible = 0;
  3379. defaultConfigurationName = Release;
  3380. };
  3381. 0624F3E81EC0ECFA00E5940D /* Build configuration list for PBXNativeTarget "Database_IntegrationTests" */ = {
  3382. isa = XCConfigurationList;
  3383. buildConfigurations = (
  3384. 0624F3E91EC0ECFA00E5940D /* Debug */,
  3385. 0624F3EA1EC0ECFA00E5940D /* Release */,
  3386. );
  3387. defaultConfigurationIsVisible = 0;
  3388. defaultConfigurationName = Release;
  3389. };
  3390. 6003F585195388D10070C39A /* Build configuration list for PBXProject "Firebase" */ = {
  3391. isa = XCConfigurationList;
  3392. buildConfigurations = (
  3393. 6003F5BD195388D20070C39A /* Debug */,
  3394. 6003F5BE195388D20070C39A /* Release */,
  3395. );
  3396. defaultConfigurationIsVisible = 0;
  3397. defaultConfigurationName = Release;
  3398. };
  3399. AFD562F41EB13C6D00EA2233 /* Build configuration list for PBXNativeTarget "Messaging_Example" */ = {
  3400. isa = XCConfigurationList;
  3401. buildConfigurations = (
  3402. AFD562F51EB13C6D00EA2233 /* Debug */,
  3403. AFD562F61EB13C6D00EA2233 /* Release */,
  3404. );
  3405. defaultConfigurationIsVisible = 0;
  3406. defaultConfigurationName = Release;
  3407. };
  3408. DE33738A1E73773400881891 /* Build configuration list for PBXAggregateTarget "AllUnitTests" */ = {
  3409. isa = XCConfigurationList;
  3410. buildConfigurations = (
  3411. DE33738B1E73773400881891 /* Debug */,
  3412. DE33738C1E73773400881891 /* Release */,
  3413. );
  3414. defaultConfigurationIsVisible = 0;
  3415. defaultConfigurationName = Release;
  3416. };
  3417. DE7B8D281E8EF078009EB6DF /* Build configuration list for PBXNativeTarget "Database_Example" */ = {
  3418. isa = XCConfigurationList;
  3419. buildConfigurations = (
  3420. DE7B8D241E8EF078009EB6DF /* Debug */,
  3421. DE7B8D251E8EF078009EB6DF /* Release */,
  3422. );
  3423. defaultConfigurationIsVisible = 0;
  3424. defaultConfigurationName = Release;
  3425. };
  3426. DE7B8D291E8EF078009EB6DF /* Build configuration list for PBXNativeTarget "Database_Tests" */ = {
  3427. isa = XCConfigurationList;
  3428. buildConfigurations = (
  3429. DE7B8D261E8EF078009EB6DF /* Debug */,
  3430. DE7B8D271E8EF078009EB6DF /* Release */,
  3431. );
  3432. defaultConfigurationIsVisible = 0;
  3433. defaultConfigurationName = Release;
  3434. };
  3435. DE9314E91E86C6BE0083EDBF /* Build configuration list for PBXNativeTarget "Auth_Example" */ = {
  3436. isa = XCConfigurationList;
  3437. buildConfigurations = (
  3438. DE9314E51E86C6BE0083EDBF /* Debug */,
  3439. DE9314E61E86C6BE0083EDBF /* Release */,
  3440. );
  3441. defaultConfigurationIsVisible = 0;
  3442. defaultConfigurationName = Release;
  3443. };
  3444. DE9314EA1E86C6BE0083EDBF /* Build configuration list for PBXNativeTarget "Auth_Tests" */ = {
  3445. isa = XCConfigurationList;
  3446. buildConfigurations = (
  3447. DE9314E71E86C6BE0083EDBF /* Debug */,
  3448. DE9314E81E86C6BE0083EDBF /* Release */,
  3449. );
  3450. defaultConfigurationIsVisible = 0;
  3451. defaultConfigurationName = Release;
  3452. };
  3453. DE9315B31E8738460083EDBF /* Build configuration list for PBXNativeTarget "Messaging_Tests" */ = {
  3454. isa = XCConfigurationList;
  3455. buildConfigurations = (
  3456. DE9315B01E8738460083EDBF /* Debug */,
  3457. DE9315B11E8738460083EDBF /* Release */,
  3458. );
  3459. defaultConfigurationIsVisible = 0;
  3460. defaultConfigurationName = Release;
  3461. };
  3462. DEB13A051E73506A00AC236D /* Build configuration list for PBXNativeTarget "Storage_Example" */ = {
  3463. isa = XCConfigurationList;
  3464. buildConfigurations = (
  3465. DEB13A061E73506A00AC236D /* Debug */,
  3466. DEB13A071E73506A00AC236D /* Release */,
  3467. );
  3468. defaultConfigurationIsVisible = 0;
  3469. defaultConfigurationName = Release;
  3470. };
  3471. DEB13A201E73507E00AC236D /* Build configuration list for PBXNativeTarget "Storage_Tests" */ = {
  3472. isa = XCConfigurationList;
  3473. buildConfigurations = (
  3474. DEB13A211E73507E00AC236D /* Debug */,
  3475. DEB13A221E73507E00AC236D /* Release */,
  3476. );
  3477. defaultConfigurationIsVisible = 0;
  3478. defaultConfigurationName = Release;
  3479. };
  3480. DEE14D641E84464D006FA992 /* Build configuration list for PBXNativeTarget "Core_Example" */ = {
  3481. isa = XCConfigurationList;
  3482. buildConfigurations = (
  3483. DEE14D601E84464D006FA992 /* Debug */,
  3484. DEE14D611E84464D006FA992 /* Release */,
  3485. );
  3486. defaultConfigurationIsVisible = 0;
  3487. defaultConfigurationName = Release;
  3488. };
  3489. DEE14D651E84464D006FA992 /* Build configuration list for PBXNativeTarget "Core_Tests" */ = {
  3490. isa = XCConfigurationList;
  3491. buildConfigurations = (
  3492. DEE14D621E84464D006FA992 /* Debug */,
  3493. DEE14D631E84464D006FA992 /* Release */,
  3494. );
  3495. defaultConfigurationIsVisible = 0;
  3496. defaultConfigurationName = Release;
  3497. };
  3498. /* End XCConfigurationList section */
  3499. };
  3500. rootObject = 6003F582195388D10070C39A /* Project object */;
  3501. }