Nessuna descrizione

project.pbxproj 79KB

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