project.pbxproj 89 KB

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