project.pbxproj 77 KB

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