project.pbxproj 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };
  10. 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };
  11. 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };
  12. 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
  13. 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
  14. 00E356F31AD99517003FC87E /* huiliaoJmessageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* huiliaoJmessageTests.m */; };
  15. 064AAB747A504B2CA21E770E /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3AC150135E8F432FBB6D02E0 /* CoreGraphics.framework */; };
  16. 074C882D9E92487D852CD7CA /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4E095F052894127968450A7 /* SystemConfiguration.framework */; };
  17. 08BE8DA1067648B1B25A586C /* libAuroraIMUI.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 25574F59398D4FB9A5FDA71B /* libAuroraIMUI.a */; };
  18. 0D29BDFF02B5412493CE913E /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7E8E0C25D99849418B009946 /* libsqlite3.tbd */; };
  19. 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
  20. 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
  21. 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
  22. 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
  23. 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
  24. 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
  25. 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
  26. 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
  27. 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
  28. 1D5CC392DC7642E49C201C62 /* libRNAudio.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C2BF6DD297C46ABA9839B59 /* libRNAudio.a */; };
  29. 216866CE9A6440C988C7BB0E /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 588A1390BBC94E0C9FA8D708 /* CoreTelephony.framework */; };
  30. 291B7AD588E7494996E9146E /* libRCTJMessageModule.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A3E3E7CA3156458BBAEAFF93 /* libRCTJMessageModule.a */; };
  31. 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
  32. 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
  33. 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
  34. 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
  35. 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
  36. 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
  37. 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
  38. 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
  39. 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
  40. 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
  41. 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
  42. 2DCD954D1E0B4F2C00145EB5 /* huiliaoJmessageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* huiliaoJmessageTests.m */; };
  43. 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
  44. 3188370F8A9A4764A16408E6 /* libRCTContactsWrapper.a in Frameworks */ = {isa = PBXBuildFile; fileRef = E91F2EE193E94E48A1C7C8C5 /* libRCTContactsWrapper.a */; };
  45. 44E25301847245E399C66C16 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BE4869D8725B423EAA362164 /* MobileCoreServices.framework */; };
  46. 4D0C821FC8F742E19537188A /* libRNContactsPicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = E1EF42A233E146438D9ED716 /* libRNContactsPicker.a */; };
  47. 54AD260F28E7441E91F7F969 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3473D7B792D540738F771171 /* CoreFoundation.framework */; };
  48. 5AA21ABE1C4241F2AF3BB289 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8B19AA75A3BB4EAFA3565701 /* Foundation.framework */; };
  49. 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
  50. 635FEF7B4C7F4BB4A08BFA52 /* RCTAuroraIMUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 155FE72366574500883C6899 /* RCTAuroraIMUI.framework */; };
  51. 688E4049CBC746BB858EDB6C /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 833749C947FD4310BE5C99BC /* Security.framework */; };
  52. 7307BF2565E44C0D941CEC84 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B899113D3364DEDB60246E1 /* UserNotifications.framework */; };
  53. 7F71DA663D1B45E99A142B94 /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = EB48F97FB6A44F2D88A05E00 /* libresolv.tbd */; };
  54. 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
  55. 861ED4E811B9479AB7FA17EF /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 886D1967D2DA470DA5711C6F /* libz.tbd */; };
  56. 93C40AD6ADB949E0932603F5 /* libRNCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EAD0B9E850A045A88B66FBB2 /* libRNCamera.a */; };
  57. ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
  58. AE049A82213D168700F87971 /* RCTAuroraIMUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE049A79213D161800F87971 /* RCTAuroraIMUI.framework */; };
  59. AE049A83213D168700F87971 /* RCTAuroraIMUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = AE049A79213D161800F87971 /* RCTAuroraIMUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  60. AE049CCA213D257300F87971 /* RSKImageCropper.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE049CC9213D257300F87971 /* RSKImageCropper.framework */; };
  61. AE049CCB213D257300F87971 /* RSKImageCropper.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = AE049CC9213D257300F87971 /* RSKImageCropper.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  62. AE049CCD213D257600F87971 /* QBImagePicker.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE049CCC213D257600F87971 /* QBImagePicker.framework */; };
  63. AE049CCE213D257600F87971 /* QBImagePicker.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = AE049CCC213D257600F87971 /* QBImagePicker.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  64. BCBCA1A513F74E8F9D9C8595 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6797285F5A9C43FB9927A19B /* CFNetwork.framework */; };
  65. C0F43A10F753443D95DE8B73 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D1F5F9475024EEE83F6DBB8 /* UIKit.framework */; };
  66. CBD736BE4622452A94BEFBBC /* RCTAuroraIMUITests.xctest in Frameworks */ = {isa = PBXBuildFile; fileRef = 51C61B755D5045FA9707DA64 /* RCTAuroraIMUITests.xctest */; };
  67. CFE22D51937E4F9F89FCC441 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 416FCCA1725B412F85A0AC36 /* CoreAudio.framework */; };
  68. E909873F99824DE7AAB3BFE7 /* libRNFS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 64E325F9DBB14DAB9BB2EE79 /* libRNFS.a */; };
  69. F2B8C0240BF74E5CAB4D2BFF /* libRCTJCoreModule.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2AF2DC2470EF4D55913FB94E /* libRCTJCoreModule.a */; };
  70. FAD549D1A95545E69E3FC13D /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B073602D2D5A46098FDDF425 /* AudioToolbox.framework */; };
  71. 71358FB36B0F4F24804959DC /* libRNSound.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8676D00828A449229AA7705E /* libRNSound.a */; };
  72. D84E2FFC6A19488696EE21AA /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 28A89B354A284258B08B5B20 /* Entypo.ttf */; };
  73. 98AC2399D01A4A64811E4508 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 430EAE10CDD1407CA049C4FD /* EvilIcons.ttf */; };
  74. 8972DB47B7E047B0889EB9C2 /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4D287E8D57184E9CBCBBC27E /* Feather.ttf */; };
  75. 971CD3D6EC9942ED886A2E54 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4DD6600ED364450BB780C6BB /* FontAwesome.ttf */; };
  76. AAF748D5D8C147F58F9EB2F2 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C67DE23DA0DE4EE6A4B7D7A4 /* Foundation.ttf */; };
  77. F9376D84534C452A91CA267B /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7415C27A29A74683B3DF7170 /* Ionicons.ttf */; };
  78. D1DC25DB6AFC4D00AC3E7F1B /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 84ACC0924D584902B51922DE /* MaterialCommunityIcons.ttf */; };
  79. 187C6ECB3CEB4B31B2E16FC9 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9359EC8F1203489ABA5718EC /* MaterialIcons.ttf */; };
  80. 459A421AC5AF4B9DA72E8894 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FCC37EF8CA474D9483BC085B /* Octicons.ttf */; };
  81. 6134CEEAD7D54DAABA957818 /* Roboto_medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 84DFFDD6B05C45EF92E64E66 /* Roboto_medium.ttf */; };
  82. F234437C7A0748FEA1C9DD20 /* Roboto.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 27AD2E4747F7426C9E5BA08C /* Roboto.ttf */; };
  83. DEA483078A1B4E3EBF1312E2 /* rubicon-icon-font.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9CCB7155805846CA9C63947B /* rubicon-icon-font.ttf */; };
  84. 86D6891C301F403790EABCC1 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 700710D52AFF4894AD1A4F76 /* SimpleLineIcons.ttf */; };
  85. 8020C46172B84C50AAEC2B28 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1BDA8963E3154FED973B31E8 /* Zocial.ttf */; };
  86. 95ACDE8C78F942B2A92D6B1A /* libimageCropPicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 32CBEAC709FE4376BF79BC7E /* libimageCropPicker.a */; };
  87. /* End PBXBuildFile section */
  88. /* Begin PBXContainerItemProxy section */
  89. 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
  90. isa = PBXContainerItemProxy;
  91. containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
  92. proxyType = 2;
  93. remoteGlobalIDString = 134814201AA4EA6300B7C361;
  94. remoteInfo = RCTActionSheet;
  95. };
  96. 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
  97. isa = PBXContainerItemProxy;
  98. containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
  99. proxyType = 2;
  100. remoteGlobalIDString = 134814201AA4EA6300B7C361;
  101. remoteInfo = RCTGeolocation;
  102. };
  103. 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
  104. isa = PBXContainerItemProxy;
  105. containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
  106. proxyType = 2;
  107. remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
  108. remoteInfo = RCTImage;
  109. };
  110. 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
  111. isa = PBXContainerItemProxy;
  112. containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
  113. proxyType = 2;
  114. remoteGlobalIDString = 58B511DB1A9E6C8500147676;
  115. remoteInfo = RCTNetwork;
  116. };
  117. 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
  118. isa = PBXContainerItemProxy;
  119. containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
  120. proxyType = 2;
  121. remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
  122. remoteInfo = RCTVibration;
  123. };
  124. 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
  125. isa = PBXContainerItemProxy;
  126. containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
  127. proxyType = 1;
  128. remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
  129. remoteInfo = huiliaoJmessage;
  130. };
  131. 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
  132. isa = PBXContainerItemProxy;
  133. containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
  134. proxyType = 2;
  135. remoteGlobalIDString = 134814201AA4EA6300B7C361;
  136. remoteInfo = RCTSettings;
  137. };
  138. 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
  139. isa = PBXContainerItemProxy;
  140. containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
  141. proxyType = 2;
  142. remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
  143. remoteInfo = RCTWebSocket;
  144. };
  145. 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
  146. isa = PBXContainerItemProxy;
  147. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  148. proxyType = 2;
  149. remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
  150. remoteInfo = React;
  151. };
  152. 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
  153. isa = PBXContainerItemProxy;
  154. containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
  155. proxyType = 1;
  156. remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
  157. remoteInfo = "huiliaoJmessage-tvOS";
  158. };
  159. 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
  160. isa = PBXContainerItemProxy;
  161. containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
  162. proxyType = 2;
  163. remoteGlobalIDString = ADD01A681E09402E00F6D226;
  164. remoteInfo = "RCTBlob-tvOS";
  165. };
  166. 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
  167. isa = PBXContainerItemProxy;
  168. containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
  169. proxyType = 2;
  170. remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
  171. remoteInfo = fishhook;
  172. };
  173. 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
  174. isa = PBXContainerItemProxy;
  175. containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
  176. proxyType = 2;
  177. remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
  178. remoteInfo = "fishhook-tvOS";
  179. };
  180. 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = {
  181. isa = PBXContainerItemProxy;
  182. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  183. proxyType = 2;
  184. remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
  185. remoteInfo = jsinspector;
  186. };
  187. 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = {
  188. isa = PBXContainerItemProxy;
  189. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  190. proxyType = 2;
  191. remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
  192. remoteInfo = "jsinspector-tvOS";
  193. };
  194. 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = {
  195. isa = PBXContainerItemProxy;
  196. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  197. proxyType = 2;
  198. remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
  199. remoteInfo = "third-party";
  200. };
  201. 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = {
  202. isa = PBXContainerItemProxy;
  203. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  204. proxyType = 2;
  205. remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
  206. remoteInfo = "third-party-tvOS";
  207. };
  208. 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = {
  209. isa = PBXContainerItemProxy;
  210. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  211. proxyType = 2;
  212. remoteGlobalIDString = 139D7E881E25C6D100323FB7;
  213. remoteInfo = "double-conversion";
  214. };
  215. 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = {
  216. isa = PBXContainerItemProxy;
  217. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  218. proxyType = 2;
  219. remoteGlobalIDString = 3D383D621EBD27B9005632C8;
  220. remoteInfo = "double-conversion-tvOS";
  221. };
  222. 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = {
  223. isa = PBXContainerItemProxy;
  224. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  225. proxyType = 2;
  226. remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
  227. remoteInfo = privatedata;
  228. };
  229. 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = {
  230. isa = PBXContainerItemProxy;
  231. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  232. proxyType = 2;
  233. remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
  234. remoteInfo = "privatedata-tvOS";
  235. };
  236. 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  237. isa = PBXContainerItemProxy;
  238. containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
  239. proxyType = 2;
  240. remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
  241. remoteInfo = "RCTImage-tvOS";
  242. };
  243. 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  244. isa = PBXContainerItemProxy;
  245. containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
  246. proxyType = 2;
  247. remoteGlobalIDString = 2D2A28471D9B043800D4039D;
  248. remoteInfo = "RCTLinking-tvOS";
  249. };
  250. 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  251. isa = PBXContainerItemProxy;
  252. containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
  253. proxyType = 2;
  254. remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
  255. remoteInfo = "RCTNetwork-tvOS";
  256. };
  257. 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  258. isa = PBXContainerItemProxy;
  259. containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
  260. proxyType = 2;
  261. remoteGlobalIDString = 2D2A28611D9B046600D4039D;
  262. remoteInfo = "RCTSettings-tvOS";
  263. };
  264. 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  265. isa = PBXContainerItemProxy;
  266. containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
  267. proxyType = 2;
  268. remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
  269. remoteInfo = "RCTText-tvOS";
  270. };
  271. 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  272. isa = PBXContainerItemProxy;
  273. containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
  274. proxyType = 2;
  275. remoteGlobalIDString = 2D2A28881D9B049200D4039D;
  276. remoteInfo = "RCTWebSocket-tvOS";
  277. };
  278. 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  279. isa = PBXContainerItemProxy;
  280. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  281. proxyType = 2;
  282. remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
  283. remoteInfo = "React-tvOS";
  284. };
  285. 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  286. isa = PBXContainerItemProxy;
  287. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  288. proxyType = 2;
  289. remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
  290. remoteInfo = yoga;
  291. };
  292. 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  293. isa = PBXContainerItemProxy;
  294. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  295. proxyType = 2;
  296. remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
  297. remoteInfo = "yoga-tvOS";
  298. };
  299. 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  300. isa = PBXContainerItemProxy;
  301. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  302. proxyType = 2;
  303. remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
  304. remoteInfo = cxxreact;
  305. };
  306. 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  307. isa = PBXContainerItemProxy;
  308. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  309. proxyType = 2;
  310. remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
  311. remoteInfo = "cxxreact-tvOS";
  312. };
  313. 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  314. isa = PBXContainerItemProxy;
  315. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  316. proxyType = 2;
  317. remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
  318. remoteInfo = jschelpers;
  319. };
  320. 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  321. isa = PBXContainerItemProxy;
  322. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  323. proxyType = 2;
  324. remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
  325. remoteInfo = "jschelpers-tvOS";
  326. };
  327. 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
  328. isa = PBXContainerItemProxy;
  329. containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
  330. proxyType = 2;
  331. remoteGlobalIDString = 134814201AA4EA6300B7C361;
  332. remoteInfo = RCTAnimation;
  333. };
  334. 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
  335. isa = PBXContainerItemProxy;
  336. containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
  337. proxyType = 2;
  338. remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
  339. remoteInfo = "RCTAnimation-tvOS";
  340. };
  341. 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
  342. isa = PBXContainerItemProxy;
  343. containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
  344. proxyType = 2;
  345. remoteGlobalIDString = 134814201AA4EA6300B7C361;
  346. remoteInfo = RCTLinking;
  347. };
  348. 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
  349. isa = PBXContainerItemProxy;
  350. containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
  351. proxyType = 2;
  352. remoteGlobalIDString = 58B5119B1A9E6C1200147676;
  353. remoteInfo = RCTText;
  354. };
  355. ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
  356. isa = PBXContainerItemProxy;
  357. containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
  358. proxyType = 2;
  359. remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
  360. remoteInfo = RCTBlob;
  361. };
  362. AE049A76213D161800F87971 /* PBXContainerItemProxy */ = {
  363. isa = PBXContainerItemProxy;
  364. containerPortal = 9EC10A83FC7C45D588BD4B46 /* RCTAuroraIMUI.xcodeproj */;
  365. proxyType = 2;
  366. remoteGlobalIDString = 6239E6641EDDB1F700B9AC9C;
  367. remoteInfo = AuroraIMUI;
  368. };
  369. AE049A78213D161800F87971 /* PBXContainerItemProxy */ = {
  370. isa = PBXContainerItemProxy;
  371. containerPortal = 9EC10A83FC7C45D588BD4B46 /* RCTAuroraIMUI.xcodeproj */;
  372. proxyType = 2;
  373. remoteGlobalIDString = 623EA9991EE55D0800EC43AE;
  374. remoteInfo = RCTAuroraIMUI;
  375. };
  376. AE049A7A213D161800F87971 /* PBXContainerItemProxy */ = {
  377. isa = PBXContainerItemProxy;
  378. containerPortal = 9EC10A83FC7C45D588BD4B46 /* RCTAuroraIMUI.xcodeproj */;
  379. proxyType = 2;
  380. remoteGlobalIDString = 623EA9A11EE55D0800EC43AE;
  381. remoteInfo = RCTAuroraIMUITests;
  382. };
  383. AE049A7D213D161800F87971 /* PBXContainerItemProxy */ = {
  384. isa = PBXContainerItemProxy;
  385. containerPortal = 94D85684CD3846BE9F43D158 /* RCTJCoreModule.xcodeproj */;
  386. proxyType = 2;
  387. remoteGlobalIDString = 6212E9B41F3990DC00BDF51A;
  388. remoteInfo = RCTJCoreModule;
  389. };
  390. AE049A80213D161800F87971 /* PBXContainerItemProxy */ = {
  391. isa = PBXContainerItemProxy;
  392. containerPortal = A87BA7F6425844BC8FB1129E /* RCTJMessageModule.xcodeproj */;
  393. proxyType = 2;
  394. remoteGlobalIDString = 6212EB151F3C34BB00BDF51A;
  395. remoteInfo = RCTJMessageModule;
  396. };
  397. AE049A84213D168700F87971 /* PBXContainerItemProxy */ = {
  398. isa = PBXContainerItemProxy;
  399. containerPortal = 9EC10A83FC7C45D588BD4B46 /* RCTAuroraIMUI.xcodeproj */;
  400. proxyType = 1;
  401. remoteGlobalIDString = 623EA9981EE55D0800EC43AE;
  402. remoteInfo = RCTAuroraIMUI;
  403. };
  404. AE049A87213D169A00F87971 /* PBXContainerItemProxy */ = {
  405. isa = PBXContainerItemProxy;
  406. containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
  407. proxyType = 1;
  408. remoteGlobalIDString = 3C86DF451ADF2C930047B81A;
  409. remoteInfo = RCTWebSocket;
  410. };
  411. AE049C01213D234A00F87971 /* PBXContainerItemProxy */ = {
  412. isa = PBXContainerItemProxy;
  413. containerPortal = C5F99CD15EF24D31B11BDB0C /* RNAudio.xcodeproj */;
  414. proxyType = 2;
  415. remoteGlobalIDString = 42F559BA1CFC90C400DC3F84;
  416. remoteInfo = RNAudio;
  417. };
  418. AE049C3F213D23CD00F87971 /* PBXContainerItemProxy */ = {
  419. isa = PBXContainerItemProxy;
  420. containerPortal = CDCDB64F6D1C4D1B86F96FF9 /* RNCamera.xcodeproj */;
  421. proxyType = 2;
  422. remoteGlobalIDString = 4107012F1ACB723B00C6AA39;
  423. remoteInfo = RNCamera;
  424. };
  425. AE049C80213D24D700F87971 /* PBXContainerItemProxy */ = {
  426. isa = PBXContainerItemProxy;
  427. containerPortal = 6157CA0EBAC54D6CAC58EF72 /* RNFS.xcodeproj */;
  428. proxyType = 2;
  429. remoteGlobalIDString = F12AFB9B1ADAF8F800E0535D;
  430. remoteInfo = RNFS;
  431. };
  432. AE049C82213D24D700F87971 /* PBXContainerItemProxy */ = {
  433. isa = PBXContainerItemProxy;
  434. containerPortal = 6157CA0EBAC54D6CAC58EF72 /* RNFS.xcodeproj */;
  435. proxyType = 2;
  436. remoteGlobalIDString = 6456441F1EB8DA9100672408;
  437. remoteInfo = "RNFS-tvOS";
  438. };
  439. AE049D14213D263A00F87971 /* PBXContainerItemProxy */ = {
  440. isa = PBXContainerItemProxy;
  441. containerPortal = DEAC4455559A4918AC1E987A /* RNContactsPicker.xcodeproj */;
  442. proxyType = 2;
  443. remoteGlobalIDString = F32424381F67FFC700255A5B;
  444. remoteInfo = RNContactsPicker;
  445. };
  446. AE049D5D213D266800F87971 /* PBXContainerItemProxy */ = {
  447. isa = PBXContainerItemProxy;
  448. containerPortal = DC2BD6B46B9A4DDA8D1D2C9F /* ContactsWrapper.xcodeproj */;
  449. proxyType = 2;
  450. remoteGlobalIDString = 2B58405A1D10DE8700235F31;
  451. remoteInfo = RCTContactsWrapper;
  452. };
  453. /* End PBXContainerItemProxy section */
  454. /* Begin PBXCopyFilesBuildPhase section */
  455. AE049A86213D168800F87971 /* Embed Frameworks */ = {
  456. isa = PBXCopyFilesBuildPhase;
  457. buildActionMask = 2147483647;
  458. dstPath = "";
  459. dstSubfolderSpec = 10;
  460. files = (
  461. AE049A83213D168700F87971 /* RCTAuroraIMUI.framework in Embed Frameworks */,
  462. AE049CCB213D257300F87971 /* RSKImageCropper.framework in Embed Frameworks */,
  463. AE049CCE213D257600F87971 /* QBImagePicker.framework in Embed Frameworks */,
  464. );
  465. name = "Embed Frameworks";
  466. runOnlyForDeploymentPostprocessing = 0;
  467. };
  468. /* End PBXCopyFilesBuildPhase section */
  469. /* Begin PBXFileReference section */
  470. 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
  471. 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = "<group>"; };
  472. 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = "<group>"; };
  473. 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = "<group>"; };
  474. 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = "<group>"; };
  475. 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = "<group>"; };
  476. 00E356EE1AD99517003FC87E /* huiliaoJmessageTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = huiliaoJmessageTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  477. 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  478. 00E356F21AD99517003FC87E /* huiliaoJmessageTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = huiliaoJmessageTests.m; sourceTree = "<group>"; };
  479. 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
  480. 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
  481. 13B07F961A680F5B00A75B9A /* huiliaoJmessage.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = huiliaoJmessage.app; sourceTree = BUILT_PRODUCTS_DIR; };
  482. 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = huiliaoJmessage/AppDelegate.h; sourceTree = "<group>"; };
  483. 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = huiliaoJmessage/AppDelegate.m; sourceTree = "<group>"; };
  484. 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
  485. 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = huiliaoJmessage/Images.xcassets; sourceTree = "<group>"; };
  486. 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = huiliaoJmessage/Info.plist; sourceTree = "<group>"; };
  487. 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = huiliaoJmessage/main.m; sourceTree = "<group>"; };
  488. 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
  489. 155FE72366574500883C6899 /* RCTAuroraIMUI.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = RCTAuroraIMUI.framework; path = System/Library/Frameworks/RCTAuroraIMUI.framework; sourceTree = SDKROOT; };
  490. 1B899113D3364DEDB60246E1 /* UserNotifications.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
  491. 1D1F5F9475024EEE83F6DBB8 /* UIKit.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  492. 25574F59398D4FB9A5FDA71B /* libAuroraIMUI.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libAuroraIMUI.a; sourceTree = "<group>"; };
  493. 2AF2DC2470EF4D55913FB94E /* libRCTJCoreModule.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTJCoreModule.a; sourceTree = "<group>"; };
  494. 2C2BF6DD297C46ABA9839B59 /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNAudio.a; sourceTree = "<group>"; };
  495. 2D02E47B1E0B4A5D006451C7 /* huiliaoJmessage-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "huiliaoJmessage-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  496. 2D02E4901E0B4A5D006451C7 /* huiliaoJmessage-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "huiliaoJmessage-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
  497. 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
  498. 3473D7B792D540738F771171 /* CoreFoundation.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
  499. 3AC150135E8F432FBB6D02E0 /* CoreGraphics.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  500. 416FCCA1725B412F85A0AC36 /* CoreAudio.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
  501. 51C61B755D5045FA9707DA64 /* RCTAuroraIMUITests.xctest */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.cfbundle; path = RCTAuroraIMUITests.xctest; sourceTree = "<group>"; };
  502. 588A1390BBC94E0C9FA8D708 /* CoreTelephony.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
  503. 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
  504. 6157CA0EBAC54D6CAC58EF72 /* RNFS.xcodeproj */ = {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>"; };
  505. 64E325F9DBB14DAB9BB2EE79 /* libRNFS.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNFS.a; sourceTree = "<group>"; };
  506. 6797285F5A9C43FB9927A19B /* CFNetwork.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
  507. 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
  508. 7E8E0C25D99849418B009946 /* libsqlite3.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
  509. 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
  510. 833749C947FD4310BE5C99BC /* Security.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
  511. 886D1967D2DA470DA5711C6F /* libz.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  512. 8B19AA75A3BB4EAFA3565701 /* Foundation.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  513. 94D85684CD3846BE9F43D158 /* RCTJCoreModule.xcodeproj */ = {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>"; };
  514. 9EC10A83FC7C45D588BD4B46 /* RCTAuroraIMUI.xcodeproj */ = {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>"; };
  515. A3E3E7CA3156458BBAEAFF93 /* libRCTJMessageModule.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTJMessageModule.a; sourceTree = "<group>"; };
  516. A87BA7F6425844BC8FB1129E /* RCTJMessageModule.xcodeproj */ = {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>"; };
  517. ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = "<group>"; };
  518. AE049BC6213D207100F87971 /* huiliaoJmessage.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = huiliaoJmessage.entitlements; path = huiliaoJmessage/huiliaoJmessage.entitlements; sourceTree = "<group>"; };
  519. AE049CC9213D257300F87971 /* RSKImageCropper.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RSKImageCropper.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  520. AE049CCC213D257600F87971 /* QBImagePicker.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = QBImagePicker.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  521. B073602D2D5A46098FDDF425 /* AudioToolbox.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  522. B4E095F052894127968450A7 /* SystemConfiguration.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  523. BE4869D8725B423EAA362164 /* MobileCoreServices.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
  524. C5F99CD15EF24D31B11BDB0C /* RNAudio.xcodeproj */ = {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>"; };
  525. CDCDB64F6D1C4D1B86F96FF9 /* RNCamera.xcodeproj */ = {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>"; };
  526. DC2BD6B46B9A4DDA8D1D2C9F /* ContactsWrapper.xcodeproj */ = {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>"; };
  527. DEAC4455559A4918AC1E987A /* RNContactsPicker.xcodeproj */ = {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>"; };
  528. E1EF42A233E146438D9ED716 /* libRNContactsPicker.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNContactsPicker.a; sourceTree = "<group>"; };
  529. E91F2EE193E94E48A1C7C8C5 /* libRCTContactsWrapper.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTContactsWrapper.a; sourceTree = "<group>"; };
  530. EAD0B9E850A045A88B66FBB2 /* libRNCamera.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNCamera.a; sourceTree = "<group>"; };
  531. EB48F97FB6A44F2D88A05E00 /* libresolv.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libresolv.tbd; path = usr/lib/libresolv.tbd; sourceTree = SDKROOT; };
  532. A81D4CD56C6046629AF6D304 /* RNSound.xcodeproj */ = {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; };
  533. 8676D00828A449229AA7705E /* libRNSound.a */ = {isa = PBXFileReference; name = "libRNSound.a"; path = "libRNSound.a"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; };
  534. 28A89B354A284258B08B5B20 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/native-base/Fonts/Entypo.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
  535. 430EAE10CDD1407CA049C4FD /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/native-base/Fonts/EvilIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
  536. 4D287E8D57184E9CBCBBC27E /* Feather.ttf */ = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/native-base/Fonts/Feather.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
  537. 4DD6600ED364450BB780C6BB /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/native-base/Fonts/FontAwesome.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
  538. C67DE23DA0DE4EE6A4B7D7A4 /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/native-base/Fonts/Foundation.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
  539. 7415C27A29A74683B3DF7170 /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/native-base/Fonts/Ionicons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
  540. 84ACC0924D584902B51922DE /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/native-base/Fonts/MaterialCommunityIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
  541. 9359EC8F1203489ABA5718EC /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/native-base/Fonts/MaterialIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
  542. FCC37EF8CA474D9483BC085B /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/native-base/Fonts/Octicons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
  543. 84DFFDD6B05C45EF92E64E66 /* Roboto_medium.ttf */ = {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; };
  544. 27AD2E4747F7426C9E5BA08C /* Roboto.ttf */ = {isa = PBXFileReference; name = "Roboto.ttf"; path = "../node_modules/native-base/Fonts/Roboto.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
  545. 9CCB7155805846CA9C63947B /* rubicon-icon-font.ttf */ = {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; };
  546. 700710D52AFF4894AD1A4F76 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/native-base/Fonts/SimpleLineIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
  547. 1BDA8963E3154FED973B31E8 /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/native-base/Fonts/Zocial.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
  548. 12CD1E2BA0264A12954FDB85 /* imageCropPicker.xcodeproj */ = {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; };
  549. 32CBEAC709FE4376BF79BC7E /* libimageCropPicker.a */ = {isa = PBXFileReference; name = "libimageCropPicker.a"; path = "libimageCropPicker.a"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; };
  550. /* End PBXFileReference section */
  551. /* Begin PBXFrameworksBuildPhase section */
  552. 00E356EB1AD99517003FC87E /* Frameworks */ = {
  553. isa = PBXFrameworksBuildPhase;
  554. buildActionMask = 2147483647;
  555. files = (
  556. 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
  557. );
  558. runOnlyForDeploymentPostprocessing = 0;
  559. };
  560. 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
  561. isa = PBXFrameworksBuildPhase;
  562. buildActionMask = 2147483647;
  563. files = (
  564. ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
  565. 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
  566. 146834051AC3E58100842450 /* libReact.a in Frameworks */,
  567. 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
  568. AE049A82213D168700F87971 /* RCTAuroraIMUI.framework in Frameworks */,
  569. 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
  570. 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
  571. 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
  572. 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
  573. 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
  574. 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
  575. 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
  576. 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
  577. 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
  578. 08BE8DA1067648B1B25A586C /* libAuroraIMUI.a in Frameworks */,
  579. AE049CCD213D257600F87971 /* QBImagePicker.framework in Frameworks */,
  580. 635FEF7B4C7F4BB4A08BFA52 /* RCTAuroraIMUI.framework in Frameworks */,
  581. CBD736BE4622452A94BEFBBC /* RCTAuroraIMUITests.xctest in Frameworks */,
  582. 861ED4E811B9479AB7FA17EF /* libz.tbd in Frameworks */,
  583. 216866CE9A6440C988C7BB0E /* CoreTelephony.framework in Frameworks */,
  584. BCBCA1A513F74E8F9D9C8595 /* CFNetwork.framework in Frameworks */,
  585. 54AD260F28E7441E91F7F969 /* CoreFoundation.framework in Frameworks */,
  586. 074C882D9E92487D852CD7CA /* SystemConfiguration.framework in Frameworks */,
  587. AE049CCA213D257300F87971 /* RSKImageCropper.framework in Frameworks */,
  588. 5AA21ABE1C4241F2AF3BB289 /* Foundation.framework in Frameworks */,
  589. C0F43A10F753443D95DE8B73 /* UIKit.framework in Frameworks */,
  590. 064AAB747A504B2CA21E770E /* CoreGraphics.framework in Frameworks */,
  591. F2B8C0240BF74E5CAB4D2BFF /* libRCTJCoreModule.a in Frameworks */,
  592. 291B7AD588E7494996E9146E /* libRCTJMessageModule.a in Frameworks */,
  593. 7307BF2565E44C0D941CEC84 /* UserNotifications.framework in Frameworks */,
  594. 688E4049CBC746BB858EDB6C /* Security.framework in Frameworks */,
  595. 7F71DA663D1B45E99A142B94 /* libresolv.tbd in Frameworks */,
  596. CFE22D51937E4F9F89FCC441 /* CoreAudio.framework in Frameworks */,
  597. FAD549D1A95545E69E3FC13D /* AudioToolbox.framework in Frameworks */,
  598. 44E25301847245E399C66C16 /* MobileCoreServices.framework in Frameworks */,
  599. 0D29BDFF02B5412493CE913E /* libsqlite3.tbd in Frameworks */,
  600. 1D5CC392DC7642E49C201C62 /* libRNAudio.a in Frameworks */,
  601. 93C40AD6ADB949E0932603F5 /* libRNCamera.a in Frameworks */,
  602. E909873F99824DE7AAB3BFE7 /* libRNFS.a in Frameworks */,
  603. 4D0C821FC8F742E19537188A /* libRNContactsPicker.a in Frameworks */,
  604. 3188370F8A9A4764A16408E6 /* libRCTContactsWrapper.a in Frameworks */,
  605. 71358FB36B0F4F24804959DC /* libRNSound.a in Frameworks */,
  606. 95ACDE8C78F942B2A92D6B1A /* libimageCropPicker.a in Frameworks */,
  607. );
  608. runOnlyForDeploymentPostprocessing = 0;
  609. };
  610. 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
  611. isa = PBXFrameworksBuildPhase;
  612. buildActionMask = 2147483647;
  613. files = (
  614. 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */,
  615. 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
  616. 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
  617. 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
  618. 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
  619. 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
  620. 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
  621. 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
  622. );
  623. runOnlyForDeploymentPostprocessing = 0;
  624. };
  625. 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
  626. isa = PBXFrameworksBuildPhase;
  627. buildActionMask = 2147483647;
  628. files = (
  629. 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */,
  630. );
  631. runOnlyForDeploymentPostprocessing = 0;
  632. };
  633. /* End PBXFrameworksBuildPhase section */
  634. /* Begin PBXGroup section */
  635. 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
  636. isa = PBXGroup;
  637. children = (
  638. 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
  639. );
  640. name = Products;
  641. sourceTree = "<group>";
  642. };
  643. 00C302B61ABCB90400DB3ED1 /* Products */ = {
  644. isa = PBXGroup;
  645. children = (
  646. 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
  647. );
  648. name = Products;
  649. sourceTree = "<group>";
  650. };
  651. 00C302BC1ABCB91800DB3ED1 /* Products */ = {
  652. isa = PBXGroup;
  653. children = (
  654. 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
  655. 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
  656. );
  657. name = Products;
  658. sourceTree = "<group>";
  659. };
  660. 00C302D41ABCB9D200DB3ED1 /* Products */ = {
  661. isa = PBXGroup;
  662. children = (
  663. 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
  664. 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
  665. );
  666. name = Products;
  667. sourceTree = "<group>";
  668. };
  669. 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
  670. isa = PBXGroup;
  671. children = (
  672. 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
  673. );
  674. name = Products;
  675. sourceTree = "<group>";
  676. };
  677. 00E356EF1AD99517003FC87E /* huiliaoJmessageTests */ = {
  678. isa = PBXGroup;
  679. children = (
  680. 00E356F21AD99517003FC87E /* huiliaoJmessageTests.m */,
  681. 00E356F01AD99517003FC87E /* Supporting Files */,
  682. );
  683. path = huiliaoJmessageTests;
  684. sourceTree = "<group>";
  685. };
  686. 00E356F01AD99517003FC87E /* Supporting Files */ = {
  687. isa = PBXGroup;
  688. children = (
  689. 00E356F11AD99517003FC87E /* Info.plist */,
  690. );
  691. name = "Supporting Files";
  692. sourceTree = "<group>";
  693. };
  694. 139105B71AF99BAD00B5F7CC /* Products */ = {
  695. isa = PBXGroup;
  696. children = (
  697. 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
  698. 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
  699. );
  700. name = Products;
  701. sourceTree = "<group>";
  702. };
  703. 139FDEE71B06529A00C62182 /* Products */ = {
  704. isa = PBXGroup;
  705. children = (
  706. 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
  707. 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
  708. 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */,
  709. 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */,
  710. );
  711. name = Products;
  712. sourceTree = "<group>";
  713. };
  714. 13B07FAE1A68108700A75B9A /* huiliaoJmessage */ = {
  715. isa = PBXGroup;
  716. children = (
  717. AE049BC6213D207100F87971 /* huiliaoJmessage.entitlements */,
  718. 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
  719. 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
  720. 13B07FB01A68108700A75B9A /* AppDelegate.m */,
  721. 13B07FB51A68108700A75B9A /* Images.xcassets */,
  722. 13B07FB61A68108700A75B9A /* Info.plist */,
  723. 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
  724. 13B07FB71A68108700A75B9A /* main.m */,
  725. );
  726. name = huiliaoJmessage;
  727. sourceTree = "<group>";
  728. };
  729. 146834001AC3E56700842450 /* Products */ = {
  730. isa = PBXGroup;
  731. children = (
  732. 146834041AC3E56700842450 /* libReact.a */,
  733. 3DAD3EA31DF850E9000B6D8A /* libReact.a */,
  734. 3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
  735. 3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
  736. 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
  737. 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
  738. 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
  739. 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
  740. 2DF0FFDF2056DD460020B375 /* libjsinspector.a */,
  741. 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */,
  742. 2DF0FFE32056DD460020B375 /* libthird-party.a */,
  743. 2DF0FFE52056DD460020B375 /* libthird-party.a */,
  744. 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */,
  745. 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */,
  746. 2DF0FFEB2056DD460020B375 /* libprivatedata.a */,
  747. 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */,
  748. );
  749. name = Products;
  750. sourceTree = "<group>";
  751. };
  752. 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
  753. isa = PBXGroup;
  754. children = (
  755. 2D16E6891FA4F8E400B85C8A /* libReact.a */,
  756. 886D1967D2DA470DA5711C6F /* libz.tbd */,
  757. 588A1390BBC94E0C9FA8D708 /* CoreTelephony.framework */,
  758. 6797285F5A9C43FB9927A19B /* CFNetwork.framework */,
  759. 3473D7B792D540738F771171 /* CoreFoundation.framework */,
  760. B4E095F052894127968450A7 /* SystemConfiguration.framework */,
  761. 8B19AA75A3BB4EAFA3565701 /* Foundation.framework */,
  762. 1D1F5F9475024EEE83F6DBB8 /* UIKit.framework */,
  763. 3AC150135E8F432FBB6D02E0 /* CoreGraphics.framework */,
  764. 1B899113D3364DEDB60246E1 /* UserNotifications.framework */,
  765. 833749C947FD4310BE5C99BC /* Security.framework */,
  766. EB48F97FB6A44F2D88A05E00 /* libresolv.tbd */,
  767. 416FCCA1725B412F85A0AC36 /* CoreAudio.framework */,
  768. B073602D2D5A46098FDDF425 /* AudioToolbox.framework */,
  769. BE4869D8725B423EAA362164 /* MobileCoreServices.framework */,
  770. 7E8E0C25D99849418B009946 /* libsqlite3.tbd */,
  771. );
  772. name = Frameworks;
  773. sourceTree = "<group>";
  774. };
  775. 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
  776. isa = PBXGroup;
  777. children = (
  778. 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
  779. 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
  780. );
  781. name = Products;
  782. sourceTree = "<group>";
  783. };
  784. 78C398B11ACF4ADC00677621 /* Products */ = {
  785. isa = PBXGroup;
  786. children = (
  787. 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
  788. 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
  789. );
  790. name = Products;
  791. sourceTree = "<group>";
  792. };
  793. 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
  794. isa = PBXGroup;
  795. children = (
  796. 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
  797. 146833FF1AC3E56700842450 /* React.xcodeproj */,
  798. 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
  799. ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
  800. 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
  801. 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
  802. 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
  803. 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
  804. 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
  805. 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
  806. 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
  807. 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
  808. 9EC10A83FC7C45D588BD4B46 /* RCTAuroraIMUI.xcodeproj */,
  809. 94D85684CD3846BE9F43D158 /* RCTJCoreModule.xcodeproj */,
  810. A87BA7F6425844BC8FB1129E /* RCTJMessageModule.xcodeproj */,
  811. C5F99CD15EF24D31B11BDB0C /* RNAudio.xcodeproj */,
  812. CDCDB64F6D1C4D1B86F96FF9 /* RNCamera.xcodeproj */,
  813. 6157CA0EBAC54D6CAC58EF72 /* RNFS.xcodeproj */,
  814. DEAC4455559A4918AC1E987A /* RNContactsPicker.xcodeproj */,
  815. DC2BD6B46B9A4DDA8D1D2C9F /* ContactsWrapper.xcodeproj */,
  816. A81D4CD56C6046629AF6D304 /* RNSound.xcodeproj */,
  817. 12CD1E2BA0264A12954FDB85 /* imageCropPicker.xcodeproj */,
  818. );
  819. name = Libraries;
  820. sourceTree = "<group>";
  821. };
  822. 832341B11AAA6A8300B99B32 /* Products */ = {
  823. isa = PBXGroup;
  824. children = (
  825. 832341B51AAA6A8300B99B32 /* libRCTText.a */,
  826. 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
  827. );
  828. name = Products;
  829. sourceTree = "<group>";
  830. };
  831. 83CBB9F61A601CBA00E9B192 = {
  832. isa = PBXGroup;
  833. children = (
  834. AE049CCC213D257600F87971 /* QBImagePicker.framework */,
  835. AE049CC9213D257300F87971 /* RSKImageCropper.framework */,
  836. 13B07FAE1A68108700A75B9A /* huiliaoJmessage */,
  837. 832341AE1AAA6A7D00B99B32 /* Libraries */,
  838. 00E356EF1AD99517003FC87E /* huiliaoJmessageTests */,
  839. 83CBBA001A601CBA00E9B192 /* Products */,
  840. 2D16E6871FA4F8E400B85C8A /* Frameworks */,
  841. AE049A47213D161300F87971 /* Recovered References */,
  842. BC7A6004D4EE4F9AB6DBBAE2 /* Resources */,
  843. );
  844. indentWidth = 2;
  845. sourceTree = "<group>";
  846. tabWidth = 2;
  847. usesTabs = 0;
  848. };
  849. 83CBBA001A601CBA00E9B192 /* Products */ = {
  850. isa = PBXGroup;
  851. children = (
  852. 13B07F961A680F5B00A75B9A /* huiliaoJmessage.app */,
  853. 00E356EE1AD99517003FC87E /* huiliaoJmessageTests.xctest */,
  854. 2D02E47B1E0B4A5D006451C7 /* huiliaoJmessage-tvOS.app */,
  855. 2D02E4901E0B4A5D006451C7 /* huiliaoJmessage-tvOSTests.xctest */,
  856. );
  857. name = Products;
  858. sourceTree = "<group>";
  859. };
  860. ADBDB9201DFEBF0600ED6528 /* Products */ = {
  861. isa = PBXGroup;
  862. children = (
  863. ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
  864. 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */,
  865. );
  866. name = Products;
  867. sourceTree = "<group>";
  868. };
  869. AE049A47213D161300F87971 /* Recovered References */ = {
  870. isa = PBXGroup;
  871. children = (
  872. 25574F59398D4FB9A5FDA71B /* libAuroraIMUI.a */,
  873. 155FE72366574500883C6899 /* RCTAuroraIMUI.framework */,
  874. 51C61B755D5045FA9707DA64 /* RCTAuroraIMUITests.xctest */,
  875. 2AF2DC2470EF4D55913FB94E /* libRCTJCoreModule.a */,
  876. A3E3E7CA3156458BBAEAFF93 /* libRCTJMessageModule.a */,
  877. 2C2BF6DD297C46ABA9839B59 /* libRNAudio.a */,
  878. EAD0B9E850A045A88B66FBB2 /* libRNCamera.a */,
  879. 64E325F9DBB14DAB9BB2EE79 /* libRNFS.a */,
  880. 76BEB28BD54B4E40B4253085 /* libimageCropPicker.a */,
  881. E1EF42A233E146438D9ED716 /* libRNContactsPicker.a */,
  882. E91F2EE193E94E48A1C7C8C5 /* libRCTContactsWrapper.a */,
  883. );
  884. name = "Recovered References";
  885. sourceTree = "<group>";
  886. };
  887. AE049A6D213D161700F87971 /* Products */ = {
  888. isa = PBXGroup;
  889. children = (
  890. AE049A77213D161800F87971 /* libAuroraIMUI.a */,
  891. AE049A79213D161800F87971 /* RCTAuroraIMUI.framework */,
  892. AE049A7B213D161800F87971 /* RCTAuroraIMUITests.xctest */,
  893. );
  894. name = Products;
  895. sourceTree = "<group>";
  896. };
  897. AE049A6F213D161700F87971 /* Products */ = {
  898. isa = PBXGroup;
  899. children = (
  900. AE049A7E213D161800F87971 /* libRCTJCoreModule.a */,
  901. );
  902. name = Products;
  903. sourceTree = "<group>";
  904. };
  905. AE049A71213D161700F87971 /* Products */ = {
  906. isa = PBXGroup;
  907. children = (
  908. AE049A81213D161800F87971 /* libRCTJMessageModule.a */,
  909. );
  910. name = Products;
  911. sourceTree = "<group>";
  912. };
  913. AE049BFE213D234A00F87971 /* Products */ = {
  914. isa = PBXGroup;
  915. children = (
  916. AE049C02213D234A00F87971 /* libRNAudio.a */,
  917. );
  918. name = Products;
  919. sourceTree = "<group>";
  920. };
  921. AE049C3C213D23CD00F87971 /* Products */ = {
  922. isa = PBXGroup;
  923. children = (
  924. AE049C40213D23CD00F87971 /* libRNCamera.a */,
  925. );
  926. name = Products;
  927. sourceTree = "<group>";
  928. };
  929. AE049C7C213D24D700F87971 /* Products */ = {
  930. isa = PBXGroup;
  931. children = (
  932. AE049C81213D24D700F87971 /* libRNFS.a */,
  933. AE049C83213D24D700F87971 /* libRNFS.a */,
  934. );
  935. name = Products;
  936. sourceTree = "<group>";
  937. };
  938. AE049D11213D263A00F87971 /* Products */ = {
  939. isa = PBXGroup;
  940. children = (
  941. AE049D15213D263A00F87971 /* libRNContactsPicker.a */,
  942. );
  943. name = Products;
  944. sourceTree = "<group>";
  945. };
  946. AE049D5A213D266800F87971 /* Products */ = {
  947. isa = PBXGroup;
  948. children = (
  949. AE049D5E213D266800F87971 /* libRCTContactsWrapper.a */,
  950. );
  951. name = Products;
  952. sourceTree = "<group>";
  953. };
  954. BC7A6004D4EE4F9AB6DBBAE2 /* Resources */ = {
  955. isa = "PBXGroup";
  956. children = (
  957. 28A89B354A284258B08B5B20 /* Entypo.ttf */,
  958. 430EAE10CDD1407CA049C4FD /* EvilIcons.ttf */,
  959. 4D287E8D57184E9CBCBBC27E /* Feather.ttf */,
  960. 4DD6600ED364450BB780C6BB /* FontAwesome.ttf */,
  961. C67DE23DA0DE4EE6A4B7D7A4 /* Foundation.ttf */,
  962. 7415C27A29A74683B3DF7170 /* Ionicons.ttf */,
  963. 84ACC0924D584902B51922DE /* MaterialCommunityIcons.ttf */,
  964. 9359EC8F1203489ABA5718EC /* MaterialIcons.ttf */,
  965. FCC37EF8CA474D9483BC085B /* Octicons.ttf */,
  966. 84DFFDD6B05C45EF92E64E66 /* Roboto_medium.ttf */,
  967. 27AD2E4747F7426C9E5BA08C /* Roboto.ttf */,
  968. 9CCB7155805846CA9C63947B /* rubicon-icon-font.ttf */,
  969. 700710D52AFF4894AD1A4F76 /* SimpleLineIcons.ttf */,
  970. 1BDA8963E3154FED973B31E8 /* Zocial.ttf */,
  971. );
  972. name = Resources;
  973. sourceTree = "<group>";
  974. path = "";
  975. };
  976. /* End PBXGroup section */
  977. /* Begin PBXNativeTarget section */
  978. 00E356ED1AD99517003FC87E /* huiliaoJmessageTests */ = {
  979. isa = PBXNativeTarget;
  980. buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "huiliaoJmessageTests" */;
  981. buildPhases = (
  982. 00E356EA1AD99517003FC87E /* Sources */,
  983. 00E356EB1AD99517003FC87E /* Frameworks */,
  984. 00E356EC1AD99517003FC87E /* Resources */,
  985. );
  986. buildRules = (
  987. );
  988. dependencies = (
  989. 00E356F51AD99517003FC87E /* PBXTargetDependency */,
  990. );
  991. name = huiliaoJmessageTests;
  992. productName = huiliaoJmessageTests;
  993. productReference = 00E356EE1AD99517003FC87E /* huiliaoJmessageTests.xctest */;
  994. productType = "com.apple.product-type.bundle.unit-test";
  995. };
  996. 13B07F861A680F5B00A75B9A /* huiliaoJmessage */ = {
  997. isa = PBXNativeTarget;
  998. buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "huiliaoJmessage" */;
  999. buildPhases = (
  1000. 13B07F871A680F5B00A75B9A /* Sources */,
  1001. 13B07F8C1A680F5B00A75B9A /* Frameworks */,
  1002. 13B07F8E1A680F5B00A75B9A /* Resources */,
  1003. 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
  1004. AE049A86213D168800F87971 /* Embed Frameworks */,
  1005. );
  1006. buildRules = (
  1007. );
  1008. dependencies = (
  1009. AE049A88213D169A00F87971 /* PBXTargetDependency */,
  1010. AE049A85213D168700F87971 /* PBXTargetDependency */,
  1011. );
  1012. name = huiliaoJmessage;
  1013. productName = "Hello World";
  1014. productReference = 13B07F961A680F5B00A75B9A /* huiliaoJmessage.app */;
  1015. productType = "com.apple.product-type.application";
  1016. };
  1017. 2D02E47A1E0B4A5D006451C7 /* huiliaoJmessage-tvOS */ = {
  1018. isa = PBXNativeTarget;
  1019. buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "huiliaoJmessage-tvOS" */;
  1020. buildPhases = (
  1021. 2D02E4771E0B4A5D006451C7 /* Sources */,
  1022. 2D02E4781E0B4A5D006451C7 /* Frameworks */,
  1023. 2D02E4791E0B4A5D006451C7 /* Resources */,
  1024. 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
  1025. );
  1026. buildRules = (
  1027. );
  1028. dependencies = (
  1029. );
  1030. name = "huiliaoJmessage-tvOS";
  1031. productName = "huiliaoJmessage-tvOS";
  1032. productReference = 2D02E47B1E0B4A5D006451C7 /* huiliaoJmessage-tvOS.app */;
  1033. productType = "com.apple.product-type.application";
  1034. };
  1035. 2D02E48F1E0B4A5D006451C7 /* huiliaoJmessage-tvOSTests */ = {
  1036. isa = PBXNativeTarget;
  1037. buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "huiliaoJmessage-tvOSTests" */;
  1038. buildPhases = (
  1039. 2D02E48C1E0B4A5D006451C7 /* Sources */,
  1040. 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
  1041. 2D02E48E1E0B4A5D006451C7 /* Resources */,
  1042. );
  1043. buildRules = (
  1044. );
  1045. dependencies = (
  1046. 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
  1047. );
  1048. name = "huiliaoJmessage-tvOSTests";
  1049. productName = "huiliaoJmessage-tvOSTests";
  1050. productReference = 2D02E4901E0B4A5D006451C7 /* huiliaoJmessage-tvOSTests.xctest */;
  1051. productType = "com.apple.product-type.bundle.unit-test";
  1052. };
  1053. /* End PBXNativeTarget section */
  1054. /* Begin PBXProject section */
  1055. 83CBB9F71A601CBA00E9B192 /* Project object */ = {
  1056. isa = PBXProject;
  1057. attributes = {
  1058. LastUpgradeCheck = 610;
  1059. ORGANIZATIONNAME = Facebook;
  1060. TargetAttributes = {
  1061. 00E356ED1AD99517003FC87E = {
  1062. CreatedOnToolsVersion = 6.2;
  1063. TestTargetID = 13B07F861A680F5B00A75B9A;
  1064. };
  1065. 13B07F861A680F5B00A75B9A = {
  1066. DevelopmentTeam = 87KURQP592;
  1067. SystemCapabilities = {
  1068. com.apple.BackgroundModes = {
  1069. enabled = 1;
  1070. };
  1071. com.apple.Push = {
  1072. enabled = 1;
  1073. };
  1074. };
  1075. };
  1076. 2D02E47A1E0B4A5D006451C7 = {
  1077. CreatedOnToolsVersion = 8.2.1;
  1078. ProvisioningStyle = Automatic;
  1079. };
  1080. 2D02E48F1E0B4A5D006451C7 = {
  1081. CreatedOnToolsVersion = 8.2.1;
  1082. ProvisioningStyle = Automatic;
  1083. TestTargetID = 2D02E47A1E0B4A5D006451C7;
  1084. };
  1085. };
  1086. };
  1087. buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "huiliaoJmessage" */;
  1088. compatibilityVersion = "Xcode 3.2";
  1089. developmentRegion = English;
  1090. hasScannedForEncodings = 0;
  1091. knownRegions = (
  1092. en,
  1093. Base,
  1094. );
  1095. mainGroup = 83CBB9F61A601CBA00E9B192;
  1096. productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
  1097. projectDirPath = "";
  1098. projectReferences = (
  1099. {
  1100. ProductGroup = AE049D5A213D266800F87971 /* Products */;
  1101. ProjectRef = DC2BD6B46B9A4DDA8D1D2C9F /* ContactsWrapper.xcodeproj */;
  1102. },
  1103. {
  1104. ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
  1105. ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
  1106. },
  1107. {
  1108. ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
  1109. ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
  1110. },
  1111. {
  1112. ProductGroup = AE049A6D213D161700F87971 /* Products */;
  1113. ProjectRef = 9EC10A83FC7C45D588BD4B46 /* RCTAuroraIMUI.xcodeproj */;
  1114. },
  1115. {
  1116. ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
  1117. ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
  1118. },
  1119. {
  1120. ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
  1121. ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
  1122. },
  1123. {
  1124. ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
  1125. ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
  1126. },
  1127. {
  1128. ProductGroup = AE049A6F213D161700F87971 /* Products */;
  1129. ProjectRef = 94D85684CD3846BE9F43D158 /* RCTJCoreModule.xcodeproj */;
  1130. },
  1131. {
  1132. ProductGroup = AE049A71213D161700F87971 /* Products */;
  1133. ProjectRef = A87BA7F6425844BC8FB1129E /* RCTJMessageModule.xcodeproj */;
  1134. },
  1135. {
  1136. ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
  1137. ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
  1138. },
  1139. {
  1140. ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
  1141. ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
  1142. },
  1143. {
  1144. ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
  1145. ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
  1146. },
  1147. {
  1148. ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
  1149. ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
  1150. },
  1151. {
  1152. ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
  1153. ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
  1154. },
  1155. {
  1156. ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
  1157. ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
  1158. },
  1159. {
  1160. ProductGroup = 146834001AC3E56700842450 /* Products */;
  1161. ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  1162. },
  1163. {
  1164. ProductGroup = AE049BFE213D234A00F87971 /* Products */;
  1165. ProjectRef = C5F99CD15EF24D31B11BDB0C /* RNAudio.xcodeproj */;
  1166. },
  1167. {
  1168. ProductGroup = AE049C3C213D23CD00F87971 /* Products */;
  1169. ProjectRef = CDCDB64F6D1C4D1B86F96FF9 /* RNCamera.xcodeproj */;
  1170. },
  1171. {
  1172. ProductGroup = AE049D11213D263A00F87971 /* Products */;
  1173. ProjectRef = DEAC4455559A4918AC1E987A /* RNContactsPicker.xcodeproj */;
  1174. },
  1175. {
  1176. ProductGroup = AE049C7C213D24D700F87971 /* Products */;
  1177. ProjectRef = 6157CA0EBAC54D6CAC58EF72 /* RNFS.xcodeproj */;
  1178. },
  1179. );
  1180. projectRoot = "";
  1181. targets = (
  1182. 13B07F861A680F5B00A75B9A /* huiliaoJmessage */,
  1183. 00E356ED1AD99517003FC87E /* huiliaoJmessageTests */,
  1184. 2D02E47A1E0B4A5D006451C7 /* huiliaoJmessage-tvOS */,
  1185. 2D02E48F1E0B4A5D006451C7 /* huiliaoJmessage-tvOSTests */,
  1186. );
  1187. };
  1188. /* End PBXProject section */
  1189. /* Begin PBXReferenceProxy section */
  1190. 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
  1191. isa = PBXReferenceProxy;
  1192. fileType = archive.ar;
  1193. path = libRCTActionSheet.a;
  1194. remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
  1195. sourceTree = BUILT_PRODUCTS_DIR;
  1196. };
  1197. 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
  1198. isa = PBXReferenceProxy;
  1199. fileType = archive.ar;
  1200. path = libRCTGeolocation.a;
  1201. remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
  1202. sourceTree = BUILT_PRODUCTS_DIR;
  1203. };
  1204. 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
  1205. isa = PBXReferenceProxy;
  1206. fileType = archive.ar;
  1207. path = libRCTImage.a;
  1208. remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
  1209. sourceTree = BUILT_PRODUCTS_DIR;
  1210. };
  1211. 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
  1212. isa = PBXReferenceProxy;
  1213. fileType = archive.ar;
  1214. path = libRCTNetwork.a;
  1215. remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
  1216. sourceTree = BUILT_PRODUCTS_DIR;
  1217. };
  1218. 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
  1219. isa = PBXReferenceProxy;
  1220. fileType = archive.ar;
  1221. path = libRCTVibration.a;
  1222. remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
  1223. sourceTree = BUILT_PRODUCTS_DIR;
  1224. };
  1225. 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
  1226. isa = PBXReferenceProxy;
  1227. fileType = archive.ar;
  1228. path = libRCTSettings.a;
  1229. remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
  1230. sourceTree = BUILT_PRODUCTS_DIR;
  1231. };
  1232. 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
  1233. isa = PBXReferenceProxy;
  1234. fileType = archive.ar;
  1235. path = libRCTWebSocket.a;
  1236. remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
  1237. sourceTree = BUILT_PRODUCTS_DIR;
  1238. };
  1239. 146834041AC3E56700842450 /* libReact.a */ = {
  1240. isa = PBXReferenceProxy;
  1241. fileType = archive.ar;
  1242. path = libReact.a;
  1243. remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
  1244. sourceTree = BUILT_PRODUCTS_DIR;
  1245. };
  1246. 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = {
  1247. isa = PBXReferenceProxy;
  1248. fileType = archive.ar;
  1249. path = "libRCTBlob-tvOS.a";
  1250. remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */;
  1251. sourceTree = BUILT_PRODUCTS_DIR;
  1252. };
  1253. 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = {
  1254. isa = PBXReferenceProxy;
  1255. fileType = archive.ar;
  1256. path = libfishhook.a;
  1257. remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */;
  1258. sourceTree = BUILT_PRODUCTS_DIR;
  1259. };
  1260. 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = {
  1261. isa = PBXReferenceProxy;
  1262. fileType = archive.ar;
  1263. path = "libfishhook-tvOS.a";
  1264. remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */;
  1265. sourceTree = BUILT_PRODUCTS_DIR;
  1266. };
  1267. 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = {
  1268. isa = PBXReferenceProxy;
  1269. fileType = archive.ar;
  1270. path = libjsinspector.a;
  1271. remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */;
  1272. sourceTree = BUILT_PRODUCTS_DIR;
  1273. };
  1274. 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = {
  1275. isa = PBXReferenceProxy;
  1276. fileType = archive.ar;
  1277. path = "libjsinspector-tvOS.a";
  1278. remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */;
  1279. sourceTree = BUILT_PRODUCTS_DIR;
  1280. };
  1281. 2DF0FFE32056DD460020B375 /* libthird-party.a */ = {
  1282. isa = PBXReferenceProxy;
  1283. fileType = archive.ar;
  1284. path = "libthird-party.a";
  1285. remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */;
  1286. sourceTree = BUILT_PRODUCTS_DIR;
  1287. };
  1288. 2DF0FFE52056DD460020B375 /* libthird-party.a */ = {
  1289. isa = PBXReferenceProxy;
  1290. fileType = archive.ar;
  1291. path = "libthird-party.a";
  1292. remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */;
  1293. sourceTree = BUILT_PRODUCTS_DIR;
  1294. };
  1295. 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = {
  1296. isa = PBXReferenceProxy;
  1297. fileType = archive.ar;
  1298. path = "libdouble-conversion.a";
  1299. remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */;
  1300. sourceTree = BUILT_PRODUCTS_DIR;
  1301. };
  1302. 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = {
  1303. isa = PBXReferenceProxy;
  1304. fileType = archive.ar;
  1305. path = "libdouble-conversion.a";
  1306. remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */;
  1307. sourceTree = BUILT_PRODUCTS_DIR;
  1308. };
  1309. 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = {
  1310. isa = PBXReferenceProxy;
  1311. fileType = archive.ar;
  1312. path = libprivatedata.a;
  1313. remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */;
  1314. sourceTree = BUILT_PRODUCTS_DIR;
  1315. };
  1316. 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = {
  1317. isa = PBXReferenceProxy;
  1318. fileType = archive.ar;
  1319. path = "libprivatedata-tvOS.a";
  1320. remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */;
  1321. sourceTree = BUILT_PRODUCTS_DIR;
  1322. };
  1323. 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
  1324. isa = PBXReferenceProxy;
  1325. fileType = archive.ar;
  1326. path = "libRCTImage-tvOS.a";
  1327. remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
  1328. sourceTree = BUILT_PRODUCTS_DIR;
  1329. };
  1330. 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
  1331. isa = PBXReferenceProxy;
  1332. fileType = archive.ar;
  1333. path = "libRCTLinking-tvOS.a";
  1334. remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
  1335. sourceTree = BUILT_PRODUCTS_DIR;
  1336. };
  1337. 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
  1338. isa = PBXReferenceProxy;
  1339. fileType = archive.ar;
  1340. path = "libRCTNetwork-tvOS.a";
  1341. remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
  1342. sourceTree = BUILT_PRODUCTS_DIR;
  1343. };
  1344. 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
  1345. isa = PBXReferenceProxy;
  1346. fileType = archive.ar;
  1347. path = "libRCTSettings-tvOS.a";
  1348. remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
  1349. sourceTree = BUILT_PRODUCTS_DIR;
  1350. };
  1351. 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
  1352. isa = PBXReferenceProxy;
  1353. fileType = archive.ar;
  1354. path = "libRCTText-tvOS.a";
  1355. remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
  1356. sourceTree = BUILT_PRODUCTS_DIR;
  1357. };
  1358. 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
  1359. isa = PBXReferenceProxy;
  1360. fileType = archive.ar;
  1361. path = "libRCTWebSocket-tvOS.a";
  1362. remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
  1363. sourceTree = BUILT_PRODUCTS_DIR;
  1364. };
  1365. 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
  1366. isa = PBXReferenceProxy;
  1367. fileType = archive.ar;
  1368. path = libReact.a;
  1369. remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
  1370. sourceTree = BUILT_PRODUCTS_DIR;
  1371. };
  1372. 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
  1373. isa = PBXReferenceProxy;
  1374. fileType = archive.ar;
  1375. path = libyoga.a;
  1376. remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
  1377. sourceTree = BUILT_PRODUCTS_DIR;
  1378. };
  1379. 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
  1380. isa = PBXReferenceProxy;
  1381. fileType = archive.ar;
  1382. path = libyoga.a;
  1383. remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
  1384. sourceTree = BUILT_PRODUCTS_DIR;
  1385. };
  1386. 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
  1387. isa = PBXReferenceProxy;
  1388. fileType = archive.ar;
  1389. path = libcxxreact.a;
  1390. remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
  1391. sourceTree = BUILT_PRODUCTS_DIR;
  1392. };
  1393. 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
  1394. isa = PBXReferenceProxy;
  1395. fileType = archive.ar;
  1396. path = libcxxreact.a;
  1397. remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
  1398. sourceTree = BUILT_PRODUCTS_DIR;
  1399. };
  1400. 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
  1401. isa = PBXReferenceProxy;
  1402. fileType = archive.ar;
  1403. path = libjschelpers.a;
  1404. remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
  1405. sourceTree = BUILT_PRODUCTS_DIR;
  1406. };
  1407. 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
  1408. isa = PBXReferenceProxy;
  1409. fileType = archive.ar;
  1410. path = libjschelpers.a;
  1411. remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
  1412. sourceTree = BUILT_PRODUCTS_DIR;
  1413. };
  1414. 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
  1415. isa = PBXReferenceProxy;
  1416. fileType = archive.ar;
  1417. path = libRCTAnimation.a;
  1418. remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
  1419. sourceTree = BUILT_PRODUCTS_DIR;
  1420. };
  1421. 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
  1422. isa = PBXReferenceProxy;
  1423. fileType = archive.ar;
  1424. path = libRCTAnimation.a;
  1425. remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
  1426. sourceTree = BUILT_PRODUCTS_DIR;
  1427. };
  1428. 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
  1429. isa = PBXReferenceProxy;
  1430. fileType = archive.ar;
  1431. path = libRCTLinking.a;
  1432. remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
  1433. sourceTree = BUILT_PRODUCTS_DIR;
  1434. };
  1435. 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
  1436. isa = PBXReferenceProxy;
  1437. fileType = archive.ar;
  1438. path = libRCTText.a;
  1439. remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
  1440. sourceTree = BUILT_PRODUCTS_DIR;
  1441. };
  1442. ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
  1443. isa = PBXReferenceProxy;
  1444. fileType = archive.ar;
  1445. path = libRCTBlob.a;
  1446. remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
  1447. sourceTree = BUILT_PRODUCTS_DIR;
  1448. };
  1449. AE049A77213D161800F87971 /* libAuroraIMUI.a */ = {
  1450. isa = PBXReferenceProxy;
  1451. fileType = archive.ar;
  1452. path = libAuroraIMUI.a;
  1453. remoteRef = AE049A76213D161800F87971 /* PBXContainerItemProxy */;
  1454. sourceTree = BUILT_PRODUCTS_DIR;
  1455. };
  1456. AE049A79213D161800F87971 /* RCTAuroraIMUI.framework */ = {
  1457. isa = PBXReferenceProxy;
  1458. fileType = wrapper.framework;
  1459. path = RCTAuroraIMUI.framework;
  1460. remoteRef = AE049A78213D161800F87971 /* PBXContainerItemProxy */;
  1461. sourceTree = BUILT_PRODUCTS_DIR;
  1462. };
  1463. AE049A7B213D161800F87971 /* RCTAuroraIMUITests.xctest */ = {
  1464. isa = PBXReferenceProxy;
  1465. fileType = wrapper.cfbundle;
  1466. path = RCTAuroraIMUITests.xctest;
  1467. remoteRef = AE049A7A213D161800F87971 /* PBXContainerItemProxy */;
  1468. sourceTree = BUILT_PRODUCTS_DIR;
  1469. };
  1470. AE049A7E213D161800F87971 /* libRCTJCoreModule.a */ = {
  1471. isa = PBXReferenceProxy;
  1472. fileType = archive.ar;
  1473. path = libRCTJCoreModule.a;
  1474. remoteRef = AE049A7D213D161800F87971 /* PBXContainerItemProxy */;
  1475. sourceTree = BUILT_PRODUCTS_DIR;
  1476. };
  1477. AE049A81213D161800F87971 /* libRCTJMessageModule.a */ = {
  1478. isa = PBXReferenceProxy;
  1479. fileType = archive.ar;
  1480. path = libRCTJMessageModule.a;
  1481. remoteRef = AE049A80213D161800F87971 /* PBXContainerItemProxy */;
  1482. sourceTree = BUILT_PRODUCTS_DIR;
  1483. };
  1484. AE049C02213D234A00F87971 /* libRNAudio.a */ = {
  1485. isa = PBXReferenceProxy;
  1486. fileType = archive.ar;
  1487. path = libRNAudio.a;
  1488. remoteRef = AE049C01213D234A00F87971 /* PBXContainerItemProxy */;
  1489. sourceTree = BUILT_PRODUCTS_DIR;
  1490. };
  1491. AE049C40213D23CD00F87971 /* libRNCamera.a */ = {
  1492. isa = PBXReferenceProxy;
  1493. fileType = archive.ar;
  1494. path = libRNCamera.a;
  1495. remoteRef = AE049C3F213D23CD00F87971 /* PBXContainerItemProxy */;
  1496. sourceTree = BUILT_PRODUCTS_DIR;
  1497. };
  1498. AE049C81213D24D700F87971 /* libRNFS.a */ = {
  1499. isa = PBXReferenceProxy;
  1500. fileType = archive.ar;
  1501. path = libRNFS.a;
  1502. remoteRef = AE049C80213D24D700F87971 /* PBXContainerItemProxy */;
  1503. sourceTree = BUILT_PRODUCTS_DIR;
  1504. };
  1505. AE049C83213D24D700F87971 /* libRNFS.a */ = {
  1506. isa = PBXReferenceProxy;
  1507. fileType = archive.ar;
  1508. path = libRNFS.a;
  1509. remoteRef = AE049C82213D24D700F87971 /* PBXContainerItemProxy */;
  1510. sourceTree = BUILT_PRODUCTS_DIR;
  1511. };
  1512. AE049D15213D263A00F87971 /* libRNContactsPicker.a */ = {
  1513. isa = PBXReferenceProxy;
  1514. fileType = archive.ar;
  1515. path = libRNContactsPicker.a;
  1516. remoteRef = AE049D14213D263A00F87971 /* PBXContainerItemProxy */;
  1517. sourceTree = BUILT_PRODUCTS_DIR;
  1518. };
  1519. AE049D5E213D266800F87971 /* libRCTContactsWrapper.a */ = {
  1520. isa = PBXReferenceProxy;
  1521. fileType = archive.ar;
  1522. path = libRCTContactsWrapper.a;
  1523. remoteRef = AE049D5D213D266800F87971 /* PBXContainerItemProxy */;
  1524. sourceTree = BUILT_PRODUCTS_DIR;
  1525. };
  1526. /* End PBXReferenceProxy section */
  1527. /* Begin PBXResourcesBuildPhase section */
  1528. 00E356EC1AD99517003FC87E /* Resources */ = {
  1529. isa = PBXResourcesBuildPhase;
  1530. buildActionMask = 2147483647;
  1531. files = (
  1532. );
  1533. runOnlyForDeploymentPostprocessing = 0;
  1534. };
  1535. 13B07F8E1A680F5B00A75B9A /* Resources */ = {
  1536. isa = PBXResourcesBuildPhase;
  1537. buildActionMask = 2147483647;
  1538. files = (
  1539. 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
  1540. 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
  1541. D84E2FFC6A19488696EE21AA /* Entypo.ttf in Resources */,
  1542. 98AC2399D01A4A64811E4508 /* EvilIcons.ttf in Resources */,
  1543. 8972DB47B7E047B0889EB9C2 /* Feather.ttf in Resources */,
  1544. 971CD3D6EC9942ED886A2E54 /* FontAwesome.ttf in Resources */,
  1545. AAF748D5D8C147F58F9EB2F2 /* Foundation.ttf in Resources */,
  1546. F9376D84534C452A91CA267B /* Ionicons.ttf in Resources */,
  1547. D1DC25DB6AFC4D00AC3E7F1B /* MaterialCommunityIcons.ttf in Resources */,
  1548. 187C6ECB3CEB4B31B2E16FC9 /* MaterialIcons.ttf in Resources */,
  1549. 459A421AC5AF4B9DA72E8894 /* Octicons.ttf in Resources */,
  1550. 6134CEEAD7D54DAABA957818 /* Roboto_medium.ttf in Resources */,
  1551. F234437C7A0748FEA1C9DD20 /* Roboto.ttf in Resources */,
  1552. DEA483078A1B4E3EBF1312E2 /* rubicon-icon-font.ttf in Resources */,
  1553. 86D6891C301F403790EABCC1 /* SimpleLineIcons.ttf in Resources */,
  1554. 8020C46172B84C50AAEC2B28 /* Zocial.ttf in Resources */,
  1555. );
  1556. runOnlyForDeploymentPostprocessing = 0;
  1557. };
  1558. 2D02E4791E0B4A5D006451C7 /* Resources */ = {
  1559. isa = PBXResourcesBuildPhase;
  1560. buildActionMask = 2147483647;
  1561. files = (
  1562. 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
  1563. );
  1564. runOnlyForDeploymentPostprocessing = 0;
  1565. };
  1566. 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
  1567. isa = PBXResourcesBuildPhase;
  1568. buildActionMask = 2147483647;
  1569. files = (
  1570. );
  1571. runOnlyForDeploymentPostprocessing = 0;
  1572. };
  1573. /* End PBXResourcesBuildPhase section */
  1574. /* Begin PBXShellScriptBuildPhase section */
  1575. 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
  1576. isa = PBXShellScriptBuildPhase;
  1577. buildActionMask = 2147483647;
  1578. files = (
  1579. );
  1580. inputPaths = (
  1581. );
  1582. name = "Bundle React Native code and images";
  1583. outputPaths = (
  1584. );
  1585. runOnlyForDeploymentPostprocessing = 0;
  1586. shellPath = /bin/sh;
  1587. shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
  1588. };
  1589. 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
  1590. isa = PBXShellScriptBuildPhase;
  1591. buildActionMask = 2147483647;
  1592. files = (
  1593. );
  1594. inputPaths = (
  1595. );
  1596. name = "Bundle React Native Code And Images";
  1597. outputPaths = (
  1598. );
  1599. runOnlyForDeploymentPostprocessing = 0;
  1600. shellPath = /bin/sh;
  1601. shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
  1602. };
  1603. /* End PBXShellScriptBuildPhase section */
  1604. /* Begin PBXSourcesBuildPhase section */
  1605. 00E356EA1AD99517003FC87E /* Sources */ = {
  1606. isa = PBXSourcesBuildPhase;
  1607. buildActionMask = 2147483647;
  1608. files = (
  1609. 00E356F31AD99517003FC87E /* huiliaoJmessageTests.m in Sources */,
  1610. );
  1611. runOnlyForDeploymentPostprocessing = 0;
  1612. };
  1613. 13B07F871A680F5B00A75B9A /* Sources */ = {
  1614. isa = PBXSourcesBuildPhase;
  1615. buildActionMask = 2147483647;
  1616. files = (
  1617. 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
  1618. 13B07FC11A68108700A75B9A /* main.m in Sources */,
  1619. );
  1620. runOnlyForDeploymentPostprocessing = 0;
  1621. };
  1622. 2D02E4771E0B4A5D006451C7 /* Sources */ = {
  1623. isa = PBXSourcesBuildPhase;
  1624. buildActionMask = 2147483647;
  1625. files = (
  1626. 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
  1627. 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
  1628. );
  1629. runOnlyForDeploymentPostprocessing = 0;
  1630. };
  1631. 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
  1632. isa = PBXSourcesBuildPhase;
  1633. buildActionMask = 2147483647;
  1634. files = (
  1635. 2DCD954D1E0B4F2C00145EB5 /* huiliaoJmessageTests.m in Sources */,
  1636. );
  1637. runOnlyForDeploymentPostprocessing = 0;
  1638. };
  1639. /* End PBXSourcesBuildPhase section */
  1640. /* Begin PBXTargetDependency section */
  1641. 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
  1642. isa = PBXTargetDependency;
  1643. target = 13B07F861A680F5B00A75B9A /* huiliaoJmessage */;
  1644. targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
  1645. };
  1646. 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
  1647. isa = PBXTargetDependency;
  1648. target = 2D02E47A1E0B4A5D006451C7 /* huiliaoJmessage-tvOS */;
  1649. targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
  1650. };
  1651. AE049A85213D168700F87971 /* PBXTargetDependency */ = {
  1652. isa = PBXTargetDependency;
  1653. name = RCTAuroraIMUI;
  1654. targetProxy = AE049A84213D168700F87971 /* PBXContainerItemProxy */;
  1655. };
  1656. AE049A88213D169A00F87971 /* PBXTargetDependency */ = {
  1657. isa = PBXTargetDependency;
  1658. name = RCTWebSocket;
  1659. targetProxy = AE049A87213D169A00F87971 /* PBXContainerItemProxy */;
  1660. };
  1661. /* End PBXTargetDependency section */
  1662. /* Begin PBXVariantGroup section */
  1663. 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
  1664. isa = PBXVariantGroup;
  1665. children = (
  1666. 13B07FB21A68108700A75B9A /* Base */,
  1667. );
  1668. name = LaunchScreen.xib;
  1669. path = huiliaoJmessage;
  1670. sourceTree = "<group>";
  1671. };
  1672. /* End PBXVariantGroup section */
  1673. /* Begin XCBuildConfiguration section */
  1674. 00E356F61AD99517003FC87E /* Debug */ = {
  1675. isa = XCBuildConfiguration;
  1676. buildSettings = {
  1677. BUNDLE_LOADER = "$(TEST_HOST)";
  1678. GCC_PREPROCESSOR_DEFINITIONS = (
  1679. "DEBUG=1",
  1680. "$(inherited)",
  1681. );
  1682. HEADER_SEARCH_PATHS = (
  1683. "$(inherited)",
  1684. "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
  1685. "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
  1686. "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
  1687. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1688. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1689. "$(SRCROOT)/../node_modules/react-native-fs/**",
  1690. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1691. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1692. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1693. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1694. );
  1695. INFOPLIST_FILE = huiliaoJmessageTests/Info.plist;
  1696. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1697. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1698. LIBRARY_SEARCH_PATHS = (
  1699. "$(inherited)",
  1700. "\"$(SRCROOT)/$(TARGET_NAME)/System/Library/Frameworks\"",
  1701. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1702. );
  1703. OTHER_LDFLAGS = (
  1704. "-ObjC",
  1705. "-lc++",
  1706. );
  1707. PRODUCT_NAME = "$(TARGET_NAME)";
  1708. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/huiliaoJmessage.app/huiliaoJmessage";
  1709. };
  1710. name = Debug;
  1711. };
  1712. 00E356F71AD99517003FC87E /* Release */ = {
  1713. isa = XCBuildConfiguration;
  1714. buildSettings = {
  1715. BUNDLE_LOADER = "$(TEST_HOST)";
  1716. COPY_PHASE_STRIP = NO;
  1717. HEADER_SEARCH_PATHS = (
  1718. "$(inherited)",
  1719. "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
  1720. "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
  1721. "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
  1722. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1723. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1724. "$(SRCROOT)/../node_modules/react-native-fs/**",
  1725. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1726. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1727. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1728. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1729. );
  1730. INFOPLIST_FILE = huiliaoJmessageTests/Info.plist;
  1731. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1732. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1733. LIBRARY_SEARCH_PATHS = (
  1734. "$(inherited)",
  1735. "\"$(SRCROOT)/$(TARGET_NAME)/System/Library/Frameworks\"",
  1736. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1737. );
  1738. OTHER_LDFLAGS = (
  1739. "-ObjC",
  1740. "-lc++",
  1741. );
  1742. PRODUCT_NAME = "$(TARGET_NAME)";
  1743. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/huiliaoJmessage.app/huiliaoJmessage";
  1744. };
  1745. name = Release;
  1746. };
  1747. 13B07F941A680F5B00A75B9A /* Debug */ = {
  1748. isa = XCBuildConfiguration;
  1749. buildSettings = {
  1750. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1751. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1752. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  1753. CODE_SIGN_ENTITLEMENTS = huiliaoJmessage/huiliaoJmessage.entitlements;
  1754. CURRENT_PROJECT_VERSION = 1;
  1755. DEAD_CODE_STRIPPING = NO;
  1756. DEVELOPMENT_TEAM = 87KURQP592;
  1757. FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule";
  1758. HEADER_SEARCH_PATHS = (
  1759. "$(inherited)",
  1760. "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
  1761. "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
  1762. "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
  1763. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1764. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1765. "$(SRCROOT)/../node_modules/react-native-fs/**",
  1766. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1767. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1768. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1769. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1770. );
  1771. INFOPLIST_FILE = huiliaoJmessage/Info.plist;
  1772. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1773. OTHER_LDFLAGS = (
  1774. "$(inherited)",
  1775. "-ObjC",
  1776. "-lc++",
  1777. "-framework",
  1778. JMessage,
  1779. );
  1780. PRODUCT_BUNDLE_IDENTIFIER = com.skylinuav.oms;
  1781. PRODUCT_NAME = huiliaoJmessage;
  1782. VERSIONING_SYSTEM = "apple-generic";
  1783. };
  1784. name = Debug;
  1785. };
  1786. 13B07F951A680F5B00A75B9A /* Release */ = {
  1787. isa = XCBuildConfiguration;
  1788. buildSettings = {
  1789. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1790. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1791. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  1792. CODE_SIGN_ENTITLEMENTS = huiliaoJmessage/huiliaoJmessage.entitlements;
  1793. CURRENT_PROJECT_VERSION = 1;
  1794. DEVELOPMENT_TEAM = 87KURQP592;
  1795. FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule";
  1796. HEADER_SEARCH_PATHS = (
  1797. "$(inherited)",
  1798. "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
  1799. "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
  1800. "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
  1801. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1802. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1803. "$(SRCROOT)/../node_modules/react-native-fs/**",
  1804. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1805. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1806. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1807. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1808. );
  1809. INFOPLIST_FILE = huiliaoJmessage/Info.plist;
  1810. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1811. OTHER_LDFLAGS = (
  1812. "$(inherited)",
  1813. "-ObjC",
  1814. "-lc++",
  1815. "-framework",
  1816. JMessage,
  1817. );
  1818. PRODUCT_BUNDLE_IDENTIFIER = com.skylinuav.oms;
  1819. PRODUCT_NAME = huiliaoJmessage;
  1820. VERSIONING_SYSTEM = "apple-generic";
  1821. };
  1822. name = Release;
  1823. };
  1824. 2D02E4971E0B4A5E006451C7 /* Debug */ = {
  1825. isa = XCBuildConfiguration;
  1826. buildSettings = {
  1827. ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
  1828. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  1829. CLANG_ANALYZER_NONNULL = YES;
  1830. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1831. CLANG_WARN_INFINITE_RECURSION = YES;
  1832. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1833. DEBUG_INFORMATION_FORMAT = dwarf;
  1834. ENABLE_TESTABILITY = YES;
  1835. GCC_NO_COMMON_BLOCKS = YES;
  1836. HEADER_SEARCH_PATHS = (
  1837. "$(inherited)",
  1838. "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
  1839. "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
  1840. "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
  1841. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1842. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1843. "$(SRCROOT)/../node_modules/react-native-fs/**",
  1844. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1845. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1846. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1847. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1848. );
  1849. INFOPLIST_FILE = "huiliaoJmessage-tvOS/Info.plist";
  1850. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1851. LIBRARY_SEARCH_PATHS = (
  1852. "$(inherited)",
  1853. "\"$(SRCROOT)/$(TARGET_NAME)/System/Library/Frameworks\"",
  1854. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1855. );
  1856. OTHER_LDFLAGS = (
  1857. "-ObjC",
  1858. "-lc++",
  1859. );
  1860. PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.huiliaoJmessage-tvOS";
  1861. PRODUCT_NAME = "$(TARGET_NAME)";
  1862. SDKROOT = appletvos;
  1863. TARGETED_DEVICE_FAMILY = 3;
  1864. TVOS_DEPLOYMENT_TARGET = 9.2;
  1865. };
  1866. name = Debug;
  1867. };
  1868. 2D02E4981E0B4A5E006451C7 /* Release */ = {
  1869. isa = XCBuildConfiguration;
  1870. buildSettings = {
  1871. ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
  1872. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  1873. CLANG_ANALYZER_NONNULL = YES;
  1874. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1875. CLANG_WARN_INFINITE_RECURSION = YES;
  1876. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1877. COPY_PHASE_STRIP = NO;
  1878. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1879. GCC_NO_COMMON_BLOCKS = YES;
  1880. HEADER_SEARCH_PATHS = (
  1881. "$(inherited)",
  1882. "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
  1883. "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
  1884. "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
  1885. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1886. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1887. "$(SRCROOT)/../node_modules/react-native-fs/**",
  1888. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1889. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1890. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1891. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1892. );
  1893. INFOPLIST_FILE = "huiliaoJmessage-tvOS/Info.plist";
  1894. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1895. LIBRARY_SEARCH_PATHS = (
  1896. "$(inherited)",
  1897. "\"$(SRCROOT)/$(TARGET_NAME)/System/Library/Frameworks\"",
  1898. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1899. );
  1900. OTHER_LDFLAGS = (
  1901. "-ObjC",
  1902. "-lc++",
  1903. );
  1904. PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.huiliaoJmessage-tvOS";
  1905. PRODUCT_NAME = "$(TARGET_NAME)";
  1906. SDKROOT = appletvos;
  1907. TARGETED_DEVICE_FAMILY = 3;
  1908. TVOS_DEPLOYMENT_TARGET = 9.2;
  1909. };
  1910. name = Release;
  1911. };
  1912. 2D02E4991E0B4A5E006451C7 /* Debug */ = {
  1913. isa = XCBuildConfiguration;
  1914. buildSettings = {
  1915. BUNDLE_LOADER = "$(TEST_HOST)";
  1916. CLANG_ANALYZER_NONNULL = YES;
  1917. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1918. CLANG_WARN_INFINITE_RECURSION = YES;
  1919. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1920. DEBUG_INFORMATION_FORMAT = dwarf;
  1921. ENABLE_TESTABILITY = YES;
  1922. GCC_NO_COMMON_BLOCKS = YES;
  1923. HEADER_SEARCH_PATHS = (
  1924. "$(inherited)",
  1925. "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
  1926. "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
  1927. "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
  1928. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1929. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1930. "$(SRCROOT)/../node_modules/react-native-fs/**",
  1931. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1932. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1933. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1934. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1935. );
  1936. INFOPLIST_FILE = "huiliaoJmessage-tvOSTests/Info.plist";
  1937. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1938. LIBRARY_SEARCH_PATHS = (
  1939. "$(inherited)",
  1940. "\"$(SRCROOT)/$(TARGET_NAME)/System/Library/Frameworks\"",
  1941. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1942. );
  1943. OTHER_LDFLAGS = (
  1944. "-ObjC",
  1945. "-lc++",
  1946. );
  1947. PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.huiliaoJmessage-tvOSTests";
  1948. PRODUCT_NAME = "$(TARGET_NAME)";
  1949. SDKROOT = appletvos;
  1950. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/huiliaoJmessage-tvOS.app/huiliaoJmessage-tvOS";
  1951. TVOS_DEPLOYMENT_TARGET = 10.1;
  1952. };
  1953. name = Debug;
  1954. };
  1955. 2D02E49A1E0B4A5E006451C7 /* Release */ = {
  1956. isa = XCBuildConfiguration;
  1957. buildSettings = {
  1958. BUNDLE_LOADER = "$(TEST_HOST)";
  1959. CLANG_ANALYZER_NONNULL = YES;
  1960. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1961. CLANG_WARN_INFINITE_RECURSION = YES;
  1962. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1963. COPY_PHASE_STRIP = NO;
  1964. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1965. GCC_NO_COMMON_BLOCKS = YES;
  1966. HEADER_SEARCH_PATHS = (
  1967. "$(inherited)",
  1968. "$(SRCROOT)/../node_modules/aurora-imui-react-native/iOS/IMUIMessageCollectionView/**",
  1969. "$(SRCROOT)/../node_modules/jcore-react-native/ios/RCTJCoreModule",
  1970. "$(SRCROOT)/../node_modules/jmessage-react-plugin/ios/RCTJMessageModule/**",
  1971. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1972. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1973. "$(SRCROOT)/../node_modules/react-native-fs/**",
  1974. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1975. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1976. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1977. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1978. );
  1979. INFOPLIST_FILE = "huiliaoJmessage-tvOSTests/Info.plist";
  1980. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1981. LIBRARY_SEARCH_PATHS = (
  1982. "$(inherited)",
  1983. "\"$(SRCROOT)/$(TARGET_NAME)/System/Library/Frameworks\"",
  1984. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1985. );
  1986. OTHER_LDFLAGS = (
  1987. "-ObjC",
  1988. "-lc++",
  1989. );
  1990. PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.huiliaoJmessage-tvOSTests";
  1991. PRODUCT_NAME = "$(TARGET_NAME)";
  1992. SDKROOT = appletvos;
  1993. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/huiliaoJmessage-tvOS.app/huiliaoJmessage-tvOS";
  1994. TVOS_DEPLOYMENT_TARGET = 10.1;
  1995. };
  1996. name = Release;
  1997. };
  1998. 83CBBA201A601CBA00E9B192 /* Debug */ = {
  1999. isa = XCBuildConfiguration;
  2000. buildSettings = {
  2001. ALWAYS_SEARCH_USER_PATHS = NO;
  2002. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2003. CLANG_CXX_LIBRARY = "libc++";
  2004. CLANG_ENABLE_MODULES = YES;
  2005. CLANG_ENABLE_OBJC_ARC = YES;
  2006. CLANG_WARN_BOOL_CONVERSION = YES;
  2007. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2008. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2009. CLANG_WARN_EMPTY_BODY = YES;
  2010. CLANG_WARN_ENUM_CONVERSION = YES;
  2011. CLANG_WARN_INT_CONVERSION = YES;
  2012. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2013. CLANG_WARN_UNREACHABLE_CODE = YES;
  2014. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2015. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2016. COPY_PHASE_STRIP = NO;
  2017. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2018. GCC_C_LANGUAGE_STANDARD = gnu99;
  2019. GCC_DYNAMIC_NO_PIC = NO;
  2020. GCC_OPTIMIZATION_LEVEL = 0;
  2021. GCC_PREPROCESSOR_DEFINITIONS = (
  2022. "DEBUG=1",
  2023. "$(inherited)",
  2024. );
  2025. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  2026. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2027. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2028. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2029. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2030. GCC_WARN_UNUSED_FUNCTION = YES;
  2031. GCC_WARN_UNUSED_VARIABLE = YES;
  2032. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2033. MTL_ENABLE_DEBUG_INFO = YES;
  2034. ONLY_ACTIVE_ARCH = YES;
  2035. SDKROOT = iphoneos;
  2036. };
  2037. name = Debug;
  2038. };
  2039. 83CBBA211A601CBA00E9B192 /* Release */ = {
  2040. isa = XCBuildConfiguration;
  2041. buildSettings = {
  2042. ALWAYS_SEARCH_USER_PATHS = NO;
  2043. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2044. CLANG_CXX_LIBRARY = "libc++";
  2045. CLANG_ENABLE_MODULES = YES;
  2046. CLANG_ENABLE_OBJC_ARC = YES;
  2047. CLANG_WARN_BOOL_CONVERSION = YES;
  2048. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2049. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2050. CLANG_WARN_EMPTY_BODY = YES;
  2051. CLANG_WARN_ENUM_CONVERSION = YES;
  2052. CLANG_WARN_INT_CONVERSION = YES;
  2053. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2054. CLANG_WARN_UNREACHABLE_CODE = YES;
  2055. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2056. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2057. COPY_PHASE_STRIP = YES;
  2058. ENABLE_NS_ASSERTIONS = NO;
  2059. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2060. GCC_C_LANGUAGE_STANDARD = gnu99;
  2061. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2062. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2063. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2064. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2065. GCC_WARN_UNUSED_FUNCTION = YES;
  2066. GCC_WARN_UNUSED_VARIABLE = YES;
  2067. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2068. MTL_ENABLE_DEBUG_INFO = NO;
  2069. SDKROOT = iphoneos;
  2070. VALIDATE_PRODUCT = YES;
  2071. };
  2072. name = Release;
  2073. };
  2074. /* End XCBuildConfiguration section */
  2075. /* Begin XCConfigurationList section */
  2076. 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "huiliaoJmessageTests" */ = {
  2077. isa = XCConfigurationList;
  2078. buildConfigurations = (
  2079. 00E356F61AD99517003FC87E /* Debug */,
  2080. 00E356F71AD99517003FC87E /* Release */,
  2081. );
  2082. defaultConfigurationIsVisible = 0;
  2083. defaultConfigurationName = Release;
  2084. };
  2085. 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "huiliaoJmessage" */ = {
  2086. isa = XCConfigurationList;
  2087. buildConfigurations = (
  2088. 13B07F941A680F5B00A75B9A /* Debug */,
  2089. 13B07F951A680F5B00A75B9A /* Release */,
  2090. );
  2091. defaultConfigurationIsVisible = 0;
  2092. defaultConfigurationName = Release;
  2093. };
  2094. 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "huiliaoJmessage-tvOS" */ = {
  2095. isa = XCConfigurationList;
  2096. buildConfigurations = (
  2097. 2D02E4971E0B4A5E006451C7 /* Debug */,
  2098. 2D02E4981E0B4A5E006451C7 /* Release */,
  2099. );
  2100. defaultConfigurationIsVisible = 0;
  2101. defaultConfigurationName = Release;
  2102. };
  2103. 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "huiliaoJmessage-tvOSTests" */ = {
  2104. isa = XCConfigurationList;
  2105. buildConfigurations = (
  2106. 2D02E4991E0B4A5E006451C7 /* Debug */,
  2107. 2D02E49A1E0B4A5E006451C7 /* Release */,
  2108. );
  2109. defaultConfigurationIsVisible = 0;
  2110. defaultConfigurationName = Release;
  2111. };
  2112. 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "huiliaoJmessage" */ = {
  2113. isa = XCConfigurationList;
  2114. buildConfigurations = (
  2115. 83CBBA201A601CBA00E9B192 /* Debug */,
  2116. 83CBBA211A601CBA00E9B192 /* Release */,
  2117. );
  2118. defaultConfigurationIsVisible = 0;
  2119. defaultConfigurationName = Release;
  2120. };
  2121. /* End XCConfigurationList section */
  2122. };
  2123. rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
  2124. }