project.pbxproj 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803
  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 /* huiliaoAPPTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* huiliaoAPPTests.m */; };
  15. 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
  16. 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
  17. 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
  18. 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
  19. 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
  20. 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
  21. 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
  22. 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
  23. 22FA7E94BA01484D85CF4080 /* libRCTContactsWrapper.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F4E8CB53ED554B1CB24E57F9 /* libRCTContactsWrapper.a */; };
  24. 2C1F4425C44A495DB39A2CC3 /* libRNCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2166474F6CB8470497E126B1 /* libRNCamera.a */; };
  25. 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
  26. 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
  27. 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
  28. 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
  29. 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
  30. 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
  31. 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
  32. 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
  33. 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
  34. 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
  35. 2DCD954D1E0B4F2C00145EB5 /* huiliaoAPPTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* huiliaoAPPTests.m */; };
  36. 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
  37. 3A467E62F5A64656A979023B /* libRNContactsPicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B67DBD86D72F4F5596A86A19 /* libRNContactsPicker.a */; };
  38. 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
  39. 68A67C54DE4A4431B1A3EC36 /* libRNAudio.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3890EECA88C8405FA795AE2C /* libRNAudio.a */; };
  40. 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
  41. 999AEF39D5BB4D40AFBA0D40 /* libRNSound.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F3B64675D12B4CC3A837A903 /* libRNSound.a */; };
  42. AC0E38A9407146FD97D072A4 /* libimageCropPicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B01B1EB32104611B4BD75FB /* libimageCropPicker.a */; };
  43. ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
  44. AE3B4C4D21328968006E0B16 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
  45. AE9332AE212FD01900A82ECC /* RSKImageCropper.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE9332AD212FD01900A82ECC /* RSKImageCropper.framework */; };
  46. AE9332AF212FD01900A82ECC /* RSKImageCropper.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = AE9332AD212FD01900A82ECC /* RSKImageCropper.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  47. AE9332B2212FD01C00A82ECC /* QBImagePicker.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE9332B1212FD01C00A82ECC /* QBImagePicker.framework */; };
  48. AE9332B3212FD01C00A82ECC /* QBImagePicker.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = AE9332B1212FD01C00A82ECC /* QBImagePicker.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  49. /* End PBXBuildFile section */
  50. /* Begin PBXContainerItemProxy section */
  51. 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
  52. isa = PBXContainerItemProxy;
  53. containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
  54. proxyType = 2;
  55. remoteGlobalIDString = 134814201AA4EA6300B7C361;
  56. remoteInfo = RCTActionSheet;
  57. };
  58. 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
  59. isa = PBXContainerItemProxy;
  60. containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
  61. proxyType = 2;
  62. remoteGlobalIDString = 134814201AA4EA6300B7C361;
  63. remoteInfo = RCTGeolocation;
  64. };
  65. 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
  66. isa = PBXContainerItemProxy;
  67. containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
  68. proxyType = 2;
  69. remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
  70. remoteInfo = RCTImage;
  71. };
  72. 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
  73. isa = PBXContainerItemProxy;
  74. containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
  75. proxyType = 2;
  76. remoteGlobalIDString = 58B511DB1A9E6C8500147676;
  77. remoteInfo = RCTNetwork;
  78. };
  79. 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
  80. isa = PBXContainerItemProxy;
  81. containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
  82. proxyType = 2;
  83. remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
  84. remoteInfo = RCTVibration;
  85. };
  86. 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
  87. isa = PBXContainerItemProxy;
  88. containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
  89. proxyType = 1;
  90. remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
  91. remoteInfo = huiliaoAPP;
  92. };
  93. 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
  94. isa = PBXContainerItemProxy;
  95. containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
  96. proxyType = 2;
  97. remoteGlobalIDString = 134814201AA4EA6300B7C361;
  98. remoteInfo = RCTSettings;
  99. };
  100. 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
  101. isa = PBXContainerItemProxy;
  102. containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
  103. proxyType = 2;
  104. remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
  105. remoteInfo = RCTWebSocket;
  106. };
  107. 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
  108. isa = PBXContainerItemProxy;
  109. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  110. proxyType = 2;
  111. remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
  112. remoteInfo = React;
  113. };
  114. 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
  115. isa = PBXContainerItemProxy;
  116. containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
  117. proxyType = 1;
  118. remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
  119. remoteInfo = "huiliaoAPP-tvOS";
  120. };
  121. 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
  122. isa = PBXContainerItemProxy;
  123. containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
  124. proxyType = 2;
  125. remoteGlobalIDString = ADD01A681E09402E00F6D226;
  126. remoteInfo = "RCTBlob-tvOS";
  127. };
  128. 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
  129. isa = PBXContainerItemProxy;
  130. containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
  131. proxyType = 2;
  132. remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
  133. remoteInfo = fishhook;
  134. };
  135. 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
  136. isa = PBXContainerItemProxy;
  137. containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
  138. proxyType = 2;
  139. remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
  140. remoteInfo = "fishhook-tvOS";
  141. };
  142. 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = {
  143. isa = PBXContainerItemProxy;
  144. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  145. proxyType = 2;
  146. remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
  147. remoteInfo = jsinspector;
  148. };
  149. 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = {
  150. isa = PBXContainerItemProxy;
  151. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  152. proxyType = 2;
  153. remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
  154. remoteInfo = "jsinspector-tvOS";
  155. };
  156. 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = {
  157. isa = PBXContainerItemProxy;
  158. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  159. proxyType = 2;
  160. remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
  161. remoteInfo = "third-party";
  162. };
  163. 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = {
  164. isa = PBXContainerItemProxy;
  165. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  166. proxyType = 2;
  167. remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
  168. remoteInfo = "third-party-tvOS";
  169. };
  170. 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = {
  171. isa = PBXContainerItemProxy;
  172. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  173. proxyType = 2;
  174. remoteGlobalIDString = 139D7E881E25C6D100323FB7;
  175. remoteInfo = "double-conversion";
  176. };
  177. 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = {
  178. isa = PBXContainerItemProxy;
  179. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  180. proxyType = 2;
  181. remoteGlobalIDString = 3D383D621EBD27B9005632C8;
  182. remoteInfo = "double-conversion-tvOS";
  183. };
  184. 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = {
  185. isa = PBXContainerItemProxy;
  186. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  187. proxyType = 2;
  188. remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
  189. remoteInfo = privatedata;
  190. };
  191. 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = {
  192. isa = PBXContainerItemProxy;
  193. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  194. proxyType = 2;
  195. remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
  196. remoteInfo = "privatedata-tvOS";
  197. };
  198. 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  199. isa = PBXContainerItemProxy;
  200. containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
  201. proxyType = 2;
  202. remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
  203. remoteInfo = "RCTImage-tvOS";
  204. };
  205. 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  206. isa = PBXContainerItemProxy;
  207. containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
  208. proxyType = 2;
  209. remoteGlobalIDString = 2D2A28471D9B043800D4039D;
  210. remoteInfo = "RCTLinking-tvOS";
  211. };
  212. 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  213. isa = PBXContainerItemProxy;
  214. containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
  215. proxyType = 2;
  216. remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
  217. remoteInfo = "RCTNetwork-tvOS";
  218. };
  219. 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  220. isa = PBXContainerItemProxy;
  221. containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
  222. proxyType = 2;
  223. remoteGlobalIDString = 2D2A28611D9B046600D4039D;
  224. remoteInfo = "RCTSettings-tvOS";
  225. };
  226. 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  227. isa = PBXContainerItemProxy;
  228. containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
  229. proxyType = 2;
  230. remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
  231. remoteInfo = "RCTText-tvOS";
  232. };
  233. 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  234. isa = PBXContainerItemProxy;
  235. containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
  236. proxyType = 2;
  237. remoteGlobalIDString = 2D2A28881D9B049200D4039D;
  238. remoteInfo = "RCTWebSocket-tvOS";
  239. };
  240. 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  241. isa = PBXContainerItemProxy;
  242. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  243. proxyType = 2;
  244. remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
  245. remoteInfo = "React-tvOS";
  246. };
  247. 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  248. isa = PBXContainerItemProxy;
  249. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  250. proxyType = 2;
  251. remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
  252. remoteInfo = yoga;
  253. };
  254. 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  255. isa = PBXContainerItemProxy;
  256. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  257. proxyType = 2;
  258. remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
  259. remoteInfo = "yoga-tvOS";
  260. };
  261. 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  262. isa = PBXContainerItemProxy;
  263. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  264. proxyType = 2;
  265. remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
  266. remoteInfo = cxxreact;
  267. };
  268. 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  269. isa = PBXContainerItemProxy;
  270. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  271. proxyType = 2;
  272. remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
  273. remoteInfo = "cxxreact-tvOS";
  274. };
  275. 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  276. isa = PBXContainerItemProxy;
  277. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  278. proxyType = 2;
  279. remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
  280. remoteInfo = jschelpers;
  281. };
  282. 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
  283. isa = PBXContainerItemProxy;
  284. containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  285. proxyType = 2;
  286. remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
  287. remoteInfo = "jschelpers-tvOS";
  288. };
  289. 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
  290. isa = PBXContainerItemProxy;
  291. containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
  292. proxyType = 2;
  293. remoteGlobalIDString = 134814201AA4EA6300B7C361;
  294. remoteInfo = RCTAnimation;
  295. };
  296. 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
  297. isa = PBXContainerItemProxy;
  298. containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
  299. proxyType = 2;
  300. remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
  301. remoteInfo = "RCTAnimation-tvOS";
  302. };
  303. 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
  304. isa = PBXContainerItemProxy;
  305. containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
  306. proxyType = 2;
  307. remoteGlobalIDString = 134814201AA4EA6300B7C361;
  308. remoteInfo = RCTLinking;
  309. };
  310. 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
  311. isa = PBXContainerItemProxy;
  312. containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
  313. proxyType = 2;
  314. remoteGlobalIDString = 58B5119B1A9E6C1200147676;
  315. remoteInfo = RCTText;
  316. };
  317. ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
  318. isa = PBXContainerItemProxy;
  319. containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
  320. proxyType = 2;
  321. remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
  322. remoteInfo = RCTBlob;
  323. };
  324. AE3B4CFF2132995A006E0B16 /* PBXContainerItemProxy */ = {
  325. isa = PBXContainerItemProxy;
  326. containerPortal = 79CCA97F54174204BA6D55E9 /* ContactsWrapper.xcodeproj */;
  327. proxyType = 2;
  328. remoteGlobalIDString = 2B58405A1D10DE8700235F31;
  329. remoteInfo = RCTContactsWrapper;
  330. };
  331. AE81389C21351B160081B250 /* PBXContainerItemProxy */ = {
  332. isa = PBXContainerItemProxy;
  333. containerPortal = 4209115BA512474B952551EB /* RNCamera.xcodeproj */;
  334. proxyType = 2;
  335. remoteGlobalIDString = 4107012F1ACB723B00C6AA39;
  336. remoteInfo = RNCamera;
  337. };
  338. AE9332AB212FD00E00A82ECC /* PBXContainerItemProxy */ = {
  339. isa = PBXContainerItemProxy;
  340. containerPortal = DDD93A23D5194D9E8D22AB47 /* imageCropPicker.xcodeproj */;
  341. proxyType = 2;
  342. remoteGlobalIDString = 3400A8081CEB54A6008A0BC7;
  343. remoteInfo = imageCropPicker;
  344. };
  345. AE9B3B0F21383CFD0031A7C6 /* PBXContainerItemProxy */ = {
  346. isa = PBXContainerItemProxy;
  347. containerPortal = F9B117C4D457407EB2C3A904 /* RNAudio.xcodeproj */;
  348. proxyType = 2;
  349. remoteGlobalIDString = 42F559BA1CFC90C400DC3F84;
  350. remoteInfo = RNAudio;
  351. };
  352. AE9B3B5121383D0C0031A7C6 /* PBXContainerItemProxy */ = {
  353. isa = PBXContainerItemProxy;
  354. containerPortal = BB015EF9C63046F188C80664 /* RNSound.xcodeproj */;
  355. proxyType = 2;
  356. remoteGlobalIDString = 19825A1E1BD4A89800EE0337;
  357. remoteInfo = RNSound;
  358. };
  359. AEAADD11213263FF00FED8AE /* PBXContainerItemProxy */ = {
  360. isa = PBXContainerItemProxy;
  361. containerPortal = 268208B1EC93416CB5EA17A7 /* RNContactsPicker.xcodeproj */;
  362. proxyType = 2;
  363. remoteGlobalIDString = F32424381F67FFC700255A5B;
  364. remoteInfo = RNContactsPicker;
  365. };
  366. /* End PBXContainerItemProxy section */
  367. /* Begin PBXCopyFilesBuildPhase section */
  368. AE9332B0212FD01900A82ECC /* Embed Frameworks */ = {
  369. isa = PBXCopyFilesBuildPhase;
  370. buildActionMask = 2147483647;
  371. dstPath = "";
  372. dstSubfolderSpec = 10;
  373. files = (
  374. AE9332AF212FD01900A82ECC /* RSKImageCropper.framework in Embed Frameworks */,
  375. AE9332B3212FD01C00A82ECC /* QBImagePicker.framework in Embed Frameworks */,
  376. );
  377. name = "Embed Frameworks";
  378. runOnlyForDeploymentPostprocessing = 0;
  379. };
  380. /* End PBXCopyFilesBuildPhase section */
  381. /* Begin PBXFileReference section */
  382. 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
  383. 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = "<group>"; };
  384. 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = "<group>"; };
  385. 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = "<group>"; };
  386. 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = "<group>"; };
  387. 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = "<group>"; };
  388. 00E356EE1AD99517003FC87E /* huiliaoAPPTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = huiliaoAPPTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  389. 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  390. 00E356F21AD99517003FC87E /* huiliaoAPPTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = huiliaoAPPTests.m; sourceTree = "<group>"; };
  391. 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
  392. 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
  393. 13B07F961A680F5B00A75B9A /* huiliaoAPP.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = huiliaoAPP.app; sourceTree = BUILT_PRODUCTS_DIR; };
  394. 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = huiliaoAPP/AppDelegate.h; sourceTree = "<group>"; };
  395. 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = huiliaoAPP/AppDelegate.m; sourceTree = "<group>"; };
  396. 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
  397. 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = huiliaoAPP/Images.xcassets; sourceTree = "<group>"; };
  398. 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = huiliaoAPP/Info.plist; sourceTree = "<group>"; };
  399. 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = huiliaoAPP/main.m; sourceTree = "<group>"; };
  400. 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
  401. 2166474F6CB8470497E126B1 /* libRNCamera.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNCamera.a; sourceTree = "<group>"; };
  402. 268208B1EC93416CB5EA17A7 /* 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>"; };
  403. 2D02E47B1E0B4A5D006451C7 /* huiliaoAPP-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "huiliaoAPP-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  404. 2D02E4901E0B4A5D006451C7 /* huiliaoAPP-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "huiliaoAPP-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
  405. 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
  406. 3890EECA88C8405FA795AE2C /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNAudio.a; sourceTree = "<group>"; };
  407. 3B01B1EB32104611B4BD75FB /* libimageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libimageCropPicker.a; sourceTree = "<group>"; };
  408. 4209115BA512474B952551EB /* 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>"; };
  409. 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
  410. 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
  411. 79CCA97F54174204BA6D55E9 /* 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>"; };
  412. 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
  413. ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = "<group>"; };
  414. AE9332AD212FD01900A82ECC /* RSKImageCropper.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RSKImageCropper.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  415. AE9332B1212FD01C00A82ECC /* QBImagePicker.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = QBImagePicker.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  416. B67DBD86D72F4F5596A86A19 /* libRNContactsPicker.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNContactsPicker.a; sourceTree = "<group>"; };
  417. BB015EF9C63046F188C80664 /* RNSound.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNSound.xcodeproj; path = "../node_modules/react-native-sound/RNSound.xcodeproj"; sourceTree = "<group>"; };
  418. DDD93A23D5194D9E8D22AB47 /* 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>"; };
  419. F3B64675D12B4CC3A837A903 /* libRNSound.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNSound.a; sourceTree = "<group>"; };
  420. F4E8CB53ED554B1CB24E57F9 /* libRCTContactsWrapper.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTContactsWrapper.a; sourceTree = "<group>"; };
  421. F9B117C4D457407EB2C3A904 /* 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>"; };
  422. /* End PBXFileReference section */
  423. /* Begin PBXFrameworksBuildPhase section */
  424. 00E356EB1AD99517003FC87E /* Frameworks */ = {
  425. isa = PBXFrameworksBuildPhase;
  426. buildActionMask = 2147483647;
  427. files = (
  428. 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
  429. );
  430. runOnlyForDeploymentPostprocessing = 0;
  431. };
  432. 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
  433. isa = PBXFrameworksBuildPhase;
  434. buildActionMask = 2147483647;
  435. files = (
  436. ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
  437. AE9332AE212FD01900A82ECC /* RSKImageCropper.framework in Frameworks */,
  438. 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
  439. 146834051AC3E58100842450 /* libReact.a in Frameworks */,
  440. 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
  441. 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
  442. 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
  443. AE9332B2212FD01C00A82ECC /* QBImagePicker.framework in Frameworks */,
  444. 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
  445. 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
  446. 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
  447. 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
  448. 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
  449. 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
  450. 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
  451. AC0E38A9407146FD97D072A4 /* libimageCropPicker.a in Frameworks */,
  452. 3A467E62F5A64656A979023B /* libRNContactsPicker.a in Frameworks */,
  453. 22FA7E94BA01484D85CF4080 /* libRCTContactsWrapper.a in Frameworks */,
  454. 2C1F4425C44A495DB39A2CC3 /* libRNCamera.a in Frameworks */,
  455. 68A67C54DE4A4431B1A3EC36 /* libRNAudio.a in Frameworks */,
  456. 999AEF39D5BB4D40AFBA0D40 /* libRNSound.a in Frameworks */,
  457. );
  458. runOnlyForDeploymentPostprocessing = 0;
  459. };
  460. 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
  461. isa = PBXFrameworksBuildPhase;
  462. buildActionMask = 2147483647;
  463. files = (
  464. 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */,
  465. 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
  466. 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
  467. 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
  468. 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
  469. 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
  470. 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
  471. 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
  472. );
  473. runOnlyForDeploymentPostprocessing = 0;
  474. };
  475. 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
  476. isa = PBXFrameworksBuildPhase;
  477. buildActionMask = 2147483647;
  478. files = (
  479. 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */,
  480. );
  481. runOnlyForDeploymentPostprocessing = 0;
  482. };
  483. /* End PBXFrameworksBuildPhase section */
  484. /* Begin PBXGroup section */
  485. 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
  486. isa = PBXGroup;
  487. children = (
  488. 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
  489. );
  490. name = Products;
  491. sourceTree = "<group>";
  492. };
  493. 00C302B61ABCB90400DB3ED1 /* Products */ = {
  494. isa = PBXGroup;
  495. children = (
  496. 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
  497. );
  498. name = Products;
  499. sourceTree = "<group>";
  500. };
  501. 00C302BC1ABCB91800DB3ED1 /* Products */ = {
  502. isa = PBXGroup;
  503. children = (
  504. 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
  505. 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
  506. );
  507. name = Products;
  508. sourceTree = "<group>";
  509. };
  510. 00C302D41ABCB9D200DB3ED1 /* Products */ = {
  511. isa = PBXGroup;
  512. children = (
  513. 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
  514. 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
  515. );
  516. name = Products;
  517. sourceTree = "<group>";
  518. };
  519. 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
  520. isa = PBXGroup;
  521. children = (
  522. 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
  523. );
  524. name = Products;
  525. sourceTree = "<group>";
  526. };
  527. 00E356EF1AD99517003FC87E /* huiliaoAPPTests */ = {
  528. isa = PBXGroup;
  529. children = (
  530. 00E356F21AD99517003FC87E /* huiliaoAPPTests.m */,
  531. 00E356F01AD99517003FC87E /* Supporting Files */,
  532. );
  533. path = huiliaoAPPTests;
  534. sourceTree = "<group>";
  535. };
  536. 00E356F01AD99517003FC87E /* Supporting Files */ = {
  537. isa = PBXGroup;
  538. children = (
  539. 00E356F11AD99517003FC87E /* Info.plist */,
  540. );
  541. name = "Supporting Files";
  542. sourceTree = "<group>";
  543. };
  544. 139105B71AF99BAD00B5F7CC /* Products */ = {
  545. isa = PBXGroup;
  546. children = (
  547. 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
  548. 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
  549. );
  550. name = Products;
  551. sourceTree = "<group>";
  552. };
  553. 139FDEE71B06529A00C62182 /* Products */ = {
  554. isa = PBXGroup;
  555. children = (
  556. 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
  557. 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
  558. 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */,
  559. 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */,
  560. );
  561. name = Products;
  562. sourceTree = "<group>";
  563. };
  564. 13B07FAE1A68108700A75B9A /* huiliaoAPP */ = {
  565. isa = PBXGroup;
  566. children = (
  567. 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
  568. 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
  569. 13B07FB01A68108700A75B9A /* AppDelegate.m */,
  570. 13B07FB51A68108700A75B9A /* Images.xcassets */,
  571. 13B07FB61A68108700A75B9A /* Info.plist */,
  572. 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
  573. 13B07FB71A68108700A75B9A /* main.m */,
  574. );
  575. name = huiliaoAPP;
  576. sourceTree = "<group>";
  577. };
  578. 146834001AC3E56700842450 /* Products */ = {
  579. isa = PBXGroup;
  580. children = (
  581. 146834041AC3E56700842450 /* libReact.a */,
  582. 3DAD3EA31DF850E9000B6D8A /* libReact.a */,
  583. 3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
  584. 3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
  585. 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
  586. 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
  587. 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
  588. 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
  589. 2DF0FFDF2056DD460020B375 /* libjsinspector.a */,
  590. 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */,
  591. 2DF0FFE32056DD460020B375 /* libthird-party.a */,
  592. 2DF0FFE52056DD460020B375 /* libthird-party.a */,
  593. 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */,
  594. 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */,
  595. 2DF0FFEB2056DD460020B375 /* libprivatedata.a */,
  596. 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */,
  597. );
  598. name = Products;
  599. sourceTree = "<group>";
  600. };
  601. 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
  602. isa = PBXGroup;
  603. children = (
  604. 2D16E6891FA4F8E400B85C8A /* libReact.a */,
  605. );
  606. name = Frameworks;
  607. sourceTree = "<group>";
  608. };
  609. 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
  610. isa = PBXGroup;
  611. children = (
  612. 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
  613. 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
  614. );
  615. name = Products;
  616. sourceTree = "<group>";
  617. };
  618. 78C398B11ACF4ADC00677621 /* Products */ = {
  619. isa = PBXGroup;
  620. children = (
  621. 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
  622. 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
  623. );
  624. name = Products;
  625. sourceTree = "<group>";
  626. };
  627. 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
  628. isa = PBXGroup;
  629. children = (
  630. 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
  631. 146833FF1AC3E56700842450 /* React.xcodeproj */,
  632. 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
  633. ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
  634. 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
  635. 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
  636. 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
  637. 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
  638. 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
  639. 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
  640. 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
  641. 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
  642. DDD93A23D5194D9E8D22AB47 /* imageCropPicker.xcodeproj */,
  643. 268208B1EC93416CB5EA17A7 /* RNContactsPicker.xcodeproj */,
  644. 79CCA97F54174204BA6D55E9 /* ContactsWrapper.xcodeproj */,
  645. 4209115BA512474B952551EB /* RNCamera.xcodeproj */,
  646. F9B117C4D457407EB2C3A904 /* RNAudio.xcodeproj */,
  647. BB015EF9C63046F188C80664 /* RNSound.xcodeproj */,
  648. );
  649. name = Libraries;
  650. sourceTree = "<group>";
  651. };
  652. 832341B11AAA6A8300B99B32 /* Products */ = {
  653. isa = PBXGroup;
  654. children = (
  655. 832341B51AAA6A8300B99B32 /* libRCTText.a */,
  656. 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
  657. );
  658. name = Products;
  659. sourceTree = "<group>";
  660. };
  661. 83CBB9F61A601CBA00E9B192 = {
  662. isa = PBXGroup;
  663. children = (
  664. AE9332B1212FD01C00A82ECC /* QBImagePicker.framework */,
  665. AE9332AD212FD01900A82ECC /* RSKImageCropper.framework */,
  666. 13B07FAE1A68108700A75B9A /* huiliaoAPP */,
  667. 832341AE1AAA6A7D00B99B32 /* Libraries */,
  668. 00E356EF1AD99517003FC87E /* huiliaoAPPTests */,
  669. 83CBBA001A601CBA00E9B192 /* Products */,
  670. 2D16E6871FA4F8E400B85C8A /* Frameworks */,
  671. AE933280212FD00D00A82ECC /* Recovered References */,
  672. );
  673. indentWidth = 2;
  674. sourceTree = "<group>";
  675. tabWidth = 2;
  676. usesTabs = 0;
  677. };
  678. 83CBBA001A601CBA00E9B192 /* Products */ = {
  679. isa = PBXGroup;
  680. children = (
  681. 13B07F961A680F5B00A75B9A /* huiliaoAPP.app */,
  682. 00E356EE1AD99517003FC87E /* huiliaoAPPTests.xctest */,
  683. 2D02E47B1E0B4A5D006451C7 /* huiliaoAPP-tvOS.app */,
  684. 2D02E4901E0B4A5D006451C7 /* huiliaoAPP-tvOSTests.xctest */,
  685. );
  686. name = Products;
  687. sourceTree = "<group>";
  688. };
  689. ADBDB9201DFEBF0600ED6528 /* Products */ = {
  690. isa = PBXGroup;
  691. children = (
  692. ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
  693. 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */,
  694. );
  695. name = Products;
  696. sourceTree = "<group>";
  697. };
  698. AE3B4CFC2132995A006E0B16 /* Products */ = {
  699. isa = PBXGroup;
  700. children = (
  701. AE3B4D002132995A006E0B16 /* libRCTContactsWrapper.a */,
  702. );
  703. name = Products;
  704. sourceTree = "<group>";
  705. };
  706. AE81389921351B160081B250 /* Products */ = {
  707. isa = PBXGroup;
  708. children = (
  709. AE81389D21351B160081B250 /* libRNCamera.a */,
  710. );
  711. name = Products;
  712. sourceTree = "<group>";
  713. };
  714. AE933280212FD00D00A82ECC /* Recovered References */ = {
  715. isa = PBXGroup;
  716. children = (
  717. 3B01B1EB32104611B4BD75FB /* libimageCropPicker.a */,
  718. B67DBD86D72F4F5596A86A19 /* libRNContactsPicker.a */,
  719. F4E8CB53ED554B1CB24E57F9 /* libRCTContactsWrapper.a */,
  720. 2166474F6CB8470497E126B1 /* libRNCamera.a */,
  721. 3890EECA88C8405FA795AE2C /* libRNAudio.a */,
  722. F3B64675D12B4CC3A837A903 /* libRNSound.a */,
  723. );
  724. name = "Recovered References";
  725. sourceTree = "<group>";
  726. };
  727. AE9332A8212FD00E00A82ECC /* Products */ = {
  728. isa = PBXGroup;
  729. children = (
  730. AE9332AC212FD00E00A82ECC /* libimageCropPicker.a */,
  731. );
  732. name = Products;
  733. sourceTree = "<group>";
  734. };
  735. AE9B3B0C21383CFD0031A7C6 /* Products */ = {
  736. isa = PBXGroup;
  737. children = (
  738. AE9B3B1021383CFD0031A7C6 /* libRNAudio.a */,
  739. );
  740. name = Products;
  741. sourceTree = "<group>";
  742. };
  743. AE9B3B4E21383D0C0031A7C6 /* Products */ = {
  744. isa = PBXGroup;
  745. children = (
  746. AE9B3B5221383D0C0031A7C6 /* libRNSound.a */,
  747. );
  748. name = Products;
  749. sourceTree = "<group>";
  750. };
  751. AEAADD0E213263FF00FED8AE /* Products */ = {
  752. isa = PBXGroup;
  753. children = (
  754. AEAADD12213263FF00FED8AE /* libRNContactsPicker.a */,
  755. );
  756. name = Products;
  757. sourceTree = "<group>";
  758. };
  759. /* End PBXGroup section */
  760. /* Begin PBXNativeTarget section */
  761. 00E356ED1AD99517003FC87E /* huiliaoAPPTests */ = {
  762. isa = PBXNativeTarget;
  763. buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "huiliaoAPPTests" */;
  764. buildPhases = (
  765. 00E356EA1AD99517003FC87E /* Sources */,
  766. 00E356EB1AD99517003FC87E /* Frameworks */,
  767. 00E356EC1AD99517003FC87E /* Resources */,
  768. );
  769. buildRules = (
  770. );
  771. dependencies = (
  772. 00E356F51AD99517003FC87E /* PBXTargetDependency */,
  773. );
  774. name = huiliaoAPPTests;
  775. productName = huiliaoAPPTests;
  776. productReference = 00E356EE1AD99517003FC87E /* huiliaoAPPTests.xctest */;
  777. productType = "com.apple.product-type.bundle.unit-test";
  778. };
  779. 13B07F861A680F5B00A75B9A /* huiliaoAPP */ = {
  780. isa = PBXNativeTarget;
  781. buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "huiliaoAPP" */;
  782. buildPhases = (
  783. 13B07F871A680F5B00A75B9A /* Sources */,
  784. 13B07F8C1A680F5B00A75B9A /* Frameworks */,
  785. 13B07F8E1A680F5B00A75B9A /* Resources */,
  786. 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
  787. AE9332B0212FD01900A82ECC /* Embed Frameworks */,
  788. );
  789. buildRules = (
  790. );
  791. dependencies = (
  792. );
  793. name = huiliaoAPP;
  794. productName = "Hello World";
  795. productReference = 13B07F961A680F5B00A75B9A /* huiliaoAPP.app */;
  796. productType = "com.apple.product-type.application";
  797. };
  798. 2D02E47A1E0B4A5D006451C7 /* huiliaoAPP-tvOS */ = {
  799. isa = PBXNativeTarget;
  800. buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "huiliaoAPP-tvOS" */;
  801. buildPhases = (
  802. 2D02E4771E0B4A5D006451C7 /* Sources */,
  803. 2D02E4781E0B4A5D006451C7 /* Frameworks */,
  804. 2D02E4791E0B4A5D006451C7 /* Resources */,
  805. 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
  806. );
  807. buildRules = (
  808. );
  809. dependencies = (
  810. );
  811. name = "huiliaoAPP-tvOS";
  812. productName = "huiliaoAPP-tvOS";
  813. productReference = 2D02E47B1E0B4A5D006451C7 /* huiliaoAPP-tvOS.app */;
  814. productType = "com.apple.product-type.application";
  815. };
  816. 2D02E48F1E0B4A5D006451C7 /* huiliaoAPP-tvOSTests */ = {
  817. isa = PBXNativeTarget;
  818. buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "huiliaoAPP-tvOSTests" */;
  819. buildPhases = (
  820. 2D02E48C1E0B4A5D006451C7 /* Sources */,
  821. 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
  822. 2D02E48E1E0B4A5D006451C7 /* Resources */,
  823. );
  824. buildRules = (
  825. );
  826. dependencies = (
  827. 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
  828. );
  829. name = "huiliaoAPP-tvOSTests";
  830. productName = "huiliaoAPP-tvOSTests";
  831. productReference = 2D02E4901E0B4A5D006451C7 /* huiliaoAPP-tvOSTests.xctest */;
  832. productType = "com.apple.product-type.bundle.unit-test";
  833. };
  834. /* End PBXNativeTarget section */
  835. /* Begin PBXProject section */
  836. 83CBB9F71A601CBA00E9B192 /* Project object */ = {
  837. isa = PBXProject;
  838. attributes = {
  839. LastUpgradeCheck = 610;
  840. ORGANIZATIONNAME = Facebook;
  841. TargetAttributes = {
  842. 00E356ED1AD99517003FC87E = {
  843. CreatedOnToolsVersion = 6.2;
  844. TestTargetID = 13B07F861A680F5B00A75B9A;
  845. };
  846. 13B07F861A680F5B00A75B9A = {
  847. DevelopmentTeam = 87KURQP592;
  848. };
  849. 2D02E47A1E0B4A5D006451C7 = {
  850. CreatedOnToolsVersion = 8.2.1;
  851. ProvisioningStyle = Automatic;
  852. };
  853. 2D02E48F1E0B4A5D006451C7 = {
  854. CreatedOnToolsVersion = 8.2.1;
  855. ProvisioningStyle = Automatic;
  856. TestTargetID = 2D02E47A1E0B4A5D006451C7;
  857. };
  858. };
  859. };
  860. buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "huiliaoAPP" */;
  861. compatibilityVersion = "Xcode 3.2";
  862. developmentRegion = English;
  863. hasScannedForEncodings = 0;
  864. knownRegions = (
  865. en,
  866. Base,
  867. );
  868. mainGroup = 83CBB9F61A601CBA00E9B192;
  869. productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
  870. projectDirPath = "";
  871. projectReferences = (
  872. {
  873. ProductGroup = AE3B4CFC2132995A006E0B16 /* Products */;
  874. ProjectRef = 79CCA97F54174204BA6D55E9 /* ContactsWrapper.xcodeproj */;
  875. },
  876. {
  877. ProductGroup = AE9332A8212FD00E00A82ECC /* Products */;
  878. ProjectRef = DDD93A23D5194D9E8D22AB47 /* imageCropPicker.xcodeproj */;
  879. },
  880. {
  881. ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
  882. ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
  883. },
  884. {
  885. ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
  886. ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
  887. },
  888. {
  889. ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
  890. ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
  891. },
  892. {
  893. ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
  894. ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
  895. },
  896. {
  897. ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
  898. ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
  899. },
  900. {
  901. ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
  902. ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
  903. },
  904. {
  905. ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
  906. ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
  907. },
  908. {
  909. ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
  910. ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
  911. },
  912. {
  913. ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
  914. ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
  915. },
  916. {
  917. ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
  918. ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
  919. },
  920. {
  921. ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
  922. ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
  923. },
  924. {
  925. ProductGroup = 146834001AC3E56700842450 /* Products */;
  926. ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
  927. },
  928. {
  929. ProductGroup = AE9B3B0C21383CFD0031A7C6 /* Products */;
  930. ProjectRef = F9B117C4D457407EB2C3A904 /* RNAudio.xcodeproj */;
  931. },
  932. {
  933. ProductGroup = AE81389921351B160081B250 /* Products */;
  934. ProjectRef = 4209115BA512474B952551EB /* RNCamera.xcodeproj */;
  935. },
  936. {
  937. ProductGroup = AEAADD0E213263FF00FED8AE /* Products */;
  938. ProjectRef = 268208B1EC93416CB5EA17A7 /* RNContactsPicker.xcodeproj */;
  939. },
  940. {
  941. ProductGroup = AE9B3B4E21383D0C0031A7C6 /* Products */;
  942. ProjectRef = BB015EF9C63046F188C80664 /* RNSound.xcodeproj */;
  943. },
  944. );
  945. projectRoot = "";
  946. targets = (
  947. 13B07F861A680F5B00A75B9A /* huiliaoAPP */,
  948. 00E356ED1AD99517003FC87E /* huiliaoAPPTests */,
  949. 2D02E47A1E0B4A5D006451C7 /* huiliaoAPP-tvOS */,
  950. 2D02E48F1E0B4A5D006451C7 /* huiliaoAPP-tvOSTests */,
  951. );
  952. };
  953. /* End PBXProject section */
  954. /* Begin PBXReferenceProxy section */
  955. 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
  956. isa = PBXReferenceProxy;
  957. fileType = archive.ar;
  958. path = libRCTActionSheet.a;
  959. remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
  960. sourceTree = BUILT_PRODUCTS_DIR;
  961. };
  962. 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
  963. isa = PBXReferenceProxy;
  964. fileType = archive.ar;
  965. path = libRCTGeolocation.a;
  966. remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
  967. sourceTree = BUILT_PRODUCTS_DIR;
  968. };
  969. 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
  970. isa = PBXReferenceProxy;
  971. fileType = archive.ar;
  972. path = libRCTImage.a;
  973. remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
  974. sourceTree = BUILT_PRODUCTS_DIR;
  975. };
  976. 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
  977. isa = PBXReferenceProxy;
  978. fileType = archive.ar;
  979. path = libRCTNetwork.a;
  980. remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
  981. sourceTree = BUILT_PRODUCTS_DIR;
  982. };
  983. 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
  984. isa = PBXReferenceProxy;
  985. fileType = archive.ar;
  986. path = libRCTVibration.a;
  987. remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
  988. sourceTree = BUILT_PRODUCTS_DIR;
  989. };
  990. 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
  991. isa = PBXReferenceProxy;
  992. fileType = archive.ar;
  993. path = libRCTSettings.a;
  994. remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
  995. sourceTree = BUILT_PRODUCTS_DIR;
  996. };
  997. 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
  998. isa = PBXReferenceProxy;
  999. fileType = archive.ar;
  1000. path = libRCTWebSocket.a;
  1001. remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
  1002. sourceTree = BUILT_PRODUCTS_DIR;
  1003. };
  1004. 146834041AC3E56700842450 /* libReact.a */ = {
  1005. isa = PBXReferenceProxy;
  1006. fileType = archive.ar;
  1007. path = libReact.a;
  1008. remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
  1009. sourceTree = BUILT_PRODUCTS_DIR;
  1010. };
  1011. 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = {
  1012. isa = PBXReferenceProxy;
  1013. fileType = archive.ar;
  1014. path = "libRCTBlob-tvOS.a";
  1015. remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */;
  1016. sourceTree = BUILT_PRODUCTS_DIR;
  1017. };
  1018. 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = {
  1019. isa = PBXReferenceProxy;
  1020. fileType = archive.ar;
  1021. path = libfishhook.a;
  1022. remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */;
  1023. sourceTree = BUILT_PRODUCTS_DIR;
  1024. };
  1025. 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = {
  1026. isa = PBXReferenceProxy;
  1027. fileType = archive.ar;
  1028. path = "libfishhook-tvOS.a";
  1029. remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */;
  1030. sourceTree = BUILT_PRODUCTS_DIR;
  1031. };
  1032. 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = {
  1033. isa = PBXReferenceProxy;
  1034. fileType = archive.ar;
  1035. path = libjsinspector.a;
  1036. remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */;
  1037. sourceTree = BUILT_PRODUCTS_DIR;
  1038. };
  1039. 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = {
  1040. isa = PBXReferenceProxy;
  1041. fileType = archive.ar;
  1042. path = "libjsinspector-tvOS.a";
  1043. remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */;
  1044. sourceTree = BUILT_PRODUCTS_DIR;
  1045. };
  1046. 2DF0FFE32056DD460020B375 /* libthird-party.a */ = {
  1047. isa = PBXReferenceProxy;
  1048. fileType = archive.ar;
  1049. path = "libthird-party.a";
  1050. remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */;
  1051. sourceTree = BUILT_PRODUCTS_DIR;
  1052. };
  1053. 2DF0FFE52056DD460020B375 /* libthird-party.a */ = {
  1054. isa = PBXReferenceProxy;
  1055. fileType = archive.ar;
  1056. path = "libthird-party.a";
  1057. remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */;
  1058. sourceTree = BUILT_PRODUCTS_DIR;
  1059. };
  1060. 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = {
  1061. isa = PBXReferenceProxy;
  1062. fileType = archive.ar;
  1063. path = "libdouble-conversion.a";
  1064. remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */;
  1065. sourceTree = BUILT_PRODUCTS_DIR;
  1066. };
  1067. 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = {
  1068. isa = PBXReferenceProxy;
  1069. fileType = archive.ar;
  1070. path = "libdouble-conversion.a";
  1071. remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */;
  1072. sourceTree = BUILT_PRODUCTS_DIR;
  1073. };
  1074. 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = {
  1075. isa = PBXReferenceProxy;
  1076. fileType = archive.ar;
  1077. path = libprivatedata.a;
  1078. remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */;
  1079. sourceTree = BUILT_PRODUCTS_DIR;
  1080. };
  1081. 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = {
  1082. isa = PBXReferenceProxy;
  1083. fileType = archive.ar;
  1084. path = "libprivatedata-tvOS.a";
  1085. remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */;
  1086. sourceTree = BUILT_PRODUCTS_DIR;
  1087. };
  1088. 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
  1089. isa = PBXReferenceProxy;
  1090. fileType = archive.ar;
  1091. path = "libRCTImage-tvOS.a";
  1092. remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
  1093. sourceTree = BUILT_PRODUCTS_DIR;
  1094. };
  1095. 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
  1096. isa = PBXReferenceProxy;
  1097. fileType = archive.ar;
  1098. path = "libRCTLinking-tvOS.a";
  1099. remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
  1100. sourceTree = BUILT_PRODUCTS_DIR;
  1101. };
  1102. 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
  1103. isa = PBXReferenceProxy;
  1104. fileType = archive.ar;
  1105. path = "libRCTNetwork-tvOS.a";
  1106. remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
  1107. sourceTree = BUILT_PRODUCTS_DIR;
  1108. };
  1109. 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
  1110. isa = PBXReferenceProxy;
  1111. fileType = archive.ar;
  1112. path = "libRCTSettings-tvOS.a";
  1113. remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
  1114. sourceTree = BUILT_PRODUCTS_DIR;
  1115. };
  1116. 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
  1117. isa = PBXReferenceProxy;
  1118. fileType = archive.ar;
  1119. path = "libRCTText-tvOS.a";
  1120. remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
  1121. sourceTree = BUILT_PRODUCTS_DIR;
  1122. };
  1123. 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
  1124. isa = PBXReferenceProxy;
  1125. fileType = archive.ar;
  1126. path = "libRCTWebSocket-tvOS.a";
  1127. remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
  1128. sourceTree = BUILT_PRODUCTS_DIR;
  1129. };
  1130. 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
  1131. isa = PBXReferenceProxy;
  1132. fileType = archive.ar;
  1133. path = libReact.a;
  1134. remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
  1135. sourceTree = BUILT_PRODUCTS_DIR;
  1136. };
  1137. 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
  1138. isa = PBXReferenceProxy;
  1139. fileType = archive.ar;
  1140. path = libyoga.a;
  1141. remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
  1142. sourceTree = BUILT_PRODUCTS_DIR;
  1143. };
  1144. 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
  1145. isa = PBXReferenceProxy;
  1146. fileType = archive.ar;
  1147. path = libyoga.a;
  1148. remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
  1149. sourceTree = BUILT_PRODUCTS_DIR;
  1150. };
  1151. 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
  1152. isa = PBXReferenceProxy;
  1153. fileType = archive.ar;
  1154. path = libcxxreact.a;
  1155. remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
  1156. sourceTree = BUILT_PRODUCTS_DIR;
  1157. };
  1158. 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
  1159. isa = PBXReferenceProxy;
  1160. fileType = archive.ar;
  1161. path = libcxxreact.a;
  1162. remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
  1163. sourceTree = BUILT_PRODUCTS_DIR;
  1164. };
  1165. 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
  1166. isa = PBXReferenceProxy;
  1167. fileType = archive.ar;
  1168. path = libjschelpers.a;
  1169. remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
  1170. sourceTree = BUILT_PRODUCTS_DIR;
  1171. };
  1172. 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
  1173. isa = PBXReferenceProxy;
  1174. fileType = archive.ar;
  1175. path = libjschelpers.a;
  1176. remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
  1177. sourceTree = BUILT_PRODUCTS_DIR;
  1178. };
  1179. 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
  1180. isa = PBXReferenceProxy;
  1181. fileType = archive.ar;
  1182. path = libRCTAnimation.a;
  1183. remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
  1184. sourceTree = BUILT_PRODUCTS_DIR;
  1185. };
  1186. 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
  1187. isa = PBXReferenceProxy;
  1188. fileType = archive.ar;
  1189. path = libRCTAnimation.a;
  1190. remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
  1191. sourceTree = BUILT_PRODUCTS_DIR;
  1192. };
  1193. 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
  1194. isa = PBXReferenceProxy;
  1195. fileType = archive.ar;
  1196. path = libRCTLinking.a;
  1197. remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
  1198. sourceTree = BUILT_PRODUCTS_DIR;
  1199. };
  1200. 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
  1201. isa = PBXReferenceProxy;
  1202. fileType = archive.ar;
  1203. path = libRCTText.a;
  1204. remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
  1205. sourceTree = BUILT_PRODUCTS_DIR;
  1206. };
  1207. ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
  1208. isa = PBXReferenceProxy;
  1209. fileType = archive.ar;
  1210. path = libRCTBlob.a;
  1211. remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
  1212. sourceTree = BUILT_PRODUCTS_DIR;
  1213. };
  1214. AE3B4D002132995A006E0B16 /* libRCTContactsWrapper.a */ = {
  1215. isa = PBXReferenceProxy;
  1216. fileType = archive.ar;
  1217. path = libRCTContactsWrapper.a;
  1218. remoteRef = AE3B4CFF2132995A006E0B16 /* PBXContainerItemProxy */;
  1219. sourceTree = BUILT_PRODUCTS_DIR;
  1220. };
  1221. AE81389D21351B160081B250 /* libRNCamera.a */ = {
  1222. isa = PBXReferenceProxy;
  1223. fileType = archive.ar;
  1224. path = libRNCamera.a;
  1225. remoteRef = AE81389C21351B160081B250 /* PBXContainerItemProxy */;
  1226. sourceTree = BUILT_PRODUCTS_DIR;
  1227. };
  1228. AE9332AC212FD00E00A82ECC /* libimageCropPicker.a */ = {
  1229. isa = PBXReferenceProxy;
  1230. fileType = archive.ar;
  1231. path = libimageCropPicker.a;
  1232. remoteRef = AE9332AB212FD00E00A82ECC /* PBXContainerItemProxy */;
  1233. sourceTree = BUILT_PRODUCTS_DIR;
  1234. };
  1235. AE9B3B1021383CFD0031A7C6 /* libRNAudio.a */ = {
  1236. isa = PBXReferenceProxy;
  1237. fileType = archive.ar;
  1238. path = libRNAudio.a;
  1239. remoteRef = AE9B3B0F21383CFD0031A7C6 /* PBXContainerItemProxy */;
  1240. sourceTree = BUILT_PRODUCTS_DIR;
  1241. };
  1242. AE9B3B5221383D0C0031A7C6 /* libRNSound.a */ = {
  1243. isa = PBXReferenceProxy;
  1244. fileType = archive.ar;
  1245. path = libRNSound.a;
  1246. remoteRef = AE9B3B5121383D0C0031A7C6 /* PBXContainerItemProxy */;
  1247. sourceTree = BUILT_PRODUCTS_DIR;
  1248. };
  1249. AEAADD12213263FF00FED8AE /* libRNContactsPicker.a */ = {
  1250. isa = PBXReferenceProxy;
  1251. fileType = archive.ar;
  1252. path = libRNContactsPicker.a;
  1253. remoteRef = AEAADD11213263FF00FED8AE /* PBXContainerItemProxy */;
  1254. sourceTree = BUILT_PRODUCTS_DIR;
  1255. };
  1256. /* End PBXReferenceProxy section */
  1257. /* Begin PBXResourcesBuildPhase section */
  1258. 00E356EC1AD99517003FC87E /* Resources */ = {
  1259. isa = PBXResourcesBuildPhase;
  1260. buildActionMask = 2147483647;
  1261. files = (
  1262. );
  1263. runOnlyForDeploymentPostprocessing = 0;
  1264. };
  1265. 13B07F8E1A680F5B00A75B9A /* Resources */ = {
  1266. isa = PBXResourcesBuildPhase;
  1267. buildActionMask = 2147483647;
  1268. files = (
  1269. 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
  1270. AE3B4C4D21328968006E0B16 /* Images.xcassets in Resources */,
  1271. );
  1272. runOnlyForDeploymentPostprocessing = 0;
  1273. };
  1274. 2D02E4791E0B4A5D006451C7 /* Resources */ = {
  1275. isa = PBXResourcesBuildPhase;
  1276. buildActionMask = 2147483647;
  1277. files = (
  1278. );
  1279. runOnlyForDeploymentPostprocessing = 0;
  1280. };
  1281. 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
  1282. isa = PBXResourcesBuildPhase;
  1283. buildActionMask = 2147483647;
  1284. files = (
  1285. );
  1286. runOnlyForDeploymentPostprocessing = 0;
  1287. };
  1288. /* End PBXResourcesBuildPhase section */
  1289. /* Begin PBXShellScriptBuildPhase section */
  1290. 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
  1291. isa = PBXShellScriptBuildPhase;
  1292. buildActionMask = 2147483647;
  1293. files = (
  1294. );
  1295. inputPaths = (
  1296. );
  1297. name = "Bundle React Native code and images";
  1298. outputPaths = (
  1299. );
  1300. runOnlyForDeploymentPostprocessing = 0;
  1301. shellPath = /bin/sh;
  1302. shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
  1303. };
  1304. 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
  1305. isa = PBXShellScriptBuildPhase;
  1306. buildActionMask = 2147483647;
  1307. files = (
  1308. );
  1309. inputPaths = (
  1310. );
  1311. name = "Bundle React Native Code And Images";
  1312. outputPaths = (
  1313. );
  1314. runOnlyForDeploymentPostprocessing = 0;
  1315. shellPath = /bin/sh;
  1316. shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
  1317. };
  1318. /* End PBXShellScriptBuildPhase section */
  1319. /* Begin PBXSourcesBuildPhase section */
  1320. 00E356EA1AD99517003FC87E /* Sources */ = {
  1321. isa = PBXSourcesBuildPhase;
  1322. buildActionMask = 2147483647;
  1323. files = (
  1324. 00E356F31AD99517003FC87E /* huiliaoAPPTests.m in Sources */,
  1325. );
  1326. runOnlyForDeploymentPostprocessing = 0;
  1327. };
  1328. 13B07F871A680F5B00A75B9A /* Sources */ = {
  1329. isa = PBXSourcesBuildPhase;
  1330. buildActionMask = 2147483647;
  1331. files = (
  1332. 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
  1333. 13B07FC11A68108700A75B9A /* main.m in Sources */,
  1334. );
  1335. runOnlyForDeploymentPostprocessing = 0;
  1336. };
  1337. 2D02E4771E0B4A5D006451C7 /* Sources */ = {
  1338. isa = PBXSourcesBuildPhase;
  1339. buildActionMask = 2147483647;
  1340. files = (
  1341. 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
  1342. 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
  1343. );
  1344. runOnlyForDeploymentPostprocessing = 0;
  1345. };
  1346. 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
  1347. isa = PBXSourcesBuildPhase;
  1348. buildActionMask = 2147483647;
  1349. files = (
  1350. 2DCD954D1E0B4F2C00145EB5 /* huiliaoAPPTests.m in Sources */,
  1351. );
  1352. runOnlyForDeploymentPostprocessing = 0;
  1353. };
  1354. /* End PBXSourcesBuildPhase section */
  1355. /* Begin PBXTargetDependency section */
  1356. 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
  1357. isa = PBXTargetDependency;
  1358. target = 13B07F861A680F5B00A75B9A /* huiliaoAPP */;
  1359. targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
  1360. };
  1361. 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
  1362. isa = PBXTargetDependency;
  1363. target = 2D02E47A1E0B4A5D006451C7 /* huiliaoAPP-tvOS */;
  1364. targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
  1365. };
  1366. /* End PBXTargetDependency section */
  1367. /* Begin PBXVariantGroup section */
  1368. 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
  1369. isa = PBXVariantGroup;
  1370. children = (
  1371. 13B07FB21A68108700A75B9A /* Base */,
  1372. );
  1373. name = LaunchScreen.xib;
  1374. path = huiliaoAPP;
  1375. sourceTree = "<group>";
  1376. };
  1377. /* End PBXVariantGroup section */
  1378. /* Begin XCBuildConfiguration section */
  1379. 00E356F61AD99517003FC87E /* Debug */ = {
  1380. isa = XCBuildConfiguration;
  1381. buildSettings = {
  1382. BUNDLE_LOADER = "$(TEST_HOST)";
  1383. GCC_PREPROCESSOR_DEFINITIONS = (
  1384. "DEBUG=1",
  1385. "$(inherited)",
  1386. );
  1387. HEADER_SEARCH_PATHS = (
  1388. "$(inherited)",
  1389. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1390. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1391. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1392. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1393. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1394. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1395. );
  1396. INFOPLIST_FILE = huiliaoAPPTests/Info.plist;
  1397. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1398. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1399. LIBRARY_SEARCH_PATHS = (
  1400. "$(inherited)",
  1401. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1402. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1403. );
  1404. OTHER_LDFLAGS = (
  1405. "-ObjC",
  1406. "-lc++",
  1407. );
  1408. PRODUCT_NAME = "$(TARGET_NAME)";
  1409. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/huiliaoAPP.app/huiliaoAPP";
  1410. };
  1411. name = Debug;
  1412. };
  1413. 00E356F71AD99517003FC87E /* Release */ = {
  1414. isa = XCBuildConfiguration;
  1415. buildSettings = {
  1416. BUNDLE_LOADER = "$(TEST_HOST)";
  1417. COPY_PHASE_STRIP = NO;
  1418. HEADER_SEARCH_PATHS = (
  1419. "$(inherited)",
  1420. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1421. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1422. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1423. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1424. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1425. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1426. );
  1427. INFOPLIST_FILE = huiliaoAPPTests/Info.plist;
  1428. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1429. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1430. LIBRARY_SEARCH_PATHS = (
  1431. "$(inherited)",
  1432. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1433. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1434. );
  1435. OTHER_LDFLAGS = (
  1436. "-ObjC",
  1437. "-lc++",
  1438. );
  1439. PRODUCT_NAME = "$(TARGET_NAME)";
  1440. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/huiliaoAPP.app/huiliaoAPP";
  1441. };
  1442. name = Release;
  1443. };
  1444. 13B07F941A680F5B00A75B9A /* Debug */ = {
  1445. isa = XCBuildConfiguration;
  1446. buildSettings = {
  1447. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1448. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  1449. CURRENT_PROJECT_VERSION = 1;
  1450. DEAD_CODE_STRIPPING = NO;
  1451. DEVELOPMENT_TEAM = 87KURQP592;
  1452. HEADER_SEARCH_PATHS = (
  1453. "$(inherited)",
  1454. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1455. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1456. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1457. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1458. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1459. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1460. );
  1461. INFOPLIST_FILE = huiliaoAPP/Info.plist;
  1462. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1463. OTHER_LDFLAGS = (
  1464. "$(inherited)",
  1465. "-ObjC",
  1466. "-lc++",
  1467. );
  1468. PRODUCT_BUNDLE_IDENTIFIER = com.skylinuav.oms;
  1469. PRODUCT_NAME = huiliaoAPP;
  1470. VERSIONING_SYSTEM = "apple-generic";
  1471. };
  1472. name = Debug;
  1473. };
  1474. 13B07F951A680F5B00A75B9A /* Release */ = {
  1475. isa = XCBuildConfiguration;
  1476. buildSettings = {
  1477. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1478. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  1479. CURRENT_PROJECT_VERSION = 1;
  1480. DEVELOPMENT_TEAM = 87KURQP592;
  1481. HEADER_SEARCH_PATHS = (
  1482. "$(inherited)",
  1483. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1484. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1485. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1486. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1487. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1488. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1489. );
  1490. INFOPLIST_FILE = huiliaoAPP/Info.plist;
  1491. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1492. OTHER_LDFLAGS = (
  1493. "$(inherited)",
  1494. "-ObjC",
  1495. "-lc++",
  1496. );
  1497. PRODUCT_BUNDLE_IDENTIFIER = com.skylinuav.oms;
  1498. PRODUCT_NAME = huiliaoAPP;
  1499. VERSIONING_SYSTEM = "apple-generic";
  1500. };
  1501. name = Release;
  1502. };
  1503. 2D02E4971E0B4A5E006451C7 /* Debug */ = {
  1504. isa = XCBuildConfiguration;
  1505. buildSettings = {
  1506. ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
  1507. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  1508. CLANG_ANALYZER_NONNULL = YES;
  1509. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1510. CLANG_WARN_INFINITE_RECURSION = YES;
  1511. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1512. DEBUG_INFORMATION_FORMAT = dwarf;
  1513. ENABLE_TESTABILITY = YES;
  1514. GCC_NO_COMMON_BLOCKS = YES;
  1515. HEADER_SEARCH_PATHS = (
  1516. "$(inherited)",
  1517. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1518. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1519. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1520. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1521. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1522. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1523. );
  1524. INFOPLIST_FILE = "huiliaoAPP-tvOS/Info.plist";
  1525. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1526. LIBRARY_SEARCH_PATHS = (
  1527. "$(inherited)",
  1528. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1529. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1530. );
  1531. OTHER_LDFLAGS = (
  1532. "-ObjC",
  1533. "-lc++",
  1534. );
  1535. PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.huiliaoAPP-tvOS";
  1536. PRODUCT_NAME = "$(TARGET_NAME)";
  1537. SDKROOT = appletvos;
  1538. TARGETED_DEVICE_FAMILY = 3;
  1539. TVOS_DEPLOYMENT_TARGET = 9.2;
  1540. };
  1541. name = Debug;
  1542. };
  1543. 2D02E4981E0B4A5E006451C7 /* Release */ = {
  1544. isa = XCBuildConfiguration;
  1545. buildSettings = {
  1546. ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
  1547. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  1548. CLANG_ANALYZER_NONNULL = YES;
  1549. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1550. CLANG_WARN_INFINITE_RECURSION = YES;
  1551. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1552. COPY_PHASE_STRIP = NO;
  1553. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1554. GCC_NO_COMMON_BLOCKS = YES;
  1555. HEADER_SEARCH_PATHS = (
  1556. "$(inherited)",
  1557. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1558. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1559. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1560. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1561. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1562. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1563. );
  1564. INFOPLIST_FILE = "huiliaoAPP-tvOS/Info.plist";
  1565. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1566. LIBRARY_SEARCH_PATHS = (
  1567. "$(inherited)",
  1568. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1569. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1570. );
  1571. OTHER_LDFLAGS = (
  1572. "-ObjC",
  1573. "-lc++",
  1574. );
  1575. PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.huiliaoAPP-tvOS";
  1576. PRODUCT_NAME = "$(TARGET_NAME)";
  1577. SDKROOT = appletvos;
  1578. TARGETED_DEVICE_FAMILY = 3;
  1579. TVOS_DEPLOYMENT_TARGET = 9.2;
  1580. };
  1581. name = Release;
  1582. };
  1583. 2D02E4991E0B4A5E006451C7 /* Debug */ = {
  1584. isa = XCBuildConfiguration;
  1585. buildSettings = {
  1586. BUNDLE_LOADER = "$(TEST_HOST)";
  1587. CLANG_ANALYZER_NONNULL = YES;
  1588. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1589. CLANG_WARN_INFINITE_RECURSION = YES;
  1590. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1591. DEBUG_INFORMATION_FORMAT = dwarf;
  1592. ENABLE_TESTABILITY = YES;
  1593. GCC_NO_COMMON_BLOCKS = YES;
  1594. HEADER_SEARCH_PATHS = (
  1595. "$(inherited)",
  1596. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1597. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1598. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1599. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1600. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1601. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1602. );
  1603. INFOPLIST_FILE = "huiliaoAPP-tvOSTests/Info.plist";
  1604. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1605. LIBRARY_SEARCH_PATHS = (
  1606. "$(inherited)",
  1607. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1608. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1609. );
  1610. OTHER_LDFLAGS = (
  1611. "-ObjC",
  1612. "-lc++",
  1613. );
  1614. PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.huiliaoAPP-tvOSTests";
  1615. PRODUCT_NAME = "$(TARGET_NAME)";
  1616. SDKROOT = appletvos;
  1617. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/huiliaoAPP-tvOS.app/huiliaoAPP-tvOS";
  1618. TVOS_DEPLOYMENT_TARGET = 10.1;
  1619. };
  1620. name = Debug;
  1621. };
  1622. 2D02E49A1E0B4A5E006451C7 /* Release */ = {
  1623. isa = XCBuildConfiguration;
  1624. buildSettings = {
  1625. BUNDLE_LOADER = "$(TEST_HOST)";
  1626. CLANG_ANALYZER_NONNULL = YES;
  1627. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1628. CLANG_WARN_INFINITE_RECURSION = YES;
  1629. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1630. COPY_PHASE_STRIP = NO;
  1631. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1632. GCC_NO_COMMON_BLOCKS = YES;
  1633. HEADER_SEARCH_PATHS = (
  1634. "$(inherited)",
  1635. "$(SRCROOT)/../node_modules/react-native-image-crop-picker/ios/**",
  1636. "$(SRCROOT)/../node_modules/react-native-contacts-picker/ios/RNContactsPicker",
  1637. "$(SRCROOT)/../node_modules/react-native-contacts-wrapper/ios/RCTContactsWrapper",
  1638. "$(SRCROOT)/../node_modules/react-native-camera/ios/**",
  1639. "$(SRCROOT)/../node_modules/react-native-audio/ios",
  1640. "$(SRCROOT)/../node_modules/react-native-sound/RNSound",
  1641. );
  1642. INFOPLIST_FILE = "huiliaoAPP-tvOSTests/Info.plist";
  1643. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1644. LIBRARY_SEARCH_PATHS = (
  1645. "$(inherited)",
  1646. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1647. "\"$(SRCROOT)/$(TARGET_NAME)\"",
  1648. );
  1649. OTHER_LDFLAGS = (
  1650. "-ObjC",
  1651. "-lc++",
  1652. );
  1653. PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.huiliaoAPP-tvOSTests";
  1654. PRODUCT_NAME = "$(TARGET_NAME)";
  1655. SDKROOT = appletvos;
  1656. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/huiliaoAPP-tvOS.app/huiliaoAPP-tvOS";
  1657. TVOS_DEPLOYMENT_TARGET = 10.1;
  1658. };
  1659. name = Release;
  1660. };
  1661. 83CBBA201A601CBA00E9B192 /* Debug */ = {
  1662. isa = XCBuildConfiguration;
  1663. buildSettings = {
  1664. ALWAYS_SEARCH_USER_PATHS = NO;
  1665. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1666. CLANG_CXX_LIBRARY = "libc++";
  1667. CLANG_ENABLE_MODULES = YES;
  1668. CLANG_ENABLE_OBJC_ARC = YES;
  1669. CLANG_WARN_BOOL_CONVERSION = YES;
  1670. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1671. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1672. CLANG_WARN_EMPTY_BODY = YES;
  1673. CLANG_WARN_ENUM_CONVERSION = YES;
  1674. CLANG_WARN_INT_CONVERSION = YES;
  1675. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1676. CLANG_WARN_UNREACHABLE_CODE = YES;
  1677. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1678. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1679. COPY_PHASE_STRIP = NO;
  1680. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1681. GCC_C_LANGUAGE_STANDARD = gnu99;
  1682. GCC_DYNAMIC_NO_PIC = NO;
  1683. GCC_OPTIMIZATION_LEVEL = 0;
  1684. GCC_PREPROCESSOR_DEFINITIONS = (
  1685. "DEBUG=1",
  1686. "$(inherited)",
  1687. );
  1688. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  1689. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1690. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1691. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1692. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1693. GCC_WARN_UNUSED_FUNCTION = YES;
  1694. GCC_WARN_UNUSED_VARIABLE = YES;
  1695. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1696. MTL_ENABLE_DEBUG_INFO = YES;
  1697. ONLY_ACTIVE_ARCH = YES;
  1698. SDKROOT = iphoneos;
  1699. };
  1700. name = Debug;
  1701. };
  1702. 83CBBA211A601CBA00E9B192 /* Release */ = {
  1703. isa = XCBuildConfiguration;
  1704. buildSettings = {
  1705. ALWAYS_SEARCH_USER_PATHS = NO;
  1706. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1707. CLANG_CXX_LIBRARY = "libc++";
  1708. CLANG_ENABLE_MODULES = YES;
  1709. CLANG_ENABLE_OBJC_ARC = YES;
  1710. CLANG_WARN_BOOL_CONVERSION = YES;
  1711. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1712. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1713. CLANG_WARN_EMPTY_BODY = YES;
  1714. CLANG_WARN_ENUM_CONVERSION = YES;
  1715. CLANG_WARN_INT_CONVERSION = YES;
  1716. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1717. CLANG_WARN_UNREACHABLE_CODE = YES;
  1718. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1719. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1720. COPY_PHASE_STRIP = YES;
  1721. ENABLE_NS_ASSERTIONS = NO;
  1722. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1723. GCC_C_LANGUAGE_STANDARD = gnu99;
  1724. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1725. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1726. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1727. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1728. GCC_WARN_UNUSED_FUNCTION = YES;
  1729. GCC_WARN_UNUSED_VARIABLE = YES;
  1730. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1731. MTL_ENABLE_DEBUG_INFO = NO;
  1732. SDKROOT = iphoneos;
  1733. VALIDATE_PRODUCT = YES;
  1734. };
  1735. name = Release;
  1736. };
  1737. /* End XCBuildConfiguration section */
  1738. /* Begin XCConfigurationList section */
  1739. 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "huiliaoAPPTests" */ = {
  1740. isa = XCConfigurationList;
  1741. buildConfigurations = (
  1742. 00E356F61AD99517003FC87E /* Debug */,
  1743. 00E356F71AD99517003FC87E /* Release */,
  1744. );
  1745. defaultConfigurationIsVisible = 0;
  1746. defaultConfigurationName = Release;
  1747. };
  1748. 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "huiliaoAPP" */ = {
  1749. isa = XCConfigurationList;
  1750. buildConfigurations = (
  1751. 13B07F941A680F5B00A75B9A /* Debug */,
  1752. 13B07F951A680F5B00A75B9A /* Release */,
  1753. );
  1754. defaultConfigurationIsVisible = 0;
  1755. defaultConfigurationName = Release;
  1756. };
  1757. 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "huiliaoAPP-tvOS" */ = {
  1758. isa = XCConfigurationList;
  1759. buildConfigurations = (
  1760. 2D02E4971E0B4A5E006451C7 /* Debug */,
  1761. 2D02E4981E0B4A5E006451C7 /* Release */,
  1762. );
  1763. defaultConfigurationIsVisible = 0;
  1764. defaultConfigurationName = Release;
  1765. };
  1766. 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "huiliaoAPP-tvOSTests" */ = {
  1767. isa = XCConfigurationList;
  1768. buildConfigurations = (
  1769. 2D02E4991E0B4A5E006451C7 /* Debug */,
  1770. 2D02E49A1E0B4A5E006451C7 /* Release */,
  1771. );
  1772. defaultConfigurationIsVisible = 0;
  1773. defaultConfigurationName = Release;
  1774. };
  1775. 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "huiliaoAPP" */ = {
  1776. isa = XCConfigurationList;
  1777. buildConfigurations = (
  1778. 83CBBA201A601CBA00E9B192 /* Debug */,
  1779. 83CBBA211A601CBA00E9B192 /* Release */,
  1780. );
  1781. defaultConfigurationIsVisible = 0;
  1782. defaultConfigurationName = Release;
  1783. };
  1784. /* End XCConfigurationList section */
  1785. };
  1786. rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
  1787. }