project.pbxproj 99 KB

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