123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
- 00C302E51ABCBA2D00DB3ED1 = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 ; };
- 00C302E71ABCBA2D00DB3ED1 = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 ; };
- 00C302E81ABCBA2D00DB3ED1 = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 ; };
- 00C302E91ABCBA2D00DB3ED1 = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 ; };
- 00C302EA1ABCBA2D00DB3ED1 = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 ; };
- 00E356F31AD99517003FC87E = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E ; };
- 064AAB747A504B2CA21E770E = {isa = PBXBuildFile; fileRef = 3AC150135E8F432FBB6D02E0 ; };
- 074C882D9E92487D852CD7CA = {isa = PBXBuildFile; fileRef = B4E095F052894127968450A7 ; };
- 08BE8DA1067648B1B25A586C = {isa = PBXBuildFile; fileRef = 25574F59398D4FB9A5FDA71B ; };
- 0D29BDFF02B5412493CE913E = {isa = PBXBuildFile; fileRef = 7E8E0C25D99849418B009946 ; };
- 133E29F31AD74F7200F7D852 = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 ; };
- 139105C61AF99C1200B5F7CC = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC ; };
- 139FDEF61B0652A700C62182 = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 ; };
- 13B07FBC1A68108700A75B9A = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A ; };
- 13B07FBD1A68108700A75B9A = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A ; };
- 13B07FBF1A68108700A75B9A = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A ; };
- 13B07FC11A68108700A75B9A = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A ; };
- 140ED2AC1D01E1AD002B40FF = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 ; };
- 146834051AC3E58100842450 = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 ; };
- 1D5CC392DC7642E49C201C62 = {isa = PBXBuildFile; fileRef = 2C2BF6DD297C46ABA9839B59 ; };
- 216866CE9A6440C988C7BB0E = {isa = PBXBuildFile; fileRef = 588A1390BBC94E0C9FA8D708 ; };
- 291B7AD588E7494996E9146E = {isa = PBXBuildFile; fileRef = A3E3E7CA3156458BBAEAFF93 ; };
- 2D02E4BC1E0B4A80006451C7 = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A ; };
- 2D02E4BD1E0B4A84006451C7 = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A ; };
- 2D02E4BF1E0B4AB3006451C7 = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A ; };
- 2D02E4C21E0B4AEC006451C7 = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 ; };
- 2D02E4C31E0B4AEC006451C7 = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A ; };
- 2D02E4C41E0B4AEC006451C7 = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A ; };
- 2D02E4C51E0B4AEC006451C7 = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A ; };
- 2D02E4C61E0B4AEC006451C7 = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A ; };
- 2D02E4C71E0B4AEC006451C7 = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A ; };
- 2D02E4C81E0B4AEC006451C7 = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A ; };
- 2D16E6881FA4F8E400B85C8A = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A ; };
- 2DCD954D1E0B4F2C00145EB5 = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E ; };
- 2DF0FFEE2056DD460020B375 = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A ; };
- 3188370F8A9A4764A16408E6 = {isa = PBXBuildFile; fileRef = E91F2EE193E94E48A1C7C8C5 ; };
- 44E25301847245E399C66C16 = {isa = PBXBuildFile; fileRef = BE4869D8725B423EAA362164 ; };
- 4D0C821FC8F742E19537188A = {isa = PBXBuildFile; fileRef = E1EF42A233E146438D9ED716 ; };
- 54AD260F28E7441E91F7F969 = {isa = PBXBuildFile; fileRef = 3473D7B792D540738F771171 ; };
- 5AA21ABE1C4241F2AF3BB289 = {isa = PBXBuildFile; fileRef = 8B19AA75A3BB4EAFA3565701 ; };
- 5E9157361DD0AC6A00FF2AA8 = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 ; };
- 635FEF7B4C7F4BB4A08BFA52 = {isa = PBXBuildFile; fileRef = 155FE72366574500883C6899 ; };
- 688E4049CBC746BB858EDB6C = {isa = PBXBuildFile; fileRef = 833749C947FD4310BE5C99BC ; };
- 7307BF2565E44C0D941CEC84 = {isa = PBXBuildFile; fileRef = 1B899113D3364DEDB60246E1 ; };
- 7F71DA663D1B45E99A142B94 = {isa = PBXBuildFile; fileRef = EB48F97FB6A44F2D88A05E00 ; };
- 832341BD1AAA6AB300B99B32 = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 ; };
- 861ED4E811B9479AB7FA17EF = {isa = PBXBuildFile; fileRef = 886D1967D2DA470DA5711C6F ; };
- 93C40AD6ADB949E0932603F5 = {isa = PBXBuildFile; fileRef = EAD0B9E850A045A88B66FBB2 ; };
- ADBDB9381DFEBF1600ED6528 = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 ; };
- AE049A82213D168700F87971 = {isa = PBXBuildFile; fileRef = AE049A79213D161800F87971 ; };
- AE049A83213D168700F87971 = {isa = PBXBuildFile; fileRef = AE049A79213D161800F87971 ; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- AE049CCA213D257300F87971 = {isa = PBXBuildFile; fileRef = AE049CC9213D257300F87971 ; };
- AE049CCB213D257300F87971 = {isa = PBXBuildFile; fileRef = AE049CC9213D257300F87971 ; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- AE049CCD213D257600F87971 = {isa = PBXBuildFile; fileRef = AE049CCC213D257600F87971 ; };
- AE049CCE213D257600F87971 = {isa = PBXBuildFile; fileRef = AE049CCC213D257600F87971 ; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
- BCBCA1A513F74E8F9D9C8595 = {isa = PBXBuildFile; fileRef = 6797285F5A9C43FB9927A19B ; };
- C0F43A10F753443D95DE8B73 = {isa = PBXBuildFile; fileRef = 1D1F5F9475024EEE83F6DBB8 ; };
- CBD736BE4622452A94BEFBBC = {isa = PBXBuildFile; fileRef = 51C61B755D5045FA9707DA64 ; };
- CFE22D51937E4F9F89FCC441 = {isa = PBXBuildFile; fileRef = 416FCCA1725B412F85A0AC36 ; };
- E909873F99824DE7AAB3BFE7 = {isa = PBXBuildFile; fileRef = 64E325F9DBB14DAB9BB2EE79 ; };
- F2B8C0240BF74E5CAB4D2BFF = {isa = PBXBuildFile; fileRef = 2AF2DC2470EF4D55913FB94E ; };
- FAD549D1A95545E69E3FC13D = {isa = PBXBuildFile; fileRef = B073602D2D5A46098FDDF425 ; };
- 71358FB36B0F4F24804959DC = {isa = PBXBuildFile; fileRef = 8676D00828A449229AA7705E ; };
- D84E2FFC6A19488696EE21AA = {isa = PBXBuildFile; fileRef = 28A89B354A284258B08B5B20 ; };
- 98AC2399D01A4A64811E4508 = {isa = PBXBuildFile; fileRef = 430EAE10CDD1407CA049C4FD ; };
- 8972DB47B7E047B0889EB9C2 = {isa = PBXBuildFile; fileRef = 4D287E8D57184E9CBCBBC27E ; };
- 971CD3D6EC9942ED886A2E54 = {isa = PBXBuildFile; fileRef = 4DD6600ED364450BB780C6BB ; };
- AAF748D5D8C147F58F9EB2F2 = {isa = PBXBuildFile; fileRef = C67DE23DA0DE4EE6A4B7D7A4 ; };
- F9376D84534C452A91CA267B = {isa = PBXBuildFile; fileRef = 7415C27A29A74683B3DF7170 ; };
- D1DC25DB6AFC4D00AC3E7F1B = {isa = PBXBuildFile; fileRef = 84ACC0924D584902B51922DE ; };
- 187C6ECB3CEB4B31B2E16FC9 = {isa = PBXBuildFile; fileRef = 9359EC8F1203489ABA5718EC ; };
- 459A421AC5AF4B9DA72E8894 = {isa = PBXBuildFile; fileRef = FCC37EF8CA474D9483BC085B ; };
- 6134CEEAD7D54DAABA957818 = {isa = PBXBuildFile; fileRef = 84DFFDD6B05C45EF92E64E66 ; };
- F234437C7A0748FEA1C9DD20 = {isa = PBXBuildFile; fileRef = 27AD2E4747F7426C9E5BA08C ; };
- DEA483078A1B4E3EBF1312E2 = {isa = PBXBuildFile; fileRef = 9CCB7155805846CA9C63947B ; };
- 86D6891C301F403790EABCC1 = {isa = PBXBuildFile; fileRef = 700710D52AFF4894AD1A4F76 ; };
- 8020C46172B84C50AAEC2B28 = {isa = PBXBuildFile; fileRef = 1BDA8963E3154FED973B31E8 ; };
- 95ACDE8C78F942B2A92D6B1A = {isa = PBXBuildFile; fileRef = 32CBEAC709FE4376BF79BC7E ; };
- 00C302AB1ABCB8CE00DB3ED1 = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302A71ABCB8CE00DB3ED1 ;
- proxyType = 2;
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
- remoteInfo = RCTActionSheet;
- };
- 00C302B91ABCB90400DB3ED1 = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302B51ABCB90400DB3ED1 ;
- proxyType = 2;
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
- remoteInfo = RCTGeolocation;
- };
- 00C302BF1ABCB91800DB3ED1 = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302BB1ABCB91800DB3ED1 ;
- proxyType = 2;
- remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
- remoteInfo = RCTImage;
- };
- 00C302DB1ABCB9D200DB3ED1 = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302D31ABCB9D200DB3ED1 ;
- proxyType = 2;
- remoteGlobalIDString = 58B511DB1A9E6C8500147676;
- remoteInfo = RCTNetwork;
- };
- 00C302E31ABCB9EE00DB3ED1 = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302DF1ABCB9EE00DB3ED1 ;
- proxyType = 2;
- remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
- remoteInfo = RCTVibration;
- };
- 00E356F41AD99517003FC87E = {
- isa = PBXContainerItemProxy;
- containerPortal = 83CBB9F71A601CBA00E9B192 ;
- proxyType = 1;
- remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
- remoteInfo = huiliaoJmessage;
- };
- 139105C01AF99BAD00B5F7CC = {
- isa = PBXContainerItemProxy;
- containerPortal = 139105B61AF99BAD00B5F7CC ;
- proxyType = 2;
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
- remoteInfo = RCTSettings;
- };
- 139FDEF31B06529B00C62182 = {
- isa = PBXContainerItemProxy;
- containerPortal = 139FDEE61B06529A00C62182 ;
- proxyType = 2;
- remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
- remoteInfo = RCTWebSocket;
- };
- 146834031AC3E56700842450 = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
- remoteInfo = React;
- };
- 2D02E4911E0B4A5D006451C7 = {
- isa = PBXContainerItemProxy;
- containerPortal = 83CBB9F71A601CBA00E9B192 ;
- proxyType = 1;
- remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
- remoteInfo = "huiliaoJmessage-tvOS";
- };
- 2D16E6711FA4F8DC00B85C8A = {
- isa = PBXContainerItemProxy;
- containerPortal = ADBDB91F1DFEBF0600ED6528 ;
- proxyType = 2;
- remoteGlobalIDString = ADD01A681E09402E00F6D226;
- remoteInfo = "RCTBlob-tvOS";
- };
- 2D16E6831FA4F8DC00B85C8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 139FDEE61B06529A00C62182 ;
- proxyType = 2;
- remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
- remoteInfo = fishhook;
- };
- 2D16E6851FA4F8DC00B85C8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 139FDEE61B06529A00C62182 ;
- proxyType = 2;
- remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
- remoteInfo = "fishhook-tvOS";
- };
- 2DF0FFDE2056DD460020B375 = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
- remoteInfo = jsinspector;
- };
- 2DF0FFE02056DD460020B375 = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
- remoteInfo = "jsinspector-tvOS";
- };
- 2DF0FFE22056DD460020B375 = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
- remoteInfo = "third-party";
- };
- 2DF0FFE42056DD460020B375 = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
- remoteInfo = "third-party-tvOS";
- };
- 2DF0FFE62056DD460020B375 = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 139D7E881E25C6D100323FB7;
- remoteInfo = "double-conversion";
- };
- 2DF0FFE82056DD460020B375 = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 3D383D621EBD27B9005632C8;
- remoteInfo = "double-conversion-tvOS";
- };
- 2DF0FFEA2056DD460020B375 = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
- remoteInfo = privatedata;
- };
- 2DF0FFEC2056DD460020B375 = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
- remoteInfo = "privatedata-tvOS";
- };
- 3DAD3E831DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302BB1ABCB91800DB3ED1 ;
- proxyType = 2;
- remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
- remoteInfo = "RCTImage-tvOS";
- };
- 3DAD3E871DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 78C398B01ACF4ADC00677621 ;
- proxyType = 2;
- remoteGlobalIDString = 2D2A28471D9B043800D4039D;
- remoteInfo = "RCTLinking-tvOS";
- };
- 3DAD3E8B1DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302D31ABCB9D200DB3ED1 ;
- proxyType = 2;
- remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
- remoteInfo = "RCTNetwork-tvOS";
- };
- 3DAD3E8F1DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 139105B61AF99BAD00B5F7CC ;
- proxyType = 2;
- remoteGlobalIDString = 2D2A28611D9B046600D4039D;
- remoteInfo = "RCTSettings-tvOS";
- };
- 3DAD3E931DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 832341B01AAA6A8300B99B32 ;
- proxyType = 2;
- remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
- remoteInfo = "RCTText-tvOS";
- };
- 3DAD3E981DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 139FDEE61B06529A00C62182 ;
- proxyType = 2;
- remoteGlobalIDString = 2D2A28881D9B049200D4039D;
- remoteInfo = "RCTWebSocket-tvOS";
- };
- 3DAD3EA21DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
- remoteInfo = "React-tvOS";
- };
- 3DAD3EA41DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
- remoteInfo = yoga;
- };
- 3DAD3EA61DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
- remoteInfo = "yoga-tvOS";
- };
- 3DAD3EA81DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
- remoteInfo = cxxreact;
- };
- 3DAD3EAA1DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
- remoteInfo = "cxxreact-tvOS";
- };
- 3DAD3EAC1DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
- remoteInfo = jschelpers;
- };
- 3DAD3EAE1DF850E9000B6D8A = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 ;
- proxyType = 2;
- remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
- remoteInfo = "jschelpers-tvOS";
- };
- 5E9157321DD0AC6500FF2AA8 = {
- isa = PBXContainerItemProxy;
- containerPortal = 5E91572D1DD0AC6500FF2AA8 ;
- proxyType = 2;
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
- remoteInfo = RCTAnimation;
- };
- 5E9157341DD0AC6500FF2AA8 = {
- isa = PBXContainerItemProxy;
- containerPortal = 5E91572D1DD0AC6500FF2AA8 ;
- proxyType = 2;
- remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
- remoteInfo = "RCTAnimation-tvOS";
- };
- 78C398B81ACF4ADC00677621 = {
- isa = PBXContainerItemProxy;
- containerPortal = 78C398B01ACF4ADC00677621 ;
- proxyType = 2;
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
- remoteInfo = RCTLinking;
- };
- 832341B41AAA6A8300B99B32 = {
- isa = PBXContainerItemProxy;
- containerPortal = 832341B01AAA6A8300B99B32 ;
- proxyType = 2;
- remoteGlobalIDString = 58B5119B1A9E6C1200147676;
- remoteInfo = RCTText;
- };
- ADBDB9261DFEBF0700ED6528 = {
- isa = PBXContainerItemProxy;
- containerPortal = ADBDB91F1DFEBF0600ED6528 ;
- proxyType = 2;
- remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
- remoteInfo = RCTBlob;
- };
- AE049A76213D161800F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = 9EC10A83FC7C45D588BD4B46 ;
- proxyType = 2;
- remoteGlobalIDString = 6239E6641EDDB1F700B9AC9C;
- remoteInfo = AuroraIMUI;
- };
- AE049A78213D161800F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = 9EC10A83FC7C45D588BD4B46 ;
- proxyType = 2;
- remoteGlobalIDString = 623EA9991EE55D0800EC43AE;
- remoteInfo = RCTAuroraIMUI;
- };
- AE049A7A213D161800F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = 9EC10A83FC7C45D588BD4B46 ;
- proxyType = 2;
- remoteGlobalIDString = 623EA9A11EE55D0800EC43AE;
- remoteInfo = RCTAuroraIMUITests;
- };
- AE049A7D213D161800F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = 94D85684CD3846BE9F43D158 ;
- proxyType = 2;
- remoteGlobalIDString = 6212E9B41F3990DC00BDF51A;
- remoteInfo = RCTJCoreModule;
- };
- AE049A80213D161800F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = A87BA7F6425844BC8FB1129E ;
- proxyType = 2;
- remoteGlobalIDString = 6212EB151F3C34BB00BDF51A;
- remoteInfo = RCTJMessageModule;
- };
- AE049A84213D168700F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = 9EC10A83FC7C45D588BD4B46 ;
- proxyType = 1;
- remoteGlobalIDString = 623EA9981EE55D0800EC43AE;
- remoteInfo = RCTAuroraIMUI;
- };
- AE049A87213D169A00F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = 139FDEE61B06529A00C62182 ;
- proxyType = 1;
- remoteGlobalIDString = 3C86DF451ADF2C930047B81A;
- remoteInfo = RCTWebSocket;
- };
- AE049C01213D234A00F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = C5F99CD15EF24D31B11BDB0C ;
- proxyType = 2;
- remoteGlobalIDString = 42F559BA1CFC90C400DC3F84;
- remoteInfo = RNAudio;
- };
- AE049C3F213D23CD00F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = CDCDB64F6D1C4D1B86F96FF9 ;
- proxyType = 2;
- remoteGlobalIDString = 4107012F1ACB723B00C6AA39;
- remoteInfo = RNCamera;
- };
- AE049C80213D24D700F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = 6157CA0EBAC54D6CAC58EF72 ;
- proxyType = 2;
- remoteGlobalIDString = F12AFB9B1ADAF8F800E0535D;
- remoteInfo = RNFS;
- };
- AE049C82213D24D700F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = 6157CA0EBAC54D6CAC58EF72 ;
- proxyType = 2;
- remoteGlobalIDString = 6456441F1EB8DA9100672408;
- remoteInfo = "RNFS-tvOS";
- };
- AE049D14213D263A00F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = DEAC4455559A4918AC1E987A ;
- proxyType = 2;
- remoteGlobalIDString = F32424381F67FFC700255A5B;
- remoteInfo = RNContactsPicker;
- };
- AE049D5D213D266800F87971 = {
- isa = PBXContainerItemProxy;
- containerPortal = DC2BD6B46B9A4DDA8D1D2C9F ;
- proxyType = 2;
- remoteGlobalIDString = 2B58405A1D10DE8700235F31;
- remoteInfo = RCTContactsWrapper;
- };
- AE049A86213D168800F87971 = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 10;
- files = (
- AE049A83213D168700F87971 ,
- AE049CCB213D257300F87971 ,
- AE049CCE213D257600F87971 ,
- );
- name = "Embed Frameworks";
- runOnlyForDeploymentPostprocessing = 0;
- };
- 008F07F21AC5B25A0029DE68 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
- 00C302A71ABCB8CE00DB3ED1 = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = "<group>"; };
- 00C302B51ABCB90400DB3ED1 = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = "<group>"; };
- 00C302BB1ABCB91800DB3ED1 = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = "<group>"; };
- 00C302D31ABCB9D200DB3ED1 = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = "<group>"; };
- 00C302DF1ABCB9EE00DB3ED1 = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = "<group>"; };
- 00E356EE1AD99517003FC87E = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = huiliaoJmessageTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 00E356F11AD99517003FC87E = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 00E356F21AD99517003FC87E = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = huiliaoJmessageTests.m; sourceTree = "<group>"; };
- 139105B61AF99BAD00B5F7CC = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
- 139FDEE61B06529A00C62182 = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
- 13B07F961A680F5B00A75B9A = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = huiliaoJmessage.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 13B07FAF1A68108700A75B9A = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = huiliaoJmessage/AppDelegate.h; sourceTree = "<group>"; };
- 13B07FB01A68108700A75B9A = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = huiliaoJmessage/AppDelegate.m; sourceTree = "<group>"; };
- 13B07FB21A68108700A75B9A = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
- 13B07FB51A68108700A75B9A = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = huiliaoJmessage/Images.xcassets; sourceTree = "<group>"; };
- 13B07FB61A68108700A75B9A = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = huiliaoJmessage/Info.plist; sourceTree = "<group>"; };
- 13B07FB71A68108700A75B9A = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = huiliaoJmessage/main.m; sourceTree = "<group>"; };
- 146833FF1AC3E56700842450 = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
- 155FE72366574500883C6899 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = RCTAuroraIMUI.framework; path = System/Library/Frameworks/RCTAuroraIMUI.framework; sourceTree = SDKROOT; };
- 1B899113D3364DEDB60246E1 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
- 1D1F5F9475024EEE83F6DBB8 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
- 25574F59398D4FB9A5FDA71B = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libAuroraIMUI.a; sourceTree = "<group>"; };
- 2AF2DC2470EF4D55913FB94E = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTJCoreModule.a; sourceTree = "<group>"; };
- 2C2BF6DD297C46ABA9839B59 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNAudio.a; sourceTree = "<group>"; };
- 2D02E47B1E0B4A5D006451C7 = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "huiliaoJmessage-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
- 2D02E4901E0B4A5D006451C7 = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "huiliaoJmessage-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
- 2D16E6891FA4F8E400B85C8A = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
- 3473D7B792D540738F771171 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
- 3AC150135E8F432FBB6D02E0 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
- 416FCCA1725B412F85A0AC36 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
- 51C61B755D5045FA9707DA64 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.cfbundle; path = RCTAuroraIMUITests.xctest; sourceTree = "<group>"; };
- 588A1390BBC94E0C9FA8D708 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
- 5E91572D1DD0AC6500FF2AA8 = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
- 6157CA0EBAC54D6CAC58EF72 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNFS.xcodeproj; path = "../node_modules/react-native-fs/RNFS.xcodeproj"; sourceTree = "<group>"; };
- 64E325F9DBB14DAB9BB2EE79 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNFS.a; sourceTree = "<group>"; };
- 6797285F5A9C43FB9927A19B = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
- 78C398B01ACF4ADC00677621 = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
- 7E8E0C25D99849418B009946 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
- 832341B01AAA6A8300B99B32 = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
- 833749C947FD4310BE5C99BC = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
- 886D1967D2DA470DA5711C6F = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
- 8B19AA75A3BB4EAFA3565701 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
- 94D85684CD3846BE9F43D158 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTJCoreModule.xcodeproj; path = "../node_modules/jcore-react-native/ios/RCTJCoreModule.xcodeproj"; sourceTree = "<group>"; };
- 9EC10A83FC7C45D588BD4B46 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTAuroraIMUI.xcodeproj; path = "../node_modules/aurora-imui-react-native/ReactNative/ios/RCTAuroraIMUI.xcodeproj"; sourceTree = "<group>"; };
- A3E3E7CA3156458BBAEAFF93 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTJMessageModule.a; sourceTree = "<group>"; };
- A87BA7F6425844BC8FB1129E = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTJMessageModule.xcodeproj; path = "../node_modules/jmessage-react-plugin/ios/RCTJMessageModule.xcodeproj"; sourceTree = "<group>"; };
- ADBDB91F1DFEBF0600ED6528 = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = "<group>"; };
- AE049BC6213D207100F87971 = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = huiliaoJmessage.entitlements; path = huiliaoJmessage/huiliaoJmessage.entitlements; sourceTree = "<group>"; };
- AE049CC9213D257300F87971 = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RSKImageCropper.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- AE049CCC213D257600F87971 = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = QBImagePicker.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- B073602D2D5A46098FDDF425 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
- B4E095F052894127968450A7 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
- BE4869D8725B423EAA362164 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
- C5F99CD15EF24D31B11BDB0C = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNAudio.xcodeproj; path = "../node_modules/react-native-audio/ios/RNAudio.xcodeproj"; sourceTree = "<group>"; };
- CDCDB64F6D1C4D1B86F96FF9 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNCamera.xcodeproj; path = "../node_modules/react-native-camera/ios/RNCamera.xcodeproj"; sourceTree = "<group>"; };
- DC2BD6B46B9A4DDA8D1D2C9F = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = ContactsWrapper.xcodeproj; path = "../node_modules/react-native-contacts-wrapper/ios/ContactsWrapper.xcodeproj"; sourceTree = "<group>"; };
- DEAC4455559A4918AC1E987A = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNContactsPicker.xcodeproj; path = "../node_modules/react-native-contacts-picker/ios/RNContactsPicker.xcodeproj"; sourceTree = "<group>"; };
- E1EF42A233E146438D9ED716 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNContactsPicker.a; sourceTree = "<group>"; };
- E91F2EE193E94E48A1C7C8C5 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTContactsWrapper.a; sourceTree = "<group>"; };
- EAD0B9E850A045A88B66FBB2 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNCamera.a; sourceTree = "<group>"; };
- EB48F97FB6A44F2D88A05E00 = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libresolv.tbd; path = usr/lib/libresolv.tbd; sourceTree = SDKROOT; };
- A81D4CD56C6046629AF6D304 = {isa = PBXFileReference; name = "RNSound.xcodeproj"; path = "../node_modules/react-native-sound/RNSound.xcodeproj"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; };
- 8676D00828A449229AA7705E = {isa = PBXFileReference; name = "libRNSound.a"; path = "libRNSound.a"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; };
- 28A89B354A284258B08B5B20 = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/native-base/Fonts/Entypo.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- 430EAE10CDD1407CA049C4FD = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/native-base/Fonts/EvilIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- 4D287E8D57184E9CBCBBC27E = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/native-base/Fonts/Feather.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- 4DD6600ED364450BB780C6BB = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/native-base/Fonts/FontAwesome.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- C67DE23DA0DE4EE6A4B7D7A4 = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/native-base/Fonts/Foundation.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- 7415C27A29A74683B3DF7170 = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/native-base/Fonts/Ionicons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- 84ACC0924D584902B51922DE = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/native-base/Fonts/MaterialCommunityIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- 9359EC8F1203489ABA5718EC = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/native-base/Fonts/MaterialIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- FCC37EF8CA474D9483BC085B = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/native-base/Fonts/Octicons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- 84DFFDD6B05C45EF92E64E66 = {isa = PBXFileReference; name = "Roboto_medium.ttf"; path = "../node_modules/native-base/Fonts/Roboto_medium.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- 27AD2E4747F7426C9E5BA08C = {isa = PBXFileReference; name = "Roboto.ttf"; path = "../node_modules/native-base/Fonts/Roboto.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- 9CCB7155805846CA9C63947B = {isa = PBXFileReference; name = "rubicon-icon-font.ttf"; path = "../node_modules/native-base/Fonts/rubicon-icon-font.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- 700710D52AFF4894AD1A4F76 = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/native-base/Fonts/SimpleLineIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- 1BDA8963E3154FED973B31E8 = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/native-base/Fonts/Zocial.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
- 12CD1E2BA0264A12954FDB85 = {isa = PBXFileReference; name = "imageCropPicker.xcodeproj"; path = "../node_modules/react-native-image-crop-picker/ios/imageCropPicker.xcodeproj"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; };
- 32CBEAC709FE4376BF79BC7E = {isa = PBXFileReference; name = "libimageCropPicker.a"; path = "libimageCropPicker.a"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; };
- 00E356EB1AD99517003FC87E = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 140ED2AC1D01E1AD002B40FF ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 13B07F8C1A680F5B00A75B9A = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- ADBDB9381DFEBF1600ED6528 ,
- 5E9157361DD0AC6A00FF2AA8 ,
- 146834051AC3E58100842450 ,
- 5E9157361DD0AC6A00FF2AA8 ,
- AE049A82213D168700F87971 ,
- 00C302E51ABCBA2D00DB3ED1 ,
- 00C302E71ABCBA2D00DB3ED1 ,
- 00C302E81ABCBA2D00DB3ED1 ,
- 133E29F31AD74F7200F7D852 ,
- 00C302E91ABCBA2D00DB3ED1 ,
- 139105C61AF99C1200B5F7CC ,
- 832341BD1AAA6AB300B99B32 ,
- 00C302EA1ABCBA2D00DB3ED1 ,
- 139FDEF61B0652A700C62182 ,
- 08BE8DA1067648B1B25A586C ,
- AE049CCD213D257600F87971 ,
- 635FEF7B4C7F4BB4A08BFA52 ,
- CBD736BE4622452A94BEFBBC ,
- 861ED4E811B9479AB7FA17EF ,
- 216866CE9A6440C988C7BB0E ,
- BCBCA1A513F74E8F9D9C8595 ,
- 54AD260F28E7441E91F7F969 ,
- 074C882D9E92487D852CD7CA ,
- AE049CCA213D257300F87971 ,
- 5AA21ABE1C4241F2AF3BB289 ,
- C0F43A10F753443D95DE8B73 ,
- 064AAB747A504B2CA21E770E ,
- F2B8C0240BF74E5CAB4D2BFF ,
- 291B7AD588E7494996E9146E ,
- 7307BF2565E44C0D941CEC84 ,
- 688E4049CBC746BB858EDB6C ,
- 7F71DA663D1B45E99A142B94 ,
- CFE22D51937E4F9F89FCC441 ,
- FAD549D1A95545E69E3FC13D ,
- 44E25301847245E399C66C16 ,
- 0D29BDFF02B5412493CE913E ,
- 1D5CC392DC7642E49C201C62 ,
- 93C40AD6ADB949E0932603F5 ,
- E909873F99824DE7AAB3BFE7 ,
- 4D0C821FC8F742E19537188A ,
- 3188370F8A9A4764A16408E6 ,
- 71358FB36B0F4F24804959DC ,
- 95ACDE8C78F942B2A92D6B1A ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E4781E0B4A5D006451C7 = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2D16E6881FA4F8E400B85C8A ,
- 2D02E4C21E0B4AEC006451C7 ,
- 2D02E4C31E0B4AEC006451C7 ,
- 2D02E4C41E0B4AEC006451C7 ,
- 2D02E4C51E0B4AEC006451C7 ,
- 2D02E4C61E0B4AEC006451C7 ,
- 2D02E4C71E0B4AEC006451C7 ,
- 2D02E4C81E0B4AEC006451C7 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E48D1E0B4A5D006451C7 = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2DF0FFEE2056DD460020B375 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 00C302A81ABCB8CE00DB3ED1 = {
- isa = PBXGroup;
- children = (
- 00C302AC1ABCB8CE00DB3ED1 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 00C302B61ABCB90400DB3ED1 = {
- isa = PBXGroup;
- children = (
- 00C302BA1ABCB90400DB3ED1 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 00C302BC1ABCB91800DB3ED1 = {
- isa = PBXGroup;
- children = (
- 00C302C01ABCB91800DB3ED1 ,
- 3DAD3E841DF850E9000B6D8A ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 00C302D41ABCB9D200DB3ED1 = {
- isa = PBXGroup;
- children = (
- 00C302DC1ABCB9D200DB3ED1 ,
- 3DAD3E8C1DF850E9000B6D8A ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 00C302E01ABCB9EE00DB3ED1 = {
- isa = PBXGroup;
- children = (
- 00C302E41ABCB9EE00DB3ED1 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 00E356EF1AD99517003FC87E = {
- isa = PBXGroup;
- children = (
- 00E356F21AD99517003FC87E ,
- 00E356F01AD99517003FC87E ,
- );
- path = huiliaoJmessageTests;
- sourceTree = "<group>";
- };
- 00E356F01AD99517003FC87E = {
- isa = PBXGroup;
- children = (
- 00E356F11AD99517003FC87E ,
- );
- name = "Supporting Files";
- sourceTree = "<group>";
- };
- 139105B71AF99BAD00B5F7CC = {
- isa = PBXGroup;
- children = (
- 139105C11AF99BAD00B5F7CC ,
- 3DAD3E901DF850E9000B6D8A ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 139FDEE71B06529A00C62182 = {
- isa = PBXGroup;
- children = (
- 139FDEF41B06529B00C62182 ,
- 3DAD3E991DF850E9000B6D8A ,
- 2D16E6841FA4F8DC00B85C8A ,
- 2D16E6861FA4F8DC00B85C8A ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 13B07FAE1A68108700A75B9A = {
- isa = PBXGroup;
- children = (
- AE049BC6213D207100F87971 ,
- 008F07F21AC5B25A0029DE68 ,
- 13B07FAF1A68108700A75B9A ,
- 13B07FB01A68108700A75B9A ,
- 13B07FB51A68108700A75B9A ,
- 13B07FB61A68108700A75B9A ,
- 13B07FB11A68108700A75B9A ,
- 13B07FB71A68108700A75B9A ,
- );
- name = huiliaoJmessage;
- sourceTree = "<group>";
- };
- 146834001AC3E56700842450 = {
- isa = PBXGroup;
- children = (
- 146834041AC3E56700842450 ,
- 3DAD3EA31DF850E9000B6D8A ,
- 3DAD3EA51DF850E9000B6D8A ,
- 3DAD3EA71DF850E9000B6D8A ,
- 3DAD3EA91DF850E9000B6D8A ,
- 3DAD3EAB1DF850E9000B6D8A ,
- 3DAD3EAD1DF850E9000B6D8A ,
- 3DAD3EAF1DF850E9000B6D8A ,
- 2DF0FFDF2056DD460020B375 ,
- 2DF0FFE12056DD460020B375 ,
- 2DF0FFE32056DD460020B375 ,
- 2DF0FFE52056DD460020B375 ,
- 2DF0FFE72056DD460020B375 ,
- 2DF0FFE92056DD460020B375 ,
- 2DF0FFEB2056DD460020B375 ,
- 2DF0FFED2056DD460020B375 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 2D16E6871FA4F8E400B85C8A = {
- isa = PBXGroup;
- children = (
- 2D16E6891FA4F8E400B85C8A ,
- 886D1967D2DA470DA5711C6F ,
- 588A1390BBC94E0C9FA8D708 ,
- 6797285F5A9C43FB9927A19B ,
- 3473D7B792D540738F771171 ,
- B4E095F052894127968450A7 ,
- 8B19AA75A3BB4EAFA3565701 ,
- 1D1F5F9475024EEE83F6DBB8 ,
- 3AC150135E8F432FBB6D02E0 ,
- 1B899113D3364DEDB60246E1 ,
- 833749C947FD4310BE5C99BC ,
- EB48F97FB6A44F2D88A05E00 ,
- 416FCCA1725B412F85A0AC36 ,
- B073602D2D5A46098FDDF425 ,
- BE4869D8725B423EAA362164 ,
- 7E8E0C25D99849418B009946 ,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- 5E91572E1DD0AC6500FF2AA8 = {
- isa = PBXGroup;
- children = (
- 5E9157331DD0AC6500FF2AA8 ,
- 5E9157351DD0AC6500FF2AA8 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 78C398B11ACF4ADC00677621 = {
- isa = PBXGroup;
- children = (
- 78C398B91ACF4ADC00677621 ,
- 3DAD3E881DF850E9000B6D8A ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 832341AE1AAA6A7D00B99B32 = {
- isa = PBXGroup;
- children = (
- 5E91572D1DD0AC6500FF2AA8 ,
- 146833FF1AC3E56700842450 ,
- 00C302A71ABCB8CE00DB3ED1 ,
- ADBDB91F1DFEBF0600ED6528 ,
- 00C302B51ABCB90400DB3ED1 ,
- 00C302BB1ABCB91800DB3ED1 ,
- 78C398B01ACF4ADC00677621 ,
- 00C302D31ABCB9D200DB3ED1 ,
- 139105B61AF99BAD00B5F7CC ,
- 832341B01AAA6A8300B99B32 ,
- 00C302DF1ABCB9EE00DB3ED1 ,
- 139FDEE61B06529A00C62182 ,
- 9EC10A83FC7C45D588BD4B46 ,
- 94D85684CD3846BE9F43D158 ,
- A87BA7F6425844BC8FB1129E ,
- C5F99CD15EF24D31B11BDB0C ,
- CDCDB64F6D1C4D1B86F96FF9 ,
- 6157CA0EBAC54D6CAC58EF72 ,
- DEAC4455559A4918AC1E987A ,
- DC2BD6B46B9A4DDA8D1D2C9F ,
- A81D4CD56C6046629AF6D304 ,
- 12CD1E2BA0264A12954FDB85 ,
- );
- name = Libraries;
- sourceTree = "<group>";
- };
- 832341B11AAA6A8300B99B32 = {
- isa = PBXGroup;
- children = (
- 832341B51AAA6A8300B99B32 ,
- 3DAD3E941DF850E9000B6D8A ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 83CBB9F61A601CBA00E9B192 = {
- isa = PBXGroup;
- children = (
- AE049CCC213D257600F87971 ,
- AE049CC9213D257300F87971 ,
- 13B07FAE1A68108700A75B9A ,
- 832341AE1AAA6A7D00B99B32 ,
- 00E356EF1AD99517003FC87E ,
- 83CBBA001A601CBA00E9B192 ,
- 2D16E6871FA4F8E400B85C8A ,
- AE049A47213D161300F87971 ,
- BC7A6004D4EE4F9AB6DBBAE2 ,
- );
- indentWidth = 2;
- sourceTree = "<group>";
- tabWidth = 2;
- usesTabs = 0;
- };
- 83CBBA001A601CBA00E9B192 = {
- isa = PBXGroup;
- children = (
- 13B07F961A680F5B00A75B9A ,
- 00E356EE1AD99517003FC87E ,
- 2D02E47B1E0B4A5D006451C7 ,
- 2D02E4901E0B4A5D006451C7 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- ADBDB9201DFEBF0600ED6528 = {
- isa = PBXGroup;
- children = (
- ADBDB9271DFEBF0700ED6528 ,
- 2D16E6721FA4F8DC00B85C8A ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- AE049A47213D161300F87971 = {
- isa = PBXGroup;
- children = (
- 25574F59398D4FB9A5FDA71B ,
- 155FE72366574500883C6899 ,
- 51C61B755D5045FA9707DA64 ,
- 2AF2DC2470EF4D55913FB94E ,
- A3E3E7CA3156458BBAEAFF93 ,
- 2C2BF6DD297C46ABA9839B59 ,
- EAD0B9E850A045A88B66FBB2 ,
- 64E325F9DBB14DAB9BB2EE79 ,
- 76BEB28BD54B4E40B4253085 ,
- E1EF42A233E146438D9ED716 ,
- E91F2EE193E94E48A1C7C8C5 ,
- );
- name = "Recovered References";
- sourceTree = "<group>";
- };
- AE049A6D213D161700F87971 = {
- isa = PBXGroup;
- children = (
- AE049A77213D161800F87971 ,
- AE049A79213D161800F87971 ,
- AE049A7B213D161800F87971 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- AE049A6F213D161700F87971 = {
- isa = PBXGroup;
- children = (
- AE049A7E213D161800F87971 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- AE049A71213D161700F87971 = {
- isa = PBXGroup;
- children = (
- AE049A81213D161800F87971 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- AE049BFE213D234A00F87971 = {
- isa = PBXGroup;
- children = (
- AE049C02213D234A00F87971 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- AE049C3C213D23CD00F87971 = {
- isa = PBXGroup;
- children = (
- AE049C40213D23CD00F87971 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- AE049C7C213D24D700F87971 = {
- isa = PBXGroup;
- children = (
- AE049C81213D24D700F87971 ,
- AE049C83213D24D700F87971 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- AE049D11213D263A00F87971 = {
- isa = PBXGroup;
- children = (
- AE049D15213D263A00F87971 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- AE049D5A213D266800F87971 = {
- isa = PBXGroup;
- children = (
- AE049D5E213D266800F87971 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- BC7A6004D4EE4F9AB6DBBAE2 = {
- isa = "PBXGroup";
- children = (
- 28A89B354A284258B08B5B20 ,
- 430EAE10CDD1407CA049C4FD ,
- 4D287E8D57184E9CBCBBC27E ,
- 4DD6600ED364450BB780C6BB ,
- C67DE23DA0DE4EE6A4B7D7A4 ,
- 7415C27A29A74683B3DF7170 ,
- 84ACC0924D584902B51922DE ,
- 9359EC8F1203489ABA5718EC ,
- FCC37EF8CA474D9483BC085B ,
- 84DFFDD6B05C45EF92E64E66 ,
- 27AD2E4747F7426C9E5BA08C ,
- 9CCB7155805846CA9C63947B ,
- 700710D52AFF4894AD1A4F76 ,
- 1BDA8963E3154FED973B31E8 ,
- );
- name = Resources;
- sourceTree = "<group>";
- path = "";
- };
- 00E356ED1AD99517003FC87E = {
- isa = PBXNativeTarget;
- buildConfigurationList = 00E357021AD99517003FC87E ;
- buildPhases = (
- 00E356EA1AD99517003FC87E ,
- 00E356EB1AD99517003FC87E ,
- 00E356EC1AD99517003FC87E ,
- );
- buildRules = (
- );
- dependencies = (
- 00E356F51AD99517003FC87E ,
- );
- name = huiliaoJmessageTests;
- productName = huiliaoJmessageTests;
- productReference = 00E356EE1AD99517003FC87E ;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- 13B07F861A680F5B00A75B9A = {
- isa = PBXNativeTarget;
- buildConfigurationList = 13B07F931A680F5B00A75B9A ;
- buildPhases = (
- 13B07F871A680F5B00A75B9A ,
- 13B07F8C1A680F5B00A75B9A ,
- 13B07F8E1A680F5B00A75B9A ,
- 00DD1BFF1BD5951E006B06BC ,
- AE049A86213D168800F87971 ,
- );
- buildRules = (
- );
- dependencies = (
- AE049A88213D169A00F87971 ,
- AE049A85213D168700F87971 ,
- );
- name = huiliaoJmessage;
- productName = "Hello World";
- productReference = 13B07F961A680F5B00A75B9A ;
- productType = "com.apple.product-type.application";
- };
- 2D02E47A1E0B4A5D006451C7 = {
- isa = PBXNativeTarget;
- buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 ;
- buildPhases = (
- 2D02E4771E0B4A5D006451C7 ,
- 2D02E4781E0B4A5D006451C7 ,
- 2D02E4791E0B4A5D006451C7 ,
- 2D02E4CB1E0B4B27006451C7 ,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "huiliaoJmessage-tvOS";
- productName = "huiliaoJmessage-tvOS";
- productReference = 2D02E47B1E0B4A5D006451C7 ;
- productType = "com.apple.product-type.application";
- };
- 2D02E48F1E0B4A5D006451C7 = {
- isa = PBXNativeTarget;
- buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 ;
- buildPhases = (
- 2D02E48C1E0B4A5D006451C7 ,
- 2D02E48D1E0B4A5D006451C7 ,
- 2D02E48E1E0B4A5D006451C7 ,
- );
- buildRules = (
- );
- dependencies = (
- 2D02E4921E0B4A5D006451C7 ,
- );
- name = "huiliaoJmessage-tvOSTests";
- productName = "huiliaoJmessage-tvOSTests";
- productReference = 2D02E4901E0B4A5D006451C7 ;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- 83CBB9F71A601CBA00E9B192 = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 610;
- ORGANIZATIONNAME = Facebook;
- TargetAttributes = {
- 00E356ED1AD99517003FC87E = {
- CreatedOnToolsVersion = 6.2;
- TestTargetID = 13B07F861A680F5B00A75B9A;
- };
- 13B07F861A680F5B00A75B9A = {
- DevelopmentTeam = 87KURQP592;
- SystemCapabilities = {
- com.apple.BackgroundModes = {
- enabled = 1;
- };
- com.apple.Push = {
- enabled = 1;
- };
- };
- };
- 2D02E47A1E0B4A5D006451C7 = {
- CreatedOnToolsVersion = 8.2.1;
- ProvisioningStyle = Automatic;
- };
- 2D02E48F1E0B4A5D006451C7 = {
- CreatedOnToolsVersion = 8.2.1;
- ProvisioningStyle = Automatic;
- TestTargetID = 2D02E47A1E0B4A5D006451C7;
- };
- };
- };
- buildConfigurationList = 83CBB9FA1A601CBA00E9B192 ;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- );
- mainGroup = 83CBB9F61A601CBA00E9B192;
- productRefGroup = 83CBBA001A601CBA00E9B192 ;
- projectDirPath = "";
- projectReferences = (
- {
- ProductGroup = AE049D5A213D266800F87971 ;
- ProjectRef = DC2BD6B46B9A4DDA8D1D2C9F ;
- },
- {
- ProductGroup = 00C302A81ABCB8CE00DB3ED1 ;
- ProjectRef = 00C302A71ABCB8CE00DB3ED1 ;
- },
- {
- ProductGroup = 5E91572E1DD0AC6500FF2AA8 ;
- ProjectRef = 5E91572D1DD0AC6500FF2AA8 ;
- },
- {
- ProductGroup = AE049A6D213D161700F87971 ;
- ProjectRef = 9EC10A83FC7C45D588BD4B46 ;
- },
- {
- ProductGroup = ADBDB9201DFEBF0600ED6528 ;
- ProjectRef = ADBDB91F1DFEBF0600ED6528 ;
- },
- {
- ProductGroup = 00C302B61ABCB90400DB3ED1 ;
- ProjectRef = 00C302B51ABCB90400DB3ED1 ;
- },
- {
- ProductGroup = 00C302BC1ABCB91800DB3ED1 ;
- ProjectRef = 00C302BB1ABCB91800DB3ED1 ;
- },
- {
- ProductGroup = AE049A6F213D161700F87971 ;
- ProjectRef = 94D85684CD3846BE9F43D158 ;
- },
- {
- ProductGroup = AE049A71213D161700F87971 ;
- ProjectRef = A87BA7F6425844BC8FB1129E ;
- },
- {
- ProductGroup = 78C398B11ACF4ADC00677621 ;
- ProjectRef = 78C398B01ACF4ADC00677621 ;
- },
- {
- ProductGroup = 00C302D41ABCB9D200DB3ED1 ;
- ProjectRef = 00C302D31ABCB9D200DB3ED1 ;
- },
- {
- ProductGroup = 139105B71AF99BAD00B5F7CC ;
- ProjectRef = 139105B61AF99BAD00B5F7CC ;
- },
- {
- ProductGroup = 832341B11AAA6A8300B99B32 ;
- ProjectRef = 832341B01AAA6A8300B99B32 ;
- },
- {
- ProductGroup = 00C302E01ABCB9EE00DB3ED1 ;
- ProjectRef = 00C302DF1ABCB9EE00DB3ED1 ;
- },
- {
- ProductGroup = 139FDEE71B06529A00C62182 ;
- ProjectRef = 139FDEE61B06529A00C62182 ;
- },
- {
- ProductGroup = 146834001AC3E56700842450 ;
- ProjectRef = 146833FF1AC3E56700842450 ;
- },
- {
- ProductGroup = AE049BFE213D234A00F87971 ;
- ProjectRef = C5F99CD15EF24D31B11BDB0C ;
- },
- {
- ProductGroup = AE049C3C213D23CD00F87971 ;
- ProjectRef = CDCDB64F6D1C4D1B86F96FF9 ;
- },
- {
- ProductGroup = AE049D11213D263A00F87971 ;
- ProjectRef = DEAC4455559A4918AC1E987A ;
- },
- {
- ProductGroup = AE049C7C213D24D700F87971 ;
- ProjectRef = 6157CA0EBAC54D6CAC58EF72 ;
- },
- );
- projectRoot = "";
- targets = (
- 13B07F861A680F5B00A75B9A ,
- 00E356ED1AD99517003FC87E ,
- 2D02E47A1E0B4A5D006451C7 ,
- 2D02E48F1E0B4A5D006451C7 ,
- );
- };
- 00C302AC1ABCB8CE00DB3ED1 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTActionSheet.a;
- remoteRef = 00C302AB1ABCB8CE00DB3ED1 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 00C302BA1ABCB90400DB3ED1 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTGeolocation.a;
- remoteRef = 00C302B91ABCB90400DB3ED1 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 00C302C01ABCB91800DB3ED1 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTImage.a;
- remoteRef = 00C302BF1ABCB91800DB3ED1 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 00C302DC1ABCB9D200DB3ED1 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTNetwork.a;
- remoteRef = 00C302DB1ABCB9D200DB3ED1 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 00C302E41ABCB9EE00DB3ED1 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTVibration.a;
- remoteRef = 00C302E31ABCB9EE00DB3ED1 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 139105C11AF99BAD00B5F7CC = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTSettings.a;
- remoteRef = 139105C01AF99BAD00B5F7CC ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 139FDEF41B06529B00C62182 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTWebSocket.a;
- remoteRef = 139FDEF31B06529B00C62182 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 146834041AC3E56700842450 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libReact.a;
- remoteRef = 146834031AC3E56700842450 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2D16E6721FA4F8DC00B85C8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTBlob-tvOS.a";
- remoteRef = 2D16E6711FA4F8DC00B85C8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2D16E6841FA4F8DC00B85C8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libfishhook.a;
- remoteRef = 2D16E6831FA4F8DC00B85C8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2D16E6861FA4F8DC00B85C8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libfishhook-tvOS.a";
- remoteRef = 2D16E6851FA4F8DC00B85C8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFDF2056DD460020B375 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libjsinspector.a;
- remoteRef = 2DF0FFDE2056DD460020B375 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFE12056DD460020B375 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libjsinspector-tvOS.a";
- remoteRef = 2DF0FFE02056DD460020B375 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFE32056DD460020B375 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libthird-party.a";
- remoteRef = 2DF0FFE22056DD460020B375 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFE52056DD460020B375 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libthird-party.a";
- remoteRef = 2DF0FFE42056DD460020B375 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFE72056DD460020B375 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libdouble-conversion.a";
- remoteRef = 2DF0FFE62056DD460020B375 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFE92056DD460020B375 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libdouble-conversion.a";
- remoteRef = 2DF0FFE82056DD460020B375 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFEB2056DD460020B375 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libprivatedata.a;
- remoteRef = 2DF0FFEA2056DD460020B375 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFED2056DD460020B375 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libprivatedata-tvOS.a";
- remoteRef = 2DF0FFEC2056DD460020B375 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3E841DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTImage-tvOS.a";
- remoteRef = 3DAD3E831DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3E881DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTLinking-tvOS.a";
- remoteRef = 3DAD3E871DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3E8C1DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTNetwork-tvOS.a";
- remoteRef = 3DAD3E8B1DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3E901DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTSettings-tvOS.a";
- remoteRef = 3DAD3E8F1DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3E941DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTText-tvOS.a";
- remoteRef = 3DAD3E931DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3E991DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTWebSocket-tvOS.a";
- remoteRef = 3DAD3E981DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EA31DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libReact.a;
- remoteRef = 3DAD3EA21DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EA51DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libyoga.a;
- remoteRef = 3DAD3EA41DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EA71DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libyoga.a;
- remoteRef = 3DAD3EA61DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EA91DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libcxxreact.a;
- remoteRef = 3DAD3EA81DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EAB1DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libcxxreact.a;
- remoteRef = 3DAD3EAA1DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EAD1DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libjschelpers.a;
- remoteRef = 3DAD3EAC1DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EAF1DF850E9000B6D8A = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libjschelpers.a;
- remoteRef = 3DAD3EAE1DF850E9000B6D8A ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 5E9157331DD0AC6500FF2AA8 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTAnimation.a;
- remoteRef = 5E9157321DD0AC6500FF2AA8 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 5E9157351DD0AC6500FF2AA8 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTAnimation.a;
- remoteRef = 5E9157341DD0AC6500FF2AA8 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 78C398B91ACF4ADC00677621 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTLinking.a;
- remoteRef = 78C398B81ACF4ADC00677621 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 832341B51AAA6A8300B99B32 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTText.a;
- remoteRef = 832341B41AAA6A8300B99B32 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- ADBDB9271DFEBF0700ED6528 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTBlob.a;
- remoteRef = ADBDB9261DFEBF0700ED6528 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- AE049A77213D161800F87971 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libAuroraIMUI.a;
- remoteRef = AE049A76213D161800F87971 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- AE049A79213D161800F87971 = {
- isa = PBXReferenceProxy;
- fileType = wrapper.framework;
- path = RCTAuroraIMUI.framework;
- remoteRef = AE049A78213D161800F87971 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- AE049A7B213D161800F87971 = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- path = RCTAuroraIMUITests.xctest;
- remoteRef = AE049A7A213D161800F87971 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- AE049A7E213D161800F87971 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTJCoreModule.a;
- remoteRef = AE049A7D213D161800F87971 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- AE049A81213D161800F87971 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTJMessageModule.a;
- remoteRef = AE049A80213D161800F87971 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- AE049C02213D234A00F87971 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRNAudio.a;
- remoteRef = AE049C01213D234A00F87971 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- AE049C40213D23CD00F87971 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRNCamera.a;
- remoteRef = AE049C3F213D23CD00F87971 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- AE049C81213D24D700F87971 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRNFS.a;
- remoteRef = AE049C80213D24D700F87971 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- AE049C83213D24D700F87971 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRNFS.a;
- remoteRef = AE049C82213D24D700F87971 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- AE049D15213D263A00F87971 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRNContactsPicker.a;
- remoteRef = AE049D14213D263A00F87971 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- AE049D5E213D266800F87971 = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTContactsWrapper.a;
- remoteRef = AE049D5D213D266800F87971 ;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 00E356EC1AD99517003FC87E = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 13B07F8E1A680F5B00A75B9A = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 13B07FBF1A68108700A75B9A ,
- 13B07FBD1A68108700A75B9A ,
- D84E2FFC6A19488696EE21AA ,
- 98AC2399D01A4A64811E4508 ,
- 8972DB47B7E047B0889EB9C2 ,
- 971CD3D6EC9942ED886A2E54 ,
- AAF748D5D8C147F58F9EB2F2 ,
- F9376D84534C452A91CA267B ,
- D1DC25DB6AFC4D00AC3E7F1B ,
- 187C6ECB3CEB4B31B2E16FC9 ,
- 459A421AC5AF4B9DA72E8894 ,
- 6134CEEAD7D54DAABA957818 ,
- F234437C7A0748FEA1C9DD20 ,
- DEA483078A1B4E3EBF1312E2 ,
- 86D6891C301F403790EABCC1 ,
- 8020C46172B84C50AAEC2B28 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E4791E0B4A5D006451C7 = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2D02E4BD1E0B4A84006451C7 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E48E1E0B4A5D006451C7 = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 00DD1BFF1BD5951E006B06BC = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "Bundle React Native code and images";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
- };
- 2D02E4CB1E0B4B27006451C7 = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "Bundle React Native Code And Images";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
- };
- 00E356EA1AD99517003FC87E = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 00E356F31AD99517003FC87E ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 13B07F871A680F5B00A75B9A = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 13B07FBC1A68108700A75B9A ,
- 13B07FC11A68108700A75B9A ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E4771E0B4A5D006451C7 = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2D02E4BF1E0B4AB3006451C7 ,
- 2D02E4BC1E0B4A80006451C7 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E48C1E0B4A5D006451C7 = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2DCD954D1E0B4F2C00145EB5 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 00E356F51AD99517003FC87E = {
- isa = PBXTargetDependency;
- target = 13B07F861A680F5B00A75B9A ;
- targetProxy = 00E356F41AD99517003FC87E ;
- };
- 2D02E4921E0B4A5D006451C7 = {
- isa = PBXTargetDependency;
- target = 2D02E47A1E0B4A5D006451C7 ;
- targetProxy = 2D02E4911E0B4A5D006451C7 ;
- };
- AE049A85213D168700F87971 = {
- isa = PBXTargetDependency;
- name = RCTAuroraIMUI;
- targetProxy = AE049A84213D168700F87971 ;
- };
- AE049A88213D169A00F87971 = {
- isa = PBXTargetDependency;
- name = RCTWebSocket;
- targetProxy = AE049A87213D169A00F87971 ;
- };
- 13B07FB11A68108700A75B9A = {
- isa = PBXVariantGroup;
- children = (
- 13B07FB21A68108700A75B9A ,
- );
- name = LaunchScreen.xib;
- path = huiliaoJmessage;
- sourceTree = "<group>";
- };
- 00E356F61AD99517003FC87E = {
- isa = XCBuildConfiguration;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
- "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
- "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
- "$(SRCROOT)/../node_modules/react-native-audio/ios",
- "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
- "$(SRCROOT)/../node_modules/react-native-fs/**",
- "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
- "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
- "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
- "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
- );
- INFOPLIST_FILE = huiliaoJmessageTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"$(SRCROOT)/$(TARGET_NAME)/System/Library/Frameworks\"",
- "\"$(SRCROOT)/$(TARGET_NAME)\"",
- );
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- );
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/huiliaoJmessage.app/huiliaoJmessage";
- };
- name = Debug;
- };
- 00E356F71AD99517003FC87E = {
- isa = XCBuildConfiguration;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- COPY_PHASE_STRIP = NO;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
- "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
- "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
- "$(SRCROOT)/../node_modules/react-native-audio/ios",
- "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
- "$(SRCROOT)/../node_modules/react-native-fs/**",
- "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
- "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
- "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
- "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
- );
- INFOPLIST_FILE = huiliaoJmessageTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"$(SRCROOT)/$(TARGET_NAME)/System/Library/Frameworks\"",
- "\"$(SRCROOT)/$(TARGET_NAME)\"",
- );
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- );
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/huiliaoJmessage.app/huiliaoJmessage";
- };
- name = Release;
- };
- 13B07F941A680F5B00A75B9A = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
- CODE_SIGN_ENTITLEMENTS = huiliaoJmessage/huiliaoJmessage.entitlements;
- CURRENT_PROJECT_VERSION = 1;
- DEAD_CODE_STRIPPING = NO;
- DEVELOPMENT_TEAM = 87KURQP592;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule";
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
- "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
- "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
- "$(SRCROOT)/../node_modules/react-native-audio/ios",
- "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
- "$(SRCROOT)/../node_modules/react-native-fs/**",
- "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
- "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
- "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
- "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
- );
- INFOPLIST_FILE = huiliaoJmessage/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- "-framework",
- JMessage,
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.skylinuav.oms;
- PRODUCT_NAME = huiliaoJmessage;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Debug;
- };
- 13B07F951A680F5B00A75B9A = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
- CODE_SIGN_ENTITLEMENTS = huiliaoJmessage/huiliaoJmessage.entitlements;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = 87KURQP592;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule";
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
- "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
- "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
- "$(SRCROOT)/../node_modules/react-native-audio/ios",
- "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
- "$(SRCROOT)/../node_modules/react-native-fs/**",
- "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
- "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
- "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
- "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
- );
- INFOPLIST_FILE = huiliaoJmessage/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- "-framework",
- JMessage,
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.skylinuav.oms;
- PRODUCT_NAME = huiliaoJmessage;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Release;
- };
- 2D02E4971E0B4A5E006451C7 = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_TESTABILITY = YES;
- GCC_NO_COMMON_BLOCKS = YES;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
- "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
- "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
- "$(SRCROOT)/../node_modules/react-native-audio/ios",
- "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
- "$(SRCROOT)/../node_modules/react-native-fs/**",
- "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
- "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
- "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
- "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
- );
- INFOPLIST_FILE = "huiliaoJmessage-tvOS/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"$(SRCROOT)/$(TARGET_NAME)/System/Library/Frameworks\"",
- "\"$(SRCROOT)/$(TARGET_NAME)\"",
- );
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.huiliaoJmessage-tvOS";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = appletvos;
- TARGETED_DEVICE_FAMILY = 3;
- TVOS_DEPLOYMENT_TARGET = 9.2;
- };
- name = Debug;
- };
- 2D02E4981E0B4A5E006451C7 = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- GCC_NO_COMMON_BLOCKS = YES;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
- "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
- "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
- "$(SRCROOT)/../node_modules/react-native-audio/ios",
- "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
- "$(SRCROOT)/../node_modules/react-native-fs/**",
- "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
- "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
- "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
- "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
- );
- INFOPLIST_FILE = "huiliaoJmessage-tvOS/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"$(SRCROOT)/$(TARGET_NAME)/System/Library/Frameworks\"",
- "\"$(SRCROOT)/$(TARGET_NAME)\"",
- );
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.huiliaoJmessage-tvOS";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = appletvos;
- TARGETED_DEVICE_FAMILY = 3;
- TVOS_DEPLOYMENT_TARGET = 9.2;
- };
- name = Release;
- };
- 2D02E4991E0B4A5E006451C7 = {
- isa = XCBuildConfiguration;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_TESTABILITY = YES;
- GCC_NO_COMMON_BLOCKS = YES;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
- "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
- "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
- "$(SRCROOT)/../node_modules/react-native-audio/ios",
- "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
- "$(SRCROOT)/../node_modules/react-native-fs/**",
- "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
- "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
- "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
- "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
- );
- INFOPLIST_FILE = "huiliaoJmessage-tvOSTests/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"$(SRCROOT)/$(TARGET_NAME)/System/Library/Frameworks\"",
- "\"$(SRCROOT)/$(TARGET_NAME)\"",
- );
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.huiliaoJmessage-tvOSTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = appletvos;
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/huiliaoJmessage-tvOS.app/huiliaoJmessage-tvOS";
- TVOS_DEPLOYMENT_TARGET = 10.1;
- };
- name = Debug;
- };
- 2D02E49A1E0B4A5E006451C7 = {
- isa = XCBuildConfiguration;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- GCC_NO_COMMON_BLOCKS = YES;
- HEADER_SEARCH_PATHS = (
- "$(inherited)",
- "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
- "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
- "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
- "$(SRCROOT)/../node_modules/react-native-audio/ios",
- "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
- "$(SRCROOT)/../node_modules/react-native-fs/**",
- "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
- "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
- "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
- "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
- );
- INFOPLIST_FILE = "huiliaoJmessage-tvOSTests/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"$(SRCROOT)/$(TARGET_NAME)/System/Library/Frameworks\"",
- "\"$(SRCROOT)/$(TARGET_NAME)\"",
- );
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.huiliaoJmessage-tvOSTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = appletvos;
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/huiliaoJmessage-tvOS.app/huiliaoJmessage-tvOS";
- TVOS_DEPLOYMENT_TARGET = 10.1;
- };
- name = Release;
- };
- 83CBBA201A601CBA00E9B192 = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- };
- name = Debug;
- };
- 83CBBA211A601CBA00E9B192 = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = YES;
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 00E357021AD99517003FC87E = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 00E356F61AD99517003FC87E ,
- 00E356F71AD99517003FC87E ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 13B07F931A680F5B00A75B9A = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 13B07F941A680F5B00A75B9A ,
- 13B07F951A680F5B00A75B9A ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 2D02E4BA1E0B4A5E006451C7 = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2D02E4971E0B4A5E006451C7 ,
- 2D02E4981E0B4A5E006451C7 ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 2D02E4BB1E0B4A5E006451C7 = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2D02E4991E0B4A5E006451C7 ,
- 2D02E49A1E0B4A5E006451C7 ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 83CBB9FA1A601CBA00E9B192 = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 83CBBA201A601CBA00E9B192 ,
- 83CBBA211A601CBA00E9B192 ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- };
- rootObject = 83CBB9F71A601CBA00E9B192 ;
- }
|