project.pbxproj 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 54;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 00E356F31AD99517003FC87E /* StridesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* StridesTests.m */; };
  10. 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
  11. 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
  12. 25C7FBDA2AA706D400F61AA1 /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 25C7FBD92AA706D400F61AA1 /* AppDelegate.mm */; };
  13. 25F6C61B2BAC214500DEECE4 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 25F6C61A2BAC214500DEECE4 /* PrivacyInfo.xcprivacy */; };
  14. 38066FC426DE16BF00271DFA /* main.jsbundle in Resources */ = {isa = PBXBuildFile; fileRef = 38066FC226DE16BF00271DFA /* main.jsbundle */; };
  15. 38066FC526DE16BF00271DFA /* assets in Resources */ = {isa = PBXBuildFile; fileRef = 38066FC326DE16BF00271DFA /* assets */; };
  16. 3806702826DF20DA00271DFA /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 38066FC926DF20DA00271DFA /* GoogleService-Info.plist */; };
  17. 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
  18. A5707C5E2B88048AC01CD052 /* libPods-Strides.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB9107F120992435E6CC55BB /* libPods-Strides.a */; };
  19. A8CB5874BD86036F4E6DF87A /* libPods-Strides-StridesTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AB9D2CD35A198422C90BC492 /* libPods-Strides-StridesTests.a */; };
  20. /* End PBXBuildFile section */
  21. /* Begin PBXContainerItemProxy section */
  22. 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
  23. isa = PBXContainerItemProxy;
  24. containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
  25. proxyType = 1;
  26. remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
  27. remoteInfo = Strides;
  28. };
  29. 25450AEF2A554B630078250E /* PBXContainerItemProxy */ = {
  30. isa = PBXContainerItemProxy;
  31. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  32. proxyType = 2;
  33. remoteGlobalIDString = 0CEDE9F988A667E9E55A853581258D15;
  34. remoteInfo = RNI18n;
  35. };
  36. 25C7FBB12AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  37. isa = PBXContainerItemProxy;
  38. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  39. proxyType = 2;
  40. remoteGlobalIDString = 6CBEFE4F9E22AFDC6347A739BB35FF8C;
  41. remoteInfo = CocoaAsyncSocket;
  42. };
  43. 25C7FBB32AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  44. isa = PBXContainerItemProxy;
  45. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  46. proxyType = 2;
  47. remoteGlobalIDString = E93F701CA8EB196D77AE99E094D873E4;
  48. remoteInfo = Flipper;
  49. };
  50. 25C7FBB52AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  51. isa = PBXContainerItemProxy;
  52. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  53. proxyType = 2;
  54. remoteGlobalIDString = 8FD3DD8368ED4B6E773ABAA49C117D42;
  55. remoteInfo = "Flipper-Boost-iOSX";
  56. };
  57. 25C7FBB72AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  58. isa = PBXContainerItemProxy;
  59. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  60. proxyType = 2;
  61. remoteGlobalIDString = 396DAFDC3DCFBF31A37A3CC9488C0DDC;
  62. remoteInfo = "Flipper-Fmt";
  63. };
  64. 25C7FBB92AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  65. isa = PBXContainerItemProxy;
  66. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  67. proxyType = 2;
  68. remoteGlobalIDString = 99D5CD245388DC76AAEF6E1E351A90ED;
  69. remoteInfo = "Flipper-Folly";
  70. };
  71. 25C7FBBB2AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  72. isa = PBXContainerItemProxy;
  73. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  74. proxyType = 2;
  75. remoteGlobalIDString = ACBB7F62B267CC7C9BBBAE41DE94743B;
  76. remoteInfo = "Flipper-PeerTalk";
  77. };
  78. 25C7FBBD2AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  79. isa = PBXContainerItemProxy;
  80. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  81. proxyType = 2;
  82. remoteGlobalIDString = 65234B3E668A42D9137B2C7AB051EE37;
  83. remoteInfo = FlipperKit;
  84. };
  85. 25C7FBBF2AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  86. isa = PBXContainerItemProxy;
  87. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  88. proxyType = 2;
  89. remoteGlobalIDString = F4BDA69E3BCB0166D49FB679ABADCA00;
  90. remoteInfo = fmt;
  91. };
  92. 25C7FBC12AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  93. isa = PBXContainerItemProxy;
  94. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  95. proxyType = 2;
  96. remoteGlobalIDString = FB6FAD8F0183E86ACBFBD8A81BA7BF3A;
  97. remoteInfo = libevent;
  98. };
  99. 25C7FBC32AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  100. isa = PBXContainerItemProxy;
  101. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  102. proxyType = 2;
  103. remoteGlobalIDString = E7178FECB829C9576A3723658B07F087;
  104. remoteInfo = "React-Codegen";
  105. };
  106. 25C7FBC52AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  107. isa = PBXContainerItemProxy;
  108. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  109. proxyType = 2;
  110. remoteGlobalIDString = 6ED2C07E6AE77BBD9A6856E523EF6A06;
  111. remoteInfo = "React-debug";
  112. };
  113. 25C7FBC72AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  114. isa = PBXContainerItemProxy;
  115. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  116. proxyType = 2;
  117. remoteGlobalIDString = DAD8B71DF2DFCF15AAF98C06D37D5703;
  118. remoteInfo = "React-hermes";
  119. };
  120. 25C7FBC92AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  121. isa = PBXContainerItemProxy;
  122. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  123. proxyType = 2;
  124. remoteGlobalIDString = A5B49761F8D1EB12585DD45CAA2E489F;
  125. remoteInfo = "React-logger";
  126. };
  127. 25C7FBCB2AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  128. isa = PBXContainerItemProxy;
  129. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  130. proxyType = 2;
  131. remoteGlobalIDString = 33B49C6613B0AA0291A359688E245886;
  132. remoteInfo = "react-native-pager-view";
  133. };
  134. 25C7FBCD2AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  135. isa = PBXContainerItemProxy;
  136. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  137. proxyType = 2;
  138. remoteGlobalIDString = 1E649614D7644BF68C2F5D4CB3FBF8DC;
  139. remoteInfo = "React-NativeModulesApple";
  140. };
  141. 25C7FBCF2AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  142. isa = PBXContainerItemProxy;
  143. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  144. proxyType = 2;
  145. remoteGlobalIDString = 39D0105B481E5FB78C661496BD63B8A5;
  146. remoteInfo = "React-RCTAppDelegate";
  147. };
  148. 25C7FBD12AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  149. isa = PBXContainerItemProxy;
  150. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  151. proxyType = 2;
  152. remoteGlobalIDString = A67E85E5F06FDA406D3A1B378BDF0C5C;
  153. remoteInfo = "React-runtimescheduler";
  154. };
  155. 25C7FBD32AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  156. isa = PBXContainerItemProxy;
  157. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  158. proxyType = 2;
  159. remoteGlobalIDString = B7610E9FDE749C16C0B1CDAAF3B2DDC2;
  160. remoteInfo = "React-utils";
  161. };
  162. 25C7FBD52AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  163. isa = PBXContainerItemProxy;
  164. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  165. proxyType = 2;
  166. remoteGlobalIDString = 85A01882ED06DFEA2E0CE78BCDB204A7;
  167. remoteInfo = SocketRocket;
  168. };
  169. 25C7FBD72AA706B500F61AA1 /* PBXContainerItemProxy */ = {
  170. isa = PBXContainerItemProxy;
  171. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  172. proxyType = 2;
  173. remoteGlobalIDString = 5B3357A1CE67C0BF4AE31936A1BE6888;
  174. remoteInfo = YogaKit;
  175. };
  176. 3806701826DF20DA00271DFA /* PBXContainerItemProxy */ = {
  177. isa = PBXContainerItemProxy;
  178. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  179. proxyType = 2;
  180. remoteGlobalIDString = E2B63D462DB7F827C4B11FD51E4F8E2D;
  181. remoteInfo = FirebaseCore;
  182. };
  183. 3806701C26DF20DA00271DFA /* PBXContainerItemProxy */ = {
  184. isa = PBXContainerItemProxy;
  185. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  186. proxyType = 2;
  187. remoteGlobalIDString = 13C8C8B254851998F9289F71229B28A2;
  188. remoteInfo = FirebaseInstallations;
  189. };
  190. 3806701E26DF20DA00271DFA /* PBXContainerItemProxy */ = {
  191. isa = PBXContainerItemProxy;
  192. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  193. proxyType = 2;
  194. remoteGlobalIDString = 5B654B4B042BA7DC93766943A643E42B;
  195. remoteInfo = FirebaseMessaging;
  196. };
  197. 3806702026DF20DA00271DFA /* PBXContainerItemProxy */ = {
  198. isa = PBXContainerItemProxy;
  199. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  200. proxyType = 2;
  201. remoteGlobalIDString = 856B5CD56F194FAD26EA91620B66D614;
  202. remoteInfo = GoogleDataTransport;
  203. };
  204. 3806702226DF20DA00271DFA /* PBXContainerItemProxy */ = {
  205. isa = PBXContainerItemProxy;
  206. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  207. proxyType = 2;
  208. remoteGlobalIDString = B43874C6CBB50E7134FBEC24BABFE14F;
  209. remoteInfo = GoogleUtilities;
  210. };
  211. 3806702426DF20DA00271DFA /* PBXContainerItemProxy */ = {
  212. isa = PBXContainerItemProxy;
  213. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  214. proxyType = 2;
  215. remoteGlobalIDString = 06FC5C9CF96D60C50FCD47D339C91951;
  216. remoteInfo = nanopb;
  217. };
  218. 3806702626DF20DA00271DFA /* PBXContainerItemProxy */ = {
  219. isa = PBXContainerItemProxy;
  220. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  221. proxyType = 2;
  222. remoteGlobalIDString = 3347A1AB6546F0A3977529B8F199DC41;
  223. remoteInfo = PromisesObjC;
  224. };
  225. 382FB1E6272F967F007EE9BB /* PBXContainerItemProxy */ = {
  226. isa = PBXContainerItemProxy;
  227. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  228. proxyType = 2;
  229. remoteGlobalIDString = E0FE6533198104C97DB047DD5CD8AC67;
  230. remoteInfo = RNDeviceInfo;
  231. };
  232. 385053C42970039F0061999F /* PBXContainerItemProxy */ = {
  233. isa = PBXContainerItemProxy;
  234. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  235. proxyType = 2;
  236. remoteGlobalIDString = 3F282D213AB9D1ECA1228C986CC9D2BA;
  237. remoteInfo = BEMCheckBox;
  238. };
  239. 3860E742266E248E0059CC98 /* PBXContainerItemProxy */ = {
  240. isa = PBXContainerItemProxy;
  241. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  242. proxyType = 2;
  243. remoteGlobalIDString = 8998273719FDD789E6F9C7541AFD0B33;
  244. remoteInfo = RNVectorIcons;
  245. };
  246. 3862FE982668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  247. isa = PBXContainerItemProxy;
  248. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  249. proxyType = 2;
  250. remoteGlobalIDString = 6FFB7B2992BB53405E6B771A5BA1E97D;
  251. remoteInfo = DoubleConversion;
  252. };
  253. 3862FE9C2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  254. isa = PBXContainerItemProxy;
  255. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  256. proxyType = 2;
  257. remoteGlobalIDString = 3CA7A9404CCDD6BA22C97F8348CE3209;
  258. remoteInfo = glog;
  259. };
  260. 3862FEA02668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  261. isa = PBXContainerItemProxy;
  262. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  263. proxyType = 2;
  264. remoteGlobalIDString = 3364DB8FF1D99BD1B5B979899EF22ACA;
  265. remoteInfo = "Pods-Strides";
  266. };
  267. 3862FEA22668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  268. isa = PBXContainerItemProxy;
  269. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  270. proxyType = 2;
  271. remoteGlobalIDString = 6FA676FEECD8315301CB3942982C4BCD;
  272. remoteInfo = "Pods-Strides-StridesTests";
  273. };
  274. 3862FEA42668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  275. isa = PBXContainerItemProxy;
  276. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  277. proxyType = 2;
  278. remoteGlobalIDString = 1936453FF2A7E3A13063C4917C4D5598;
  279. remoteInfo = "RCT-Folly";
  280. };
  281. 3862FEA62668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  282. isa = PBXContainerItemProxy;
  283. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  284. proxyType = 2;
  285. remoteGlobalIDString = F958876A082BF810B342435CE3FB5AF6;
  286. remoteInfo = RCTTypeSafety;
  287. };
  288. 3862FEA82668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  289. isa = PBXContainerItemProxy;
  290. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  291. proxyType = 2;
  292. remoteGlobalIDString = BD71E2539823621820F84384064C253A;
  293. remoteInfo = "React-Core";
  294. };
  295. 3862FEAA2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  296. isa = PBXContainerItemProxy;
  297. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  298. proxyType = 2;
  299. remoteGlobalIDString = FE6D792B6328AAF68E46924D7F466631;
  300. remoteInfo = "React-Core-AccessibilityResources";
  301. };
  302. 3862FEAC2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  303. isa = PBXContainerItemProxy;
  304. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  305. proxyType = 2;
  306. remoteGlobalIDString = 6771D231F4C8C5976470A369C474B32E;
  307. remoteInfo = "React-CoreModules";
  308. };
  309. 3862FEAE2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  310. isa = PBXContainerItemProxy;
  311. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  312. proxyType = 2;
  313. remoteGlobalIDString = 37592FDAD45752511010F4B06AC57355;
  314. remoteInfo = "React-cxxreact";
  315. };
  316. 3862FEB02668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  317. isa = PBXContainerItemProxy;
  318. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  319. proxyType = 2;
  320. remoteGlobalIDString = D9F334F2E90E3EE462FC4192AF5C03BD;
  321. remoteInfo = "React-jsi";
  322. };
  323. 3862FEB22668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  324. isa = PBXContainerItemProxy;
  325. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  326. proxyType = 2;
  327. remoteGlobalIDString = F2E7C88DFCD460A4B46B913ADEB8A641;
  328. remoteInfo = "React-jsiexecutor";
  329. };
  330. 3862FEB42668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  331. isa = PBXContainerItemProxy;
  332. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  333. proxyType = 2;
  334. remoteGlobalIDString = 2577F299FCB0A19824FE989BE77B8E8F;
  335. remoteInfo = "React-jsinspector";
  336. };
  337. 3862FEB62668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  338. isa = PBXContainerItemProxy;
  339. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  340. proxyType = 2;
  341. remoteGlobalIDString = 6C9790F1A25C1E3828E179A8F0850851;
  342. remoteInfo = "react-native-camera";
  343. };
  344. 3862FEB82668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  345. isa = PBXContainerItemProxy;
  346. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  347. proxyType = 2;
  348. remoteGlobalIDString = 8C3E2A6E6F93E60E397F6C0BBA710BF5;
  349. remoteInfo = "react-native-cameraroll";
  350. };
  351. 3862FEBA2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  352. isa = PBXContainerItemProxy;
  353. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  354. proxyType = 2;
  355. remoteGlobalIDString = 467EB07BB1D9636C6348DE0824CE8973;
  356. remoteInfo = "react-native-geolocation";
  357. };
  358. 3862FEBC2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  359. isa = PBXContainerItemProxy;
  360. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  361. proxyType = 2;
  362. remoteGlobalIDString = 2F955107B98F1B5213C3C9F4CAB1EDB5;
  363. remoteInfo = "react-native-maps";
  364. };
  365. 3862FEBE2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  366. isa = PBXContainerItemProxy;
  367. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  368. proxyType = 2;
  369. remoteGlobalIDString = 52FCF98CEFF94C742080B6965D537AD0;
  370. remoteInfo = "react-native-safe-area-context";
  371. };
  372. 3862FEC02668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  373. isa = PBXContainerItemProxy;
  374. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  375. proxyType = 2;
  376. remoteGlobalIDString = FFC72665DB62DE03F833DC354B72933F;
  377. remoteInfo = "react-native-view-shot";
  378. };
  379. 3862FEC22668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  380. isa = PBXContainerItemProxy;
  381. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  382. proxyType = 2;
  383. remoteGlobalIDString = 666E72807891C591E025A75410CD2A26;
  384. remoteInfo = "React-perflogger";
  385. };
  386. 3862FEC42668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  387. isa = PBXContainerItemProxy;
  388. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  389. proxyType = 2;
  390. remoteGlobalIDString = FE7B9294FF05AAFD1653E2104E10844A;
  391. remoteInfo = "React-RCTAnimation";
  392. };
  393. 3862FEC62668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  394. isa = PBXContainerItemProxy;
  395. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  396. proxyType = 2;
  397. remoteGlobalIDString = F71EBF73F354B475D465FF6DE9A66707;
  398. remoteInfo = "React-RCTBlob";
  399. };
  400. 3862FEC82668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  401. isa = PBXContainerItemProxy;
  402. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  403. proxyType = 2;
  404. remoteGlobalIDString = EEDBF403E8E0B3885E65C2741B536BC5;
  405. remoteInfo = "React-RCTImage";
  406. };
  407. 3862FECA2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  408. isa = PBXContainerItemProxy;
  409. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  410. proxyType = 2;
  411. remoteGlobalIDString = 802121F5B756ACBFDD6D08C36246DADD;
  412. remoteInfo = "React-RCTLinking";
  413. };
  414. 3862FECC2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  415. isa = PBXContainerItemProxy;
  416. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  417. proxyType = 2;
  418. remoteGlobalIDString = A68E5A9B69A3BA0FD52CAF7A354EC93B;
  419. remoteInfo = "React-RCTNetwork";
  420. };
  421. 3862FECE2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  422. isa = PBXContainerItemProxy;
  423. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  424. proxyType = 2;
  425. remoteGlobalIDString = 269BE773C9482484B70949A40F4EA525;
  426. remoteInfo = "React-RCTSettings";
  427. };
  428. 3862FED02668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  429. isa = PBXContainerItemProxy;
  430. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  431. proxyType = 2;
  432. remoteGlobalIDString = E6A16705C69FC7DE11C2469A4A0F8358;
  433. remoteInfo = "React-RCTText";
  434. };
  435. 3862FED22668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  436. isa = PBXContainerItemProxy;
  437. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  438. proxyType = 2;
  439. remoteGlobalIDString = C1A919103EAC9813D236486C34FC0A21;
  440. remoteInfo = "React-RCTVibration";
  441. };
  442. 3862FED42668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  443. isa = PBXContainerItemProxy;
  444. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  445. proxyType = 2;
  446. remoteGlobalIDString = D5C775614AC76D44CECB6BE08B022F1F;
  447. remoteInfo = ReactCommon;
  448. };
  449. 3862FED62668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  450. isa = PBXContainerItemProxy;
  451. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  452. proxyType = 2;
  453. remoteGlobalIDString = 51B50F20C76CF72E2BEF8D4764235306;
  454. remoteInfo = ReactNativeART;
  455. };
  456. 3862FED82668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  457. isa = PBXContainerItemProxy;
  458. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  459. proxyType = 2;
  460. remoteGlobalIDString = 5737DDB4BC95AD399B3206838AB97095;
  461. remoteInfo = RNCAsyncStorage;
  462. };
  463. 3862FEDA2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  464. isa = PBXContainerItemProxy;
  465. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  466. proxyType = 2;
  467. remoteGlobalIDString = 629B4458112E2D01978E2FE02FF6FFF7;
  468. remoteInfo = RNCCheckbox;
  469. };
  470. 3862FEDC2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  471. isa = PBXContainerItemProxy;
  472. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  473. proxyType = 2;
  474. remoteGlobalIDString = B8CD4B9B578CE9FA38114B638C9CAA78;
  475. remoteInfo = RNCMaskedView;
  476. };
  477. 3862FEE02668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  478. isa = PBXContainerItemProxy;
  479. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  480. proxyType = 2;
  481. remoteGlobalIDString = 0B9BD901B3EB04B824A157C85265F044;
  482. remoteInfo = RNCPushNotificationIOS;
  483. };
  484. 3862FEE22668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  485. isa = PBXContainerItemProxy;
  486. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  487. proxyType = 2;
  488. remoteGlobalIDString = 8F65F9361F2069CF9E9D751272968DE4;
  489. remoteInfo = RNGestureHandler;
  490. };
  491. 3862FEE42668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  492. isa = PBXContainerItemProxy;
  493. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  494. proxyType = 2;
  495. remoteGlobalIDString = 3AEA4A114C08533A2C0F8E039A4C5EB9;
  496. remoteInfo = RNImageCropPicker;
  497. };
  498. 3862FEE82668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  499. isa = PBXContainerItemProxy;
  500. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  501. proxyType = 2;
  502. remoteGlobalIDString = 778C1572AE22EE933ACA12594B6DF949;
  503. remoteInfo = RNPermissions;
  504. };
  505. 3862FEEA2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  506. isa = PBXContainerItemProxy;
  507. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  508. proxyType = 2;
  509. remoteGlobalIDString = C777CF2FB1E39A45CBBDB54E8693F471;
  510. remoteInfo = RNReanimated;
  511. };
  512. 3862FEEC2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  513. isa = PBXContainerItemProxy;
  514. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  515. proxyType = 2;
  516. remoteGlobalIDString = 50B5347C9A6E93B7D4CFC3673BA6FB7E;
  517. remoteInfo = RNScreens;
  518. };
  519. 3862FEEE2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  520. isa = PBXContainerItemProxy;
  521. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  522. proxyType = 2;
  523. remoteGlobalIDString = 484E6781D8E6CE2FB8F6C8D7C9578D97;
  524. remoteInfo = RNShare;
  525. };
  526. 3862FEF02668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  527. isa = PBXContainerItemProxy;
  528. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  529. proxyType = 2;
  530. remoteGlobalIDString = 90EE8D3C082C157169540FC8F5913DAD;
  531. remoteInfo = RNSVG;
  532. };
  533. 3862FEF42668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  534. isa = PBXContainerItemProxy;
  535. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  536. proxyType = 2;
  537. remoteGlobalIDString = 7862C607B7BE0510C2D65193F9B4B4F9;
  538. remoteInfo = TOCropViewController;
  539. };
  540. 3862FEF82668D3C90097D3A3 /* PBXContainerItemProxy */ = {
  541. isa = PBXContainerItemProxy;
  542. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  543. proxyType = 2;
  544. remoteGlobalIDString = 65D0A19C165FA1126B1360680FE6DB12;
  545. remoteInfo = Yoga;
  546. };
  547. 38C6DA642668E46D00D889BC /* PBXContainerItemProxy */ = {
  548. isa = PBXContainerItemProxy;
  549. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  550. proxyType = 2;
  551. remoteGlobalIDString = 5CA9E6FE438CE79CD76FA3B34CC95836;
  552. remoteInfo = "Google-Maps-iOS-Utils";
  553. };
  554. 38C6DA662668E46D00D889BC /* PBXContainerItemProxy */ = {
  555. isa = PBXContainerItemProxy;
  556. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  557. proxyType = 2;
  558. remoteGlobalIDString = F7D4CFD8007E1491802305A2021EB56D;
  559. remoteInfo = "react-native-google-maps";
  560. };
  561. 38DAC4B62A04A5270079D917 /* PBXContainerItemProxy */ = {
  562. isa = PBXContainerItemProxy;
  563. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  564. proxyType = 2;
  565. remoteGlobalIDString = 3DCCC9C42EB3E07CFD81800EC8A2515D;
  566. remoteInfo = "RNImageCropPicker-QBImagePicker";
  567. };
  568. 38DAC4B82A04A5270079D917 /* PBXContainerItemProxy */ = {
  569. isa = PBXContainerItemProxy;
  570. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  571. proxyType = 2;
  572. remoteGlobalIDString = FE1E812071397E31AE21DFF368B781B1;
  573. remoteInfo = "TOCropViewController-TOCropViewControllerBundle";
  574. };
  575. 38EDDA1426830E380093F908 /* PBXContainerItemProxy */ = {
  576. isa = PBXContainerItemProxy;
  577. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  578. proxyType = 2;
  579. remoteGlobalIDString = 8DF63376066E2275FF26820B3A512A9B;
  580. remoteInfo = "react-native-webview";
  581. };
  582. 732F2CF6296FA69A00A90ECF /* PBXContainerItemProxy */ = {
  583. isa = PBXContainerItemProxy;
  584. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  585. proxyType = 2;
  586. remoteGlobalIDString = 148D0F9E8C7373FEAF40D800FC5F1BAA;
  587. remoteInfo = FirebaseCoreInternal;
  588. };
  589. /* End PBXContainerItemProxy section */
  590. /* Begin PBXFileReference section */
  591. 00E356EE1AD99517003FC87E /* StridesTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = StridesTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  592. 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  593. 00E356F21AD99517003FC87E /* StridesTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StridesTests.m; sourceTree = "<group>"; };
  594. 0B4312F6F31A03C548D2D34E /* Pods-Strides.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Strides.release.xcconfig"; path = "Target Support Files/Pods-Strides/Pods-Strides.release.xcconfig"; sourceTree = "<group>"; };
  595. 13B07F961A680F5B00A75B9A /* Strides.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Strides.app; sourceTree = BUILT_PRODUCTS_DIR; };
  596. 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Strides/AppDelegate.h; sourceTree = "<group>"; };
  597. 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Strides/Images.xcassets; sourceTree = "<group>"; };
  598. 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Strides/Info.plist; sourceTree = "<group>"; };
  599. 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Strides/main.m; sourceTree = "<group>"; };
  600. 1EAF8AFB4DFFD2DC3F519A17 /* Pods-Strides-StridesTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Strides-StridesTests.debug.xcconfig"; path = "Target Support Files/Pods-Strides-StridesTests/Pods-Strides-StridesTests.debug.xcconfig"; sourceTree = "<group>"; };
  601. 25C7FBD92AA706D400F61AA1 /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = Strides/AppDelegate.mm; sourceTree = "<group>"; };
  602. 38066FC126DDDB0700271DFA /* Strides.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = Strides.entitlements; path = Strides/Strides.entitlements; sourceTree = "<group>"; };
  603. 38066FC226DE16BF00271DFA /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = main.jsbundle; path = bundle/main.jsbundle; sourceTree = "<group>"; };
  604. 38066FC326DE16BF00271DFA /* assets */ = {isa = PBXFileReference; lastKnownFileType = folder; name = assets; path = bundle/assets; sourceTree = "<group>"; };
  605. 38066FC926DF20DA00271DFA /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "GoogleService-Info.plist"; path = "Strides/GoogleService-Info.plist"; sourceTree = "<group>"; };
  606. 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = Pods.xcodeproj; sourceTree = "<group>"; };
  607. 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = Strides/LaunchScreen.storyboard; sourceTree = "<group>"; };
  608. AB9D2CD35A198422C90BC492 /* libPods-Strides-StridesTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Strides-StridesTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  609. B12059D6810CBCE332360003 /* Pods-Strides.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Strides.debug.xcconfig"; path = "Target Support Files/Pods-Strides/Pods-Strides.debug.xcconfig"; sourceTree = "<group>"; };
  610. DB9107F120992435E6CC55BB /* libPods-Strides.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Strides.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  611. ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
  612. FB8DBBF7218DB1714AEA17D3 /* Pods-Strides-StridesTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Strides-StridesTests.release.xcconfig"; path = "Target Support Files/Pods-Strides-StridesTests/Pods-Strides-StridesTests.release.xcconfig"; sourceTree = "<group>"; };
  613. /* End PBXFileReference section */
  614. /* Begin PBXFrameworksBuildPhase section */
  615. 00E356EB1AD99517003FC87E /* Frameworks */ = {
  616. isa = PBXFrameworksBuildPhase;
  617. buildActionMask = 2147483647;
  618. files = (
  619. A8CB5874BD86036F4E6DF87A /* libPods-Strides-StridesTests.a in Frameworks */,
  620. );
  621. runOnlyForDeploymentPostprocessing = 0;
  622. };
  623. 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
  624. isa = PBXFrameworksBuildPhase;
  625. buildActionMask = 2147483647;
  626. files = (
  627. A5707C5E2B88048AC01CD052 /* libPods-Strides.a in Frameworks */,
  628. );
  629. runOnlyForDeploymentPostprocessing = 0;
  630. };
  631. /* End PBXFrameworksBuildPhase section */
  632. /* Begin PBXGroup section */
  633. 00E356EF1AD99517003FC87E /* StridesTests */ = {
  634. isa = PBXGroup;
  635. children = (
  636. 00E356F21AD99517003FC87E /* StridesTests.m */,
  637. 00E356F01AD99517003FC87E /* Supporting Files */,
  638. );
  639. path = StridesTests;
  640. sourceTree = "<group>";
  641. };
  642. 00E356F01AD99517003FC87E /* Supporting Files */ = {
  643. isa = PBXGroup;
  644. children = (
  645. 00E356F11AD99517003FC87E /* Info.plist */,
  646. );
  647. name = "Supporting Files";
  648. sourceTree = "<group>";
  649. };
  650. 13B07FAE1A68108700A75B9A /* Strides */ = {
  651. isa = PBXGroup;
  652. children = (
  653. 38066FC326DE16BF00271DFA /* assets */,
  654. 38066FC226DE16BF00271DFA /* main.jsbundle */,
  655. 38066FC126DDDB0700271DFA /* Strides.entitlements */,
  656. 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
  657. 25C7FBD92AA706D400F61AA1 /* AppDelegate.mm */,
  658. 13B07FB51A68108700A75B9A /* Images.xcassets */,
  659. 13B07FB61A68108700A75B9A /* Info.plist */,
  660. 38066FC926DF20DA00271DFA /* GoogleService-Info.plist */,
  661. 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
  662. 13B07FB71A68108700A75B9A /* main.m */,
  663. );
  664. name = Strides;
  665. sourceTree = "<group>";
  666. };
  667. 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
  668. isa = PBXGroup;
  669. children = (
  670. ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
  671. DB9107F120992435E6CC55BB /* libPods-Strides.a */,
  672. AB9D2CD35A198422C90BC492 /* libPods-Strides-StridesTests.a */,
  673. );
  674. name = Frameworks;
  675. sourceTree = "<group>";
  676. };
  677. 3862FE5E2668D3C90097D3A3 /* Products */ = {
  678. isa = PBXGroup;
  679. children = (
  680. 385053C52970039F0061999F /* BEMCheckBox */,
  681. 25C7FBB22AA706B500F61AA1 /* CocoaAsyncSocket */,
  682. 3862FE992668D3C90097D3A3 /* DoubleConversion */,
  683. 3806701926DF20DA00271DFA /* FirebaseCore */,
  684. 732F2CF7296FA69A00A90ECF /* FirebaseCoreInternal */,
  685. 3806701D26DF20DA00271DFA /* FirebaseInstallations */,
  686. 3806701F26DF20DA00271DFA /* FirebaseMessaging */,
  687. 25C7FBB42AA706B500F61AA1 /* Flipper */,
  688. 25C7FBB62AA706B500F61AA1 /* Flipper-Boost-iOSX */,
  689. 25C7FBB82AA706B500F61AA1 /* Flipper-Fmt */,
  690. 25C7FBBA2AA706B500F61AA1 /* Flipper-Folly */,
  691. 25C7FBBC2AA706B500F61AA1 /* Flipper-PeerTalk */,
  692. 25C7FBBE2AA706B500F61AA1 /* FlipperKit */,
  693. 25C7FBC02AA706B500F61AA1 /* fmt */,
  694. 3862FE9D2668D3C90097D3A3 /* glog */,
  695. 38C6DA652668E46D00D889BC /* Google-Maps-iOS-Utils */,
  696. 3806702126DF20DA00271DFA /* GoogleDataTransport */,
  697. 3806702326DF20DA00271DFA /* GoogleUtilities */,
  698. 25C7FBC22AA706B500F61AA1 /* libevent */,
  699. 3806702526DF20DA00271DFA /* nanopb */,
  700. 3862FEA12668D3C90097D3A3 /* Pods-Strides */,
  701. 3862FEA32668D3C90097D3A3 /* Pods-Strides-StridesTests */,
  702. 3806702726DF20DA00271DFA /* PromisesObjC */,
  703. 3862FEA52668D3C90097D3A3 /* RCT-Folly */,
  704. 3862FEA72668D3C90097D3A3 /* RCTTypeSafety */,
  705. 25C7FBC42AA706B500F61AA1 /* React-Codegen */,
  706. 3862FEA92668D3C90097D3A3 /* React-Core */,
  707. 3862FEAB2668D3C90097D3A3 /* React-Core-AccessibilityResources */,
  708. 3862FEAD2668D3C90097D3A3 /* React-CoreModules */,
  709. 3862FEAF2668D3C90097D3A3 /* React-cxxreact */,
  710. 25C7FBC62AA706B500F61AA1 /* React-debug */,
  711. 25C7FBC82AA706B500F61AA1 /* React-hermes */,
  712. 3862FEB12668D3C90097D3A3 /* React-jsi */,
  713. 3862FEB32668D3C90097D3A3 /* React-jsiexecutor */,
  714. 3862FEB52668D3C90097D3A3 /* React-jsinspector */,
  715. 25C7FBCA2AA706B500F61AA1 /* React-logger */,
  716. 3862FEB72668D3C90097D3A3 /* react-native-camera */,
  717. 3862FEB92668D3C90097D3A3 /* react-native-cameraroll */,
  718. 3862FEBB2668D3C90097D3A3 /* react-native-geolocation */,
  719. 38C6DA672668E46D00D889BC /* react-native-google-maps */,
  720. 3862FEBD2668D3C90097D3A3 /* react-native-maps */,
  721. 25C7FBCC2AA706B500F61AA1 /* react-native-pager-view */,
  722. 3862FEBF2668D3C90097D3A3 /* react-native-safe-area-context */,
  723. 3862FEC12668D3C90097D3A3 /* react-native-view-shot */,
  724. 38EDDA1526830E380093F908 /* react-native-webview */,
  725. 25C7FBCE2AA706B500F61AA1 /* React-NativeModulesApple */,
  726. 3862FEC32668D3C90097D3A3 /* React-perflogger */,
  727. 3862FEC52668D3C90097D3A3 /* React-RCTAnimation */,
  728. 25C7FBD02AA706B500F61AA1 /* React-RCTAppDelegate */,
  729. 3862FEC72668D3C90097D3A3 /* React-RCTBlob */,
  730. 3862FEC92668D3C90097D3A3 /* React-RCTImage */,
  731. 3862FECB2668D3C90097D3A3 /* React-RCTLinking */,
  732. 3862FECD2668D3C90097D3A3 /* React-RCTNetwork */,
  733. 3862FECF2668D3C90097D3A3 /* React-RCTSettings */,
  734. 3862FED12668D3C90097D3A3 /* React-RCTText */,
  735. 3862FED32668D3C90097D3A3 /* React-RCTVibration */,
  736. 25C7FBD22AA706B500F61AA1 /* React-runtimescheduler */,
  737. 25C7FBD42AA706B500F61AA1 /* React-utils */,
  738. 3862FED52668D3C90097D3A3 /* ReactCommon */,
  739. 3862FED72668D3C90097D3A3 /* ReactNativeART */,
  740. 3862FED92668D3C90097D3A3 /* RNCAsyncStorage */,
  741. 3862FEDB2668D3C90097D3A3 /* RNCCheckbox */,
  742. 3862FEDD2668D3C90097D3A3 /* RNCMaskedView */,
  743. 3862FEE12668D3C90097D3A3 /* RNCPushNotificationIOS */,
  744. 382FB1E7272F967F007EE9BB /* RNDeviceInfo */,
  745. 3862FEE32668D3C90097D3A3 /* RNGestureHandler */,
  746. 25450AF02A554B630078250E /* RNI18n */,
  747. 3862FEE52668D3C90097D3A3 /* RNImageCropPicker */,
  748. 38DAC4B72A04A5270079D917 /* RNImageCropPicker-QBImagePicker */,
  749. 3862FEE92668D3C90097D3A3 /* RNPermissions */,
  750. 3862FEEB2668D3C90097D3A3 /* RNReanimated */,
  751. 3862FEED2668D3C90097D3A3 /* RNScreens */,
  752. 3862FEEF2668D3C90097D3A3 /* RNShare */,
  753. 3862FEF12668D3C90097D3A3 /* RNSVG */,
  754. 3860E743266E248E0059CC98 /* RNVectorIcons */,
  755. 25C7FBD62AA706B500F61AA1 /* SocketRocket */,
  756. 3862FEF52668D3C90097D3A3 /* TOCropViewController */,
  757. 38DAC4B92A04A5270079D917 /* TOCropViewController-TOCropViewControllerBundle */,
  758. 3862FEF92668D3C90097D3A3 /* Yoga */,
  759. 25C7FBD82AA706B500F61AA1 /* YogaKit */,
  760. );
  761. name = Products;
  762. sourceTree = "<group>";
  763. };
  764. 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
  765. isa = PBXGroup;
  766. children = (
  767. );
  768. name = Libraries;
  769. sourceTree = "<group>";
  770. };
  771. 83CBB9F61A601CBA00E9B192 = {
  772. isa = PBXGroup;
  773. children = (
  774. 13B07FAE1A68108700A75B9A /* Strides */,
  775. 832341AE1AAA6A7D00B99B32 /* Libraries */,
  776. 00E356EF1AD99517003FC87E /* StridesTests */,
  777. 83CBBA001A601CBA00E9B192 /* Products */,
  778. 2D16E6871FA4F8E400B85C8A /* Frameworks */,
  779. AE9F3160A5794A17807F051F /* Pods */,
  780. );
  781. indentWidth = 2;
  782. sourceTree = "<group>";
  783. tabWidth = 2;
  784. usesTabs = 0;
  785. };
  786. 83CBBA001A601CBA00E9B192 /* Products */ = {
  787. isa = PBXGroup;
  788. children = (
  789. 13B07F961A680F5B00A75B9A /* Strides.app */,
  790. 00E356EE1AD99517003FC87E /* StridesTests.xctest */,
  791. );
  792. name = Products;
  793. sourceTree = "<group>";
  794. };
  795. AE9F3160A5794A17807F051F /* Pods */ = {
  796. isa = PBXGroup;
  797. children = (
  798. 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */,
  799. B12059D6810CBCE332360003 /* Pods-Strides.debug.xcconfig */,
  800. 0B4312F6F31A03C548D2D34E /* Pods-Strides.release.xcconfig */,
  801. 1EAF8AFB4DFFD2DC3F519A17 /* Pods-Strides-StridesTests.debug.xcconfig */,
  802. FB8DBBF7218DB1714AEA17D3 /* Pods-Strides-StridesTests.release.xcconfig */,
  803. );
  804. path = Pods;
  805. sourceTree = "<group>";
  806. };
  807. /* End PBXGroup section */
  808. /* Begin PBXNativeTarget section */
  809. 00E356ED1AD99517003FC87E /* StridesTests */ = {
  810. isa = PBXNativeTarget;
  811. buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "StridesTests" */;
  812. buildPhases = (
  813. 91782402D5526C1FE269DCEB /* [CP] Check Pods Manifest.lock */,
  814. 00E356EA1AD99517003FC87E /* Sources */,
  815. 00E356EB1AD99517003FC87E /* Frameworks */,
  816. 00E356EC1AD99517003FC87E /* Resources */,
  817. E8315E9C8ADE07ADFC46E267 /* [CP] Copy Pods Resources */,
  818. 4D6EA56AB2C5EF98D62C44D4 /* [CP] Embed Pods Frameworks */,
  819. );
  820. buildRules = (
  821. );
  822. dependencies = (
  823. 00E356F51AD99517003FC87E /* PBXTargetDependency */,
  824. );
  825. name = StridesTests;
  826. productName = StridesTests;
  827. productReference = 00E356EE1AD99517003FC87E /* StridesTests.xctest */;
  828. productType = "com.apple.product-type.bundle.unit-test";
  829. };
  830. 13B07F861A680F5B00A75B9A /* Strides */ = {
  831. isa = PBXNativeTarget;
  832. buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Strides" */;
  833. buildPhases = (
  834. ECF1D1690D900A2BFDCEE6DB /* [CP] Check Pods Manifest.lock */,
  835. FD10A7F022414F080027D42C /* Start Packager */,
  836. 13B07F871A680F5B00A75B9A /* Sources */,
  837. 13B07F8C1A680F5B00A75B9A /* Frameworks */,
  838. 13B07F8E1A680F5B00A75B9A /* Resources */,
  839. 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
  840. 299A58B4788798FED5F19B10 /* [CP] Copy Pods Resources */,
  841. D5D39FDA52821A03E2D92BB2 /* [CP] Embed Pods Frameworks */,
  842. );
  843. buildRules = (
  844. );
  845. dependencies = (
  846. );
  847. name = Strides;
  848. productName = Strides;
  849. productReference = 13B07F961A680F5B00A75B9A /* Strides.app */;
  850. productType = "com.apple.product-type.application";
  851. };
  852. /* End PBXNativeTarget section */
  853. /* Begin PBXProject section */
  854. 83CBB9F71A601CBA00E9B192 /* Project object */ = {
  855. isa = PBXProject;
  856. attributes = {
  857. LastUpgradeCheck = 1430;
  858. TargetAttributes = {
  859. 00E356ED1AD99517003FC87E = {
  860. CreatedOnToolsVersion = 6.2;
  861. TestTargetID = 13B07F861A680F5B00A75B9A;
  862. };
  863. 13B07F861A680F5B00A75B9A = {
  864. LastSwiftMigration = 1120;
  865. };
  866. };
  867. };
  868. buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Strides" */;
  869. compatibilityVersion = "Xcode 12.0";
  870. developmentRegion = en;
  871. hasScannedForEncodings = 0;
  872. knownRegions = (
  873. en,
  874. Base,
  875. );
  876. mainGroup = 83CBB9F61A601CBA00E9B192;
  877. productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
  878. projectDirPath = "";
  879. projectReferences = (
  880. {
  881. ProductGroup = 3862FE5E2668D3C90097D3A3 /* Products */;
  882. ProjectRef = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  883. },
  884. );
  885. projectRoot = "";
  886. targets = (
  887. 13B07F861A680F5B00A75B9A /* Strides */,
  888. 00E356ED1AD99517003FC87E /* StridesTests */,
  889. );
  890. };
  891. /* End PBXProject section */
  892. /* Begin PBXReferenceProxy section */
  893. 25450AF02A554B630078250E /* RNI18n */ = {
  894. isa = PBXReferenceProxy;
  895. fileType = archive.ar;
  896. name = RNI18n;
  897. path = libRNI18n.a;
  898. remoteRef = 25450AEF2A554B630078250E /* PBXContainerItemProxy */;
  899. sourceTree = BUILT_PRODUCTS_DIR;
  900. };
  901. 25C7FBB22AA706B500F61AA1 /* CocoaAsyncSocket */ = {
  902. isa = PBXReferenceProxy;
  903. fileType = archive.ar;
  904. name = CocoaAsyncSocket;
  905. path = libCocoaAsyncSocket.a;
  906. remoteRef = 25C7FBB12AA706B500F61AA1 /* PBXContainerItemProxy */;
  907. sourceTree = BUILT_PRODUCTS_DIR;
  908. };
  909. 25C7FBB42AA706B500F61AA1 /* Flipper */ = {
  910. isa = PBXReferenceProxy;
  911. fileType = archive.ar;
  912. name = Flipper;
  913. path = libFlipper.a;
  914. remoteRef = 25C7FBB32AA706B500F61AA1 /* PBXContainerItemProxy */;
  915. sourceTree = BUILT_PRODUCTS_DIR;
  916. };
  917. 25C7FBB62AA706B500F61AA1 /* Flipper-Boost-iOSX */ = {
  918. isa = PBXReferenceProxy;
  919. fileType = archive.ar;
  920. name = "Flipper-Boost-iOSX";
  921. path = "libFlipper-Boost-iOSX.a";
  922. remoteRef = 25C7FBB52AA706B500F61AA1 /* PBXContainerItemProxy */;
  923. sourceTree = BUILT_PRODUCTS_DIR;
  924. };
  925. 25C7FBB82AA706B500F61AA1 /* Flipper-Fmt */ = {
  926. isa = PBXReferenceProxy;
  927. fileType = archive.ar;
  928. name = "Flipper-Fmt";
  929. path = "libFlipper-Fmt.a";
  930. remoteRef = 25C7FBB72AA706B500F61AA1 /* PBXContainerItemProxy */;
  931. sourceTree = BUILT_PRODUCTS_DIR;
  932. };
  933. 25C7FBBA2AA706B500F61AA1 /* Flipper-Folly */ = {
  934. isa = PBXReferenceProxy;
  935. fileType = archive.ar;
  936. name = "Flipper-Folly";
  937. path = "libFlipper-Folly.a";
  938. remoteRef = 25C7FBB92AA706B500F61AA1 /* PBXContainerItemProxy */;
  939. sourceTree = BUILT_PRODUCTS_DIR;
  940. };
  941. 25C7FBBC2AA706B500F61AA1 /* Flipper-PeerTalk */ = {
  942. isa = PBXReferenceProxy;
  943. fileType = archive.ar;
  944. name = "Flipper-PeerTalk";
  945. path = "libFlipper-PeerTalk.a";
  946. remoteRef = 25C7FBBB2AA706B500F61AA1 /* PBXContainerItemProxy */;
  947. sourceTree = BUILT_PRODUCTS_DIR;
  948. };
  949. 25C7FBBE2AA706B500F61AA1 /* FlipperKit */ = {
  950. isa = PBXReferenceProxy;
  951. fileType = archive.ar;
  952. name = FlipperKit;
  953. path = libFlipperKit.a;
  954. remoteRef = 25C7FBBD2AA706B500F61AA1 /* PBXContainerItemProxy */;
  955. sourceTree = BUILT_PRODUCTS_DIR;
  956. };
  957. 25C7FBC02AA706B500F61AA1 /* fmt */ = {
  958. isa = PBXReferenceProxy;
  959. fileType = archive.ar;
  960. name = fmt;
  961. path = libfmt.a;
  962. remoteRef = 25C7FBBF2AA706B500F61AA1 /* PBXContainerItemProxy */;
  963. sourceTree = BUILT_PRODUCTS_DIR;
  964. };
  965. 25C7FBC22AA706B500F61AA1 /* libevent */ = {
  966. isa = PBXReferenceProxy;
  967. fileType = archive.ar;
  968. name = libevent;
  969. path = liblibevent.a;
  970. remoteRef = 25C7FBC12AA706B500F61AA1 /* PBXContainerItemProxy */;
  971. sourceTree = BUILT_PRODUCTS_DIR;
  972. };
  973. 25C7FBC42AA706B500F61AA1 /* React-Codegen */ = {
  974. isa = PBXReferenceProxy;
  975. fileType = archive.ar;
  976. name = "React-Codegen";
  977. path = "libReact-Codegen.a";
  978. remoteRef = 25C7FBC32AA706B500F61AA1 /* PBXContainerItemProxy */;
  979. sourceTree = BUILT_PRODUCTS_DIR;
  980. };
  981. 25C7FBC62AA706B500F61AA1 /* React-debug */ = {
  982. isa = PBXReferenceProxy;
  983. fileType = archive.ar;
  984. name = "React-debug";
  985. path = "libReact-debug.a";
  986. remoteRef = 25C7FBC52AA706B500F61AA1 /* PBXContainerItemProxy */;
  987. sourceTree = BUILT_PRODUCTS_DIR;
  988. };
  989. 25C7FBC82AA706B500F61AA1 /* React-hermes */ = {
  990. isa = PBXReferenceProxy;
  991. fileType = archive.ar;
  992. name = "React-hermes";
  993. path = "libReact-hermes.a";
  994. remoteRef = 25C7FBC72AA706B500F61AA1 /* PBXContainerItemProxy */;
  995. sourceTree = BUILT_PRODUCTS_DIR;
  996. };
  997. 25C7FBCA2AA706B500F61AA1 /* React-logger */ = {
  998. isa = PBXReferenceProxy;
  999. fileType = archive.ar;
  1000. name = "React-logger";
  1001. path = "libReact-logger.a";
  1002. remoteRef = 25C7FBC92AA706B500F61AA1 /* PBXContainerItemProxy */;
  1003. sourceTree = BUILT_PRODUCTS_DIR;
  1004. };
  1005. 25C7FBCC2AA706B500F61AA1 /* react-native-pager-view */ = {
  1006. isa = PBXReferenceProxy;
  1007. fileType = archive.ar;
  1008. name = "react-native-pager-view";
  1009. path = "libreact-native-pager-view.a";
  1010. remoteRef = 25C7FBCB2AA706B500F61AA1 /* PBXContainerItemProxy */;
  1011. sourceTree = BUILT_PRODUCTS_DIR;
  1012. };
  1013. 25C7FBCE2AA706B500F61AA1 /* React-NativeModulesApple */ = {
  1014. isa = PBXReferenceProxy;
  1015. fileType = archive.ar;
  1016. name = "React-NativeModulesApple";
  1017. path = "libReact-NativeModulesApple.a";
  1018. remoteRef = 25C7FBCD2AA706B500F61AA1 /* PBXContainerItemProxy */;
  1019. sourceTree = BUILT_PRODUCTS_DIR;
  1020. };
  1021. 25C7FBD02AA706B500F61AA1 /* React-RCTAppDelegate */ = {
  1022. isa = PBXReferenceProxy;
  1023. fileType = archive.ar;
  1024. name = "React-RCTAppDelegate";
  1025. path = "libReact-RCTAppDelegate.a";
  1026. remoteRef = 25C7FBCF2AA706B500F61AA1 /* PBXContainerItemProxy */;
  1027. sourceTree = BUILT_PRODUCTS_DIR;
  1028. };
  1029. 25C7FBD22AA706B500F61AA1 /* React-runtimescheduler */ = {
  1030. isa = PBXReferenceProxy;
  1031. fileType = archive.ar;
  1032. name = "React-runtimescheduler";
  1033. path = "libReact-runtimescheduler.a";
  1034. remoteRef = 25C7FBD12AA706B500F61AA1 /* PBXContainerItemProxy */;
  1035. sourceTree = BUILT_PRODUCTS_DIR;
  1036. };
  1037. 25C7FBD42AA706B500F61AA1 /* React-utils */ = {
  1038. isa = PBXReferenceProxy;
  1039. fileType = archive.ar;
  1040. name = "React-utils";
  1041. path = "libReact-utils.a";
  1042. remoteRef = 25C7FBD32AA706B500F61AA1 /* PBXContainerItemProxy */;
  1043. sourceTree = BUILT_PRODUCTS_DIR;
  1044. };
  1045. 25C7FBD62AA706B500F61AA1 /* SocketRocket */ = {
  1046. isa = PBXReferenceProxy;
  1047. fileType = archive.ar;
  1048. name = SocketRocket;
  1049. path = libSocketRocket.a;
  1050. remoteRef = 25C7FBD52AA706B500F61AA1 /* PBXContainerItemProxy */;
  1051. sourceTree = BUILT_PRODUCTS_DIR;
  1052. };
  1053. 25C7FBD82AA706B500F61AA1 /* YogaKit */ = {
  1054. isa = PBXReferenceProxy;
  1055. fileType = archive.ar;
  1056. name = YogaKit;
  1057. path = libYogaKit.a;
  1058. remoteRef = 25C7FBD72AA706B500F61AA1 /* PBXContainerItemProxy */;
  1059. sourceTree = BUILT_PRODUCTS_DIR;
  1060. };
  1061. 3806701926DF20DA00271DFA /* FirebaseCore */ = {
  1062. isa = PBXReferenceProxy;
  1063. fileType = archive.ar;
  1064. name = FirebaseCore;
  1065. path = libFirebaseCore.a;
  1066. remoteRef = 3806701826DF20DA00271DFA /* PBXContainerItemProxy */;
  1067. sourceTree = BUILT_PRODUCTS_DIR;
  1068. };
  1069. 3806701D26DF20DA00271DFA /* FirebaseInstallations */ = {
  1070. isa = PBXReferenceProxy;
  1071. fileType = archive.ar;
  1072. name = FirebaseInstallations;
  1073. path = libFirebaseInstallations.a;
  1074. remoteRef = 3806701C26DF20DA00271DFA /* PBXContainerItemProxy */;
  1075. sourceTree = BUILT_PRODUCTS_DIR;
  1076. };
  1077. 3806701F26DF20DA00271DFA /* FirebaseMessaging */ = {
  1078. isa = PBXReferenceProxy;
  1079. fileType = archive.ar;
  1080. name = FirebaseMessaging;
  1081. path = libFirebaseMessaging.a;
  1082. remoteRef = 3806701E26DF20DA00271DFA /* PBXContainerItemProxy */;
  1083. sourceTree = BUILT_PRODUCTS_DIR;
  1084. };
  1085. 3806702126DF20DA00271DFA /* GoogleDataTransport */ = {
  1086. isa = PBXReferenceProxy;
  1087. fileType = archive.ar;
  1088. name = GoogleDataTransport;
  1089. path = libGoogleDataTransport.a;
  1090. remoteRef = 3806702026DF20DA00271DFA /* PBXContainerItemProxy */;
  1091. sourceTree = BUILT_PRODUCTS_DIR;
  1092. };
  1093. 3806702326DF20DA00271DFA /* GoogleUtilities */ = {
  1094. isa = PBXReferenceProxy;
  1095. fileType = archive.ar;
  1096. name = GoogleUtilities;
  1097. path = libGoogleUtilities.a;
  1098. remoteRef = 3806702226DF20DA00271DFA /* PBXContainerItemProxy */;
  1099. sourceTree = BUILT_PRODUCTS_DIR;
  1100. };
  1101. 3806702526DF20DA00271DFA /* nanopb */ = {
  1102. isa = PBXReferenceProxy;
  1103. fileType = archive.ar;
  1104. name = nanopb;
  1105. path = libnanopb.a;
  1106. remoteRef = 3806702426DF20DA00271DFA /* PBXContainerItemProxy */;
  1107. sourceTree = BUILT_PRODUCTS_DIR;
  1108. };
  1109. 3806702726DF20DA00271DFA /* PromisesObjC */ = {
  1110. isa = PBXReferenceProxy;
  1111. fileType = archive.ar;
  1112. name = PromisesObjC;
  1113. path = libPromisesObjC.a;
  1114. remoteRef = 3806702626DF20DA00271DFA /* PBXContainerItemProxy */;
  1115. sourceTree = BUILT_PRODUCTS_DIR;
  1116. };
  1117. 382FB1E7272F967F007EE9BB /* RNDeviceInfo */ = {
  1118. isa = PBXReferenceProxy;
  1119. fileType = archive.ar;
  1120. name = RNDeviceInfo;
  1121. path = libRNDeviceInfo.a;
  1122. remoteRef = 382FB1E6272F967F007EE9BB /* PBXContainerItemProxy */;
  1123. sourceTree = BUILT_PRODUCTS_DIR;
  1124. };
  1125. 385053C52970039F0061999F /* BEMCheckBox */ = {
  1126. isa = PBXReferenceProxy;
  1127. fileType = archive.ar;
  1128. name = BEMCheckBox;
  1129. path = libBEMCheckBox.a;
  1130. remoteRef = 385053C42970039F0061999F /* PBXContainerItemProxy */;
  1131. sourceTree = BUILT_PRODUCTS_DIR;
  1132. };
  1133. 3860E743266E248E0059CC98 /* RNVectorIcons */ = {
  1134. isa = PBXReferenceProxy;
  1135. fileType = archive.ar;
  1136. name = RNVectorIcons;
  1137. path = libRNVectorIcons.a;
  1138. remoteRef = 3860E742266E248E0059CC98 /* PBXContainerItemProxy */;
  1139. sourceTree = BUILT_PRODUCTS_DIR;
  1140. };
  1141. 3862FE992668D3C90097D3A3 /* DoubleConversion */ = {
  1142. isa = PBXReferenceProxy;
  1143. fileType = archive.ar;
  1144. name = DoubleConversion;
  1145. path = libDoubleConversion.a;
  1146. remoteRef = 3862FE982668D3C90097D3A3 /* PBXContainerItemProxy */;
  1147. sourceTree = BUILT_PRODUCTS_DIR;
  1148. };
  1149. 3862FE9D2668D3C90097D3A3 /* glog */ = {
  1150. isa = PBXReferenceProxy;
  1151. fileType = archive.ar;
  1152. name = glog;
  1153. path = libglog.a;
  1154. remoteRef = 3862FE9C2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1155. sourceTree = BUILT_PRODUCTS_DIR;
  1156. };
  1157. 3862FEA12668D3C90097D3A3 /* Pods-Strides */ = {
  1158. isa = PBXReferenceProxy;
  1159. fileType = archive.ar;
  1160. name = "Pods-Strides";
  1161. path = "libPods-Strides.a";
  1162. remoteRef = 3862FEA02668D3C90097D3A3 /* PBXContainerItemProxy */;
  1163. sourceTree = BUILT_PRODUCTS_DIR;
  1164. };
  1165. 3862FEA32668D3C90097D3A3 /* Pods-Strides-StridesTests */ = {
  1166. isa = PBXReferenceProxy;
  1167. fileType = archive.ar;
  1168. name = "Pods-Strides-StridesTests";
  1169. path = "libPods-Strides-StridesTests.a";
  1170. remoteRef = 3862FEA22668D3C90097D3A3 /* PBXContainerItemProxy */;
  1171. sourceTree = BUILT_PRODUCTS_DIR;
  1172. };
  1173. 3862FEA52668D3C90097D3A3 /* RCT-Folly */ = {
  1174. isa = PBXReferenceProxy;
  1175. fileType = archive.ar;
  1176. name = "RCT-Folly";
  1177. path = "libRCT-Folly.a";
  1178. remoteRef = 3862FEA42668D3C90097D3A3 /* PBXContainerItemProxy */;
  1179. sourceTree = BUILT_PRODUCTS_DIR;
  1180. };
  1181. 3862FEA72668D3C90097D3A3 /* RCTTypeSafety */ = {
  1182. isa = PBXReferenceProxy;
  1183. fileType = archive.ar;
  1184. name = RCTTypeSafety;
  1185. path = libRCTTypeSafety.a;
  1186. remoteRef = 3862FEA62668D3C90097D3A3 /* PBXContainerItemProxy */;
  1187. sourceTree = BUILT_PRODUCTS_DIR;
  1188. };
  1189. 3862FEA92668D3C90097D3A3 /* React-Core */ = {
  1190. isa = PBXReferenceProxy;
  1191. fileType = archive.ar;
  1192. name = "React-Core";
  1193. path = "libReact-Core.a";
  1194. remoteRef = 3862FEA82668D3C90097D3A3 /* PBXContainerItemProxy */;
  1195. sourceTree = BUILT_PRODUCTS_DIR;
  1196. };
  1197. 3862FEAB2668D3C90097D3A3 /* React-Core-AccessibilityResources */ = {
  1198. isa = PBXReferenceProxy;
  1199. fileType = wrapper.cfbundle;
  1200. name = "React-Core-AccessibilityResources";
  1201. path = AccessibilityResources.bundle;
  1202. remoteRef = 3862FEAA2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1203. sourceTree = BUILT_PRODUCTS_DIR;
  1204. };
  1205. 3862FEAD2668D3C90097D3A3 /* React-CoreModules */ = {
  1206. isa = PBXReferenceProxy;
  1207. fileType = archive.ar;
  1208. name = "React-CoreModules";
  1209. path = "libReact-CoreModules.a";
  1210. remoteRef = 3862FEAC2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1211. sourceTree = BUILT_PRODUCTS_DIR;
  1212. };
  1213. 3862FEAF2668D3C90097D3A3 /* React-cxxreact */ = {
  1214. isa = PBXReferenceProxy;
  1215. fileType = archive.ar;
  1216. name = "React-cxxreact";
  1217. path = "libReact-cxxreact.a";
  1218. remoteRef = 3862FEAE2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1219. sourceTree = BUILT_PRODUCTS_DIR;
  1220. };
  1221. 3862FEB12668D3C90097D3A3 /* React-jsi */ = {
  1222. isa = PBXReferenceProxy;
  1223. fileType = archive.ar;
  1224. name = "React-jsi";
  1225. path = "libReact-jsi.a";
  1226. remoteRef = 3862FEB02668D3C90097D3A3 /* PBXContainerItemProxy */;
  1227. sourceTree = BUILT_PRODUCTS_DIR;
  1228. };
  1229. 3862FEB32668D3C90097D3A3 /* React-jsiexecutor */ = {
  1230. isa = PBXReferenceProxy;
  1231. fileType = archive.ar;
  1232. name = "React-jsiexecutor";
  1233. path = "libReact-jsiexecutor.a";
  1234. remoteRef = 3862FEB22668D3C90097D3A3 /* PBXContainerItemProxy */;
  1235. sourceTree = BUILT_PRODUCTS_DIR;
  1236. };
  1237. 3862FEB52668D3C90097D3A3 /* React-jsinspector */ = {
  1238. isa = PBXReferenceProxy;
  1239. fileType = archive.ar;
  1240. name = "React-jsinspector";
  1241. path = "libReact-jsinspector.a";
  1242. remoteRef = 3862FEB42668D3C90097D3A3 /* PBXContainerItemProxy */;
  1243. sourceTree = BUILT_PRODUCTS_DIR;
  1244. };
  1245. 3862FEB72668D3C90097D3A3 /* react-native-camera */ = {
  1246. isa = PBXReferenceProxy;
  1247. fileType = archive.ar;
  1248. name = "react-native-camera";
  1249. path = "libreact-native-camera.a";
  1250. remoteRef = 3862FEB62668D3C90097D3A3 /* PBXContainerItemProxy */;
  1251. sourceTree = BUILT_PRODUCTS_DIR;
  1252. };
  1253. 3862FEB92668D3C90097D3A3 /* react-native-cameraroll */ = {
  1254. isa = PBXReferenceProxy;
  1255. fileType = archive.ar;
  1256. name = "react-native-cameraroll";
  1257. path = "libreact-native-cameraroll.a";
  1258. remoteRef = 3862FEB82668D3C90097D3A3 /* PBXContainerItemProxy */;
  1259. sourceTree = BUILT_PRODUCTS_DIR;
  1260. };
  1261. 3862FEBB2668D3C90097D3A3 /* react-native-geolocation */ = {
  1262. isa = PBXReferenceProxy;
  1263. fileType = archive.ar;
  1264. name = "react-native-geolocation";
  1265. path = "libreact-native-geolocation.a";
  1266. remoteRef = 3862FEBA2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1267. sourceTree = BUILT_PRODUCTS_DIR;
  1268. };
  1269. 3862FEBD2668D3C90097D3A3 /* react-native-maps */ = {
  1270. isa = PBXReferenceProxy;
  1271. fileType = archive.ar;
  1272. name = "react-native-maps";
  1273. path = "libreact-native-maps.a";
  1274. remoteRef = 3862FEBC2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1275. sourceTree = BUILT_PRODUCTS_DIR;
  1276. };
  1277. 3862FEBF2668D3C90097D3A3 /* react-native-safe-area-context */ = {
  1278. isa = PBXReferenceProxy;
  1279. fileType = archive.ar;
  1280. name = "react-native-safe-area-context";
  1281. path = "libreact-native-safe-area-context.a";
  1282. remoteRef = 3862FEBE2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1283. sourceTree = BUILT_PRODUCTS_DIR;
  1284. };
  1285. 3862FEC12668D3C90097D3A3 /* react-native-view-shot */ = {
  1286. isa = PBXReferenceProxy;
  1287. fileType = archive.ar;
  1288. name = "react-native-view-shot";
  1289. path = "libreact-native-view-shot.a";
  1290. remoteRef = 3862FEC02668D3C90097D3A3 /* PBXContainerItemProxy */;
  1291. sourceTree = BUILT_PRODUCTS_DIR;
  1292. };
  1293. 3862FEC32668D3C90097D3A3 /* React-perflogger */ = {
  1294. isa = PBXReferenceProxy;
  1295. fileType = archive.ar;
  1296. name = "React-perflogger";
  1297. path = "libReact-perflogger.a";
  1298. remoteRef = 3862FEC22668D3C90097D3A3 /* PBXContainerItemProxy */;
  1299. sourceTree = BUILT_PRODUCTS_DIR;
  1300. };
  1301. 3862FEC52668D3C90097D3A3 /* React-RCTAnimation */ = {
  1302. isa = PBXReferenceProxy;
  1303. fileType = archive.ar;
  1304. name = "React-RCTAnimation";
  1305. path = "libReact-RCTAnimation.a";
  1306. remoteRef = 3862FEC42668D3C90097D3A3 /* PBXContainerItemProxy */;
  1307. sourceTree = BUILT_PRODUCTS_DIR;
  1308. };
  1309. 3862FEC72668D3C90097D3A3 /* React-RCTBlob */ = {
  1310. isa = PBXReferenceProxy;
  1311. fileType = archive.ar;
  1312. name = "React-RCTBlob";
  1313. path = "libReact-RCTBlob.a";
  1314. remoteRef = 3862FEC62668D3C90097D3A3 /* PBXContainerItemProxy */;
  1315. sourceTree = BUILT_PRODUCTS_DIR;
  1316. };
  1317. 3862FEC92668D3C90097D3A3 /* React-RCTImage */ = {
  1318. isa = PBXReferenceProxy;
  1319. fileType = archive.ar;
  1320. name = "React-RCTImage";
  1321. path = "libReact-RCTImage.a";
  1322. remoteRef = 3862FEC82668D3C90097D3A3 /* PBXContainerItemProxy */;
  1323. sourceTree = BUILT_PRODUCTS_DIR;
  1324. };
  1325. 3862FECB2668D3C90097D3A3 /* React-RCTLinking */ = {
  1326. isa = PBXReferenceProxy;
  1327. fileType = archive.ar;
  1328. name = "React-RCTLinking";
  1329. path = "libReact-RCTLinking.a";
  1330. remoteRef = 3862FECA2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1331. sourceTree = BUILT_PRODUCTS_DIR;
  1332. };
  1333. 3862FECD2668D3C90097D3A3 /* React-RCTNetwork */ = {
  1334. isa = PBXReferenceProxy;
  1335. fileType = archive.ar;
  1336. name = "React-RCTNetwork";
  1337. path = "libReact-RCTNetwork.a";
  1338. remoteRef = 3862FECC2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1339. sourceTree = BUILT_PRODUCTS_DIR;
  1340. };
  1341. 3862FECF2668D3C90097D3A3 /* React-RCTSettings */ = {
  1342. isa = PBXReferenceProxy;
  1343. fileType = archive.ar;
  1344. name = "React-RCTSettings";
  1345. path = "libReact-RCTSettings.a";
  1346. remoteRef = 3862FECE2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1347. sourceTree = BUILT_PRODUCTS_DIR;
  1348. };
  1349. 3862FED12668D3C90097D3A3 /* React-RCTText */ = {
  1350. isa = PBXReferenceProxy;
  1351. fileType = archive.ar;
  1352. name = "React-RCTText";
  1353. path = "libReact-RCTText.a";
  1354. remoteRef = 3862FED02668D3C90097D3A3 /* PBXContainerItemProxy */;
  1355. sourceTree = BUILT_PRODUCTS_DIR;
  1356. };
  1357. 3862FED32668D3C90097D3A3 /* React-RCTVibration */ = {
  1358. isa = PBXReferenceProxy;
  1359. fileType = archive.ar;
  1360. name = "React-RCTVibration";
  1361. path = "libReact-RCTVibration.a";
  1362. remoteRef = 3862FED22668D3C90097D3A3 /* PBXContainerItemProxy */;
  1363. sourceTree = BUILT_PRODUCTS_DIR;
  1364. };
  1365. 3862FED52668D3C90097D3A3 /* ReactCommon */ = {
  1366. isa = PBXReferenceProxy;
  1367. fileType = archive.ar;
  1368. name = ReactCommon;
  1369. path = libReactCommon.a;
  1370. remoteRef = 3862FED42668D3C90097D3A3 /* PBXContainerItemProxy */;
  1371. sourceTree = BUILT_PRODUCTS_DIR;
  1372. };
  1373. 3862FED72668D3C90097D3A3 /* ReactNativeART */ = {
  1374. isa = PBXReferenceProxy;
  1375. fileType = archive.ar;
  1376. name = ReactNativeART;
  1377. path = libReactNativeART.a;
  1378. remoteRef = 3862FED62668D3C90097D3A3 /* PBXContainerItemProxy */;
  1379. sourceTree = BUILT_PRODUCTS_DIR;
  1380. };
  1381. 3862FED92668D3C90097D3A3 /* RNCAsyncStorage */ = {
  1382. isa = PBXReferenceProxy;
  1383. fileType = archive.ar;
  1384. name = RNCAsyncStorage;
  1385. path = libRNCAsyncStorage.a;
  1386. remoteRef = 3862FED82668D3C90097D3A3 /* PBXContainerItemProxy */;
  1387. sourceTree = BUILT_PRODUCTS_DIR;
  1388. };
  1389. 3862FEDB2668D3C90097D3A3 /* RNCCheckbox */ = {
  1390. isa = PBXReferenceProxy;
  1391. fileType = archive.ar;
  1392. name = RNCCheckbox;
  1393. path = libRNCCheckbox.a;
  1394. remoteRef = 3862FEDA2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1395. sourceTree = BUILT_PRODUCTS_DIR;
  1396. };
  1397. 3862FEDD2668D3C90097D3A3 /* RNCMaskedView */ = {
  1398. isa = PBXReferenceProxy;
  1399. fileType = archive.ar;
  1400. name = RNCMaskedView;
  1401. path = libRNCMaskedView.a;
  1402. remoteRef = 3862FEDC2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1403. sourceTree = BUILT_PRODUCTS_DIR;
  1404. };
  1405. 3862FEE12668D3C90097D3A3 /* RNCPushNotificationIOS */ = {
  1406. isa = PBXReferenceProxy;
  1407. fileType = archive.ar;
  1408. name = RNCPushNotificationIOS;
  1409. path = libRNCPushNotificationIOS.a;
  1410. remoteRef = 3862FEE02668D3C90097D3A3 /* PBXContainerItemProxy */;
  1411. sourceTree = BUILT_PRODUCTS_DIR;
  1412. };
  1413. 3862FEE32668D3C90097D3A3 /* RNGestureHandler */ = {
  1414. isa = PBXReferenceProxy;
  1415. fileType = archive.ar;
  1416. name = RNGestureHandler;
  1417. path = libRNGestureHandler.a;
  1418. remoteRef = 3862FEE22668D3C90097D3A3 /* PBXContainerItemProxy */;
  1419. sourceTree = BUILT_PRODUCTS_DIR;
  1420. };
  1421. 3862FEE52668D3C90097D3A3 /* RNImageCropPicker */ = {
  1422. isa = PBXReferenceProxy;
  1423. fileType = archive.ar;
  1424. name = RNImageCropPicker;
  1425. path = libRNImageCropPicker.a;
  1426. remoteRef = 3862FEE42668D3C90097D3A3 /* PBXContainerItemProxy */;
  1427. sourceTree = BUILT_PRODUCTS_DIR;
  1428. };
  1429. 3862FEE92668D3C90097D3A3 /* RNPermissions */ = {
  1430. isa = PBXReferenceProxy;
  1431. fileType = archive.ar;
  1432. name = RNPermissions;
  1433. path = libRNPermissions.a;
  1434. remoteRef = 3862FEE82668D3C90097D3A3 /* PBXContainerItemProxy */;
  1435. sourceTree = BUILT_PRODUCTS_DIR;
  1436. };
  1437. 3862FEEB2668D3C90097D3A3 /* RNReanimated */ = {
  1438. isa = PBXReferenceProxy;
  1439. fileType = archive.ar;
  1440. name = RNReanimated;
  1441. path = libRNReanimated.a;
  1442. remoteRef = 3862FEEA2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1443. sourceTree = BUILT_PRODUCTS_DIR;
  1444. };
  1445. 3862FEED2668D3C90097D3A3 /* RNScreens */ = {
  1446. isa = PBXReferenceProxy;
  1447. fileType = archive.ar;
  1448. name = RNScreens;
  1449. path = libRNScreens.a;
  1450. remoteRef = 3862FEEC2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1451. sourceTree = BUILT_PRODUCTS_DIR;
  1452. };
  1453. 3862FEEF2668D3C90097D3A3 /* RNShare */ = {
  1454. isa = PBXReferenceProxy;
  1455. fileType = archive.ar;
  1456. name = RNShare;
  1457. path = libRNShare.a;
  1458. remoteRef = 3862FEEE2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1459. sourceTree = BUILT_PRODUCTS_DIR;
  1460. };
  1461. 3862FEF12668D3C90097D3A3 /* RNSVG */ = {
  1462. isa = PBXReferenceProxy;
  1463. fileType = archive.ar;
  1464. name = RNSVG;
  1465. path = libRNSVG.a;
  1466. remoteRef = 3862FEF02668D3C90097D3A3 /* PBXContainerItemProxy */;
  1467. sourceTree = BUILT_PRODUCTS_DIR;
  1468. };
  1469. 3862FEF52668D3C90097D3A3 /* TOCropViewController */ = {
  1470. isa = PBXReferenceProxy;
  1471. fileType = archive.ar;
  1472. name = TOCropViewController;
  1473. path = libTOCropViewController.a;
  1474. remoteRef = 3862FEF42668D3C90097D3A3 /* PBXContainerItemProxy */;
  1475. sourceTree = BUILT_PRODUCTS_DIR;
  1476. };
  1477. 3862FEF92668D3C90097D3A3 /* Yoga */ = {
  1478. isa = PBXReferenceProxy;
  1479. fileType = archive.ar;
  1480. name = Yoga;
  1481. path = libYoga.a;
  1482. remoteRef = 3862FEF82668D3C90097D3A3 /* PBXContainerItemProxy */;
  1483. sourceTree = BUILT_PRODUCTS_DIR;
  1484. };
  1485. 38C6DA652668E46D00D889BC /* Google-Maps-iOS-Utils */ = {
  1486. isa = PBXReferenceProxy;
  1487. fileType = archive.ar;
  1488. name = "Google-Maps-iOS-Utils";
  1489. path = "libGoogle-Maps-iOS-Utils.a";
  1490. remoteRef = 38C6DA642668E46D00D889BC /* PBXContainerItemProxy */;
  1491. sourceTree = BUILT_PRODUCTS_DIR;
  1492. };
  1493. 38C6DA672668E46D00D889BC /* react-native-google-maps */ = {
  1494. isa = PBXReferenceProxy;
  1495. fileType = archive.ar;
  1496. name = "react-native-google-maps";
  1497. path = "libreact-native-google-maps.a";
  1498. remoteRef = 38C6DA662668E46D00D889BC /* PBXContainerItemProxy */;
  1499. sourceTree = BUILT_PRODUCTS_DIR;
  1500. };
  1501. 38DAC4B72A04A5270079D917 /* RNImageCropPicker-QBImagePicker */ = {
  1502. isa = PBXReferenceProxy;
  1503. fileType = wrapper.cfbundle;
  1504. name = "RNImageCropPicker-QBImagePicker";
  1505. path = QBImagePicker.bundle;
  1506. remoteRef = 38DAC4B62A04A5270079D917 /* PBXContainerItemProxy */;
  1507. sourceTree = BUILT_PRODUCTS_DIR;
  1508. };
  1509. 38DAC4B92A04A5270079D917 /* TOCropViewController-TOCropViewControllerBundle */ = {
  1510. isa = PBXReferenceProxy;
  1511. fileType = wrapper.cfbundle;
  1512. name = "TOCropViewController-TOCropViewControllerBundle";
  1513. path = TOCropViewControllerBundle.bundle;
  1514. remoteRef = 38DAC4B82A04A5270079D917 /* PBXContainerItemProxy */;
  1515. sourceTree = BUILT_PRODUCTS_DIR;
  1516. };
  1517. 38EDDA1526830E380093F908 /* react-native-webview */ = {
  1518. isa = PBXReferenceProxy;
  1519. fileType = archive.ar;
  1520. name = "react-native-webview";
  1521. path = "libreact-native-webview.a";
  1522. remoteRef = 38EDDA1426830E380093F908 /* PBXContainerItemProxy */;
  1523. sourceTree = BUILT_PRODUCTS_DIR;
  1524. };
  1525. 732F2CF7296FA69A00A90ECF /* FirebaseCoreInternal */ = {
  1526. isa = PBXReferenceProxy;
  1527. fileType = archive.ar;
  1528. name = FirebaseCoreInternal;
  1529. path = libFirebaseCoreInternal.a;
  1530. remoteRef = 732F2CF6296FA69A00A90ECF /* PBXContainerItemProxy */;
  1531. sourceTree = BUILT_PRODUCTS_DIR;
  1532. };
  1533. /* End PBXReferenceProxy section */
  1534. /* Begin PBXResourcesBuildPhase section */
  1535. 00E356EC1AD99517003FC87E /* Resources */ = {
  1536. isa = PBXResourcesBuildPhase;
  1537. buildActionMask = 2147483647;
  1538. files = (
  1539. );
  1540. runOnlyForDeploymentPostprocessing = 0;
  1541. };
  1542. 13B07F8E1A680F5B00A75B9A /* Resources */ = {
  1543. isa = PBXResourcesBuildPhase;
  1544. buildActionMask = 2147483647;
  1545. files = (
  1546. 25F6C61B2BAC214500DEECE4 /* PrivacyInfo.xcprivacy in Resources */,
  1547. 38066FC426DE16BF00271DFA /* main.jsbundle in Resources */,
  1548. 38066FC526DE16BF00271DFA /* assets in Resources */,
  1549. 3806702826DF20DA00271DFA /* GoogleService-Info.plist in Resources */,
  1550. 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
  1551. 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
  1552. );
  1553. runOnlyForDeploymentPostprocessing = 0;
  1554. };
  1555. /* End PBXResourcesBuildPhase section */
  1556. /* Begin PBXShellScriptBuildPhase section */
  1557. 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
  1558. isa = PBXShellScriptBuildPhase;
  1559. buildActionMask = 2147483647;
  1560. files = (
  1561. );
  1562. inputPaths = (
  1563. );
  1564. name = "Bundle React Native code and images";
  1565. outputPaths = (
  1566. );
  1567. runOnlyForDeploymentPostprocessing = 0;
  1568. shellPath = /bin/sh;
  1569. shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
  1570. };
  1571. 299A58B4788798FED5F19B10 /* [CP] Copy Pods Resources */ = {
  1572. isa = PBXShellScriptBuildPhase;
  1573. buildActionMask = 2147483647;
  1574. files = (
  1575. );
  1576. inputFileListPaths = (
  1577. "${PODS_ROOT}/Target Support Files/Pods-Strides/Pods-Strides-resources-${CONFIGURATION}-input-files.xcfilelist",
  1578. );
  1579. name = "[CP] Copy Pods Resources";
  1580. outputFileListPaths = (
  1581. "${PODS_ROOT}/Target Support Files/Pods-Strides/Pods-Strides-resources-${CONFIGURATION}-output-files.xcfilelist",
  1582. );
  1583. runOnlyForDeploymentPostprocessing = 0;
  1584. shellPath = /bin/sh;
  1585. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Strides/Pods-Strides-resources.sh\"\n";
  1586. showEnvVarsInLog = 0;
  1587. };
  1588. 4D6EA56AB2C5EF98D62C44D4 /* [CP] Embed Pods Frameworks */ = {
  1589. isa = PBXShellScriptBuildPhase;
  1590. buildActionMask = 2147483647;
  1591. files = (
  1592. );
  1593. inputFileListPaths = (
  1594. "${PODS_ROOT}/Target Support Files/Pods-Strides-StridesTests/Pods-Strides-StridesTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  1595. );
  1596. name = "[CP] Embed Pods Frameworks";
  1597. outputFileListPaths = (
  1598. "${PODS_ROOT}/Target Support Files/Pods-Strides-StridesTests/Pods-Strides-StridesTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  1599. );
  1600. runOnlyForDeploymentPostprocessing = 0;
  1601. shellPath = /bin/sh;
  1602. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Strides-StridesTests/Pods-Strides-StridesTests-frameworks.sh\"\n";
  1603. showEnvVarsInLog = 0;
  1604. };
  1605. 91782402D5526C1FE269DCEB /* [CP] Check Pods Manifest.lock */ = {
  1606. isa = PBXShellScriptBuildPhase;
  1607. buildActionMask = 2147483647;
  1608. files = (
  1609. );
  1610. inputFileListPaths = (
  1611. );
  1612. inputPaths = (
  1613. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1614. "${PODS_ROOT}/Manifest.lock",
  1615. );
  1616. name = "[CP] Check Pods Manifest.lock";
  1617. outputFileListPaths = (
  1618. );
  1619. outputPaths = (
  1620. "$(DERIVED_FILE_DIR)/Pods-Strides-StridesTests-checkManifestLockResult.txt",
  1621. );
  1622. runOnlyForDeploymentPostprocessing = 0;
  1623. shellPath = /bin/sh;
  1624. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  1625. showEnvVarsInLog = 0;
  1626. };
  1627. D5D39FDA52821A03E2D92BB2 /* [CP] Embed Pods Frameworks */ = {
  1628. isa = PBXShellScriptBuildPhase;
  1629. buildActionMask = 2147483647;
  1630. files = (
  1631. );
  1632. inputFileListPaths = (
  1633. "${PODS_ROOT}/Target Support Files/Pods-Strides/Pods-Strides-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  1634. );
  1635. name = "[CP] Embed Pods Frameworks";
  1636. outputFileListPaths = (
  1637. "${PODS_ROOT}/Target Support Files/Pods-Strides/Pods-Strides-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  1638. );
  1639. runOnlyForDeploymentPostprocessing = 0;
  1640. shellPath = /bin/sh;
  1641. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Strides/Pods-Strides-frameworks.sh\"\n";
  1642. showEnvVarsInLog = 0;
  1643. };
  1644. E8315E9C8ADE07ADFC46E267 /* [CP] Copy Pods Resources */ = {
  1645. isa = PBXShellScriptBuildPhase;
  1646. buildActionMask = 2147483647;
  1647. files = (
  1648. );
  1649. inputFileListPaths = (
  1650. "${PODS_ROOT}/Target Support Files/Pods-Strides-StridesTests/Pods-Strides-StridesTests-resources-${CONFIGURATION}-input-files.xcfilelist",
  1651. );
  1652. name = "[CP] Copy Pods Resources";
  1653. outputFileListPaths = (
  1654. "${PODS_ROOT}/Target Support Files/Pods-Strides-StridesTests/Pods-Strides-StridesTests-resources-${CONFIGURATION}-output-files.xcfilelist",
  1655. );
  1656. runOnlyForDeploymentPostprocessing = 0;
  1657. shellPath = /bin/sh;
  1658. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Strides-StridesTests/Pods-Strides-StridesTests-resources.sh\"\n";
  1659. showEnvVarsInLog = 0;
  1660. };
  1661. ECF1D1690D900A2BFDCEE6DB /* [CP] Check Pods Manifest.lock */ = {
  1662. isa = PBXShellScriptBuildPhase;
  1663. buildActionMask = 2147483647;
  1664. files = (
  1665. );
  1666. inputFileListPaths = (
  1667. );
  1668. inputPaths = (
  1669. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1670. "${PODS_ROOT}/Manifest.lock",
  1671. );
  1672. name = "[CP] Check Pods Manifest.lock";
  1673. outputFileListPaths = (
  1674. );
  1675. outputPaths = (
  1676. "$(DERIVED_FILE_DIR)/Pods-Strides-checkManifestLockResult.txt",
  1677. );
  1678. runOnlyForDeploymentPostprocessing = 0;
  1679. shellPath = /bin/sh;
  1680. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  1681. showEnvVarsInLog = 0;
  1682. };
  1683. FD10A7F022414F080027D42C /* Start Packager */ = {
  1684. isa = PBXShellScriptBuildPhase;
  1685. buildActionMask = 2147483647;
  1686. files = (
  1687. );
  1688. inputFileListPaths = (
  1689. );
  1690. inputPaths = (
  1691. );
  1692. name = "Start Packager";
  1693. outputFileListPaths = (
  1694. );
  1695. outputPaths = (
  1696. );
  1697. runOnlyForDeploymentPostprocessing = 0;
  1698. shellPath = /bin/sh;
  1699. shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
  1700. showEnvVarsInLog = 0;
  1701. };
  1702. /* End PBXShellScriptBuildPhase section */
  1703. /* Begin PBXSourcesBuildPhase section */
  1704. 00E356EA1AD99517003FC87E /* Sources */ = {
  1705. isa = PBXSourcesBuildPhase;
  1706. buildActionMask = 2147483647;
  1707. files = (
  1708. 00E356F31AD99517003FC87E /* StridesTests.m in Sources */,
  1709. );
  1710. runOnlyForDeploymentPostprocessing = 0;
  1711. };
  1712. 13B07F871A680F5B00A75B9A /* Sources */ = {
  1713. isa = PBXSourcesBuildPhase;
  1714. buildActionMask = 2147483647;
  1715. files = (
  1716. 25C7FBDA2AA706D400F61AA1 /* AppDelegate.mm in Sources */,
  1717. 13B07FC11A68108700A75B9A /* main.m in Sources */,
  1718. );
  1719. runOnlyForDeploymentPostprocessing = 0;
  1720. };
  1721. /* End PBXSourcesBuildPhase section */
  1722. /* Begin PBXTargetDependency section */
  1723. 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
  1724. isa = PBXTargetDependency;
  1725. target = 13B07F861A680F5B00A75B9A /* Strides */;
  1726. targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
  1727. };
  1728. /* End PBXTargetDependency section */
  1729. /* Begin XCBuildConfiguration section */
  1730. 00E356F61AD99517003FC87E /* Debug */ = {
  1731. isa = XCBuildConfiguration;
  1732. baseConfigurationReference = 1EAF8AFB4DFFD2DC3F519A17 /* Pods-Strides-StridesTests.debug.xcconfig */;
  1733. buildSettings = {
  1734. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1735. BUNDLE_LOADER = "$(TEST_HOST)";
  1736. DEVELOPMENT_TEAM = 3L3U7K6Q28;
  1737. GCC_PREPROCESSOR_DEFINITIONS = (
  1738. "DEBUG=1",
  1739. "$(inherited)",
  1740. );
  1741. INFOPLIST_FILE = StridesTests/Info.plist;
  1742. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  1743. LD_RUNPATH_SEARCH_PATHS = (
  1744. "$(inherited)",
  1745. "@executable_path/Frameworks",
  1746. "@loader_path/Frameworks",
  1747. );
  1748. OTHER_LDFLAGS = (
  1749. "-ObjC",
  1750. "-lc++",
  1751. "$(inherited)",
  1752. );
  1753. PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
  1754. PRODUCT_NAME = "$(TARGET_NAME)";
  1755. TARGETED_DEVICE_FAMILY = "1,2";
  1756. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Strides.app/Strides";
  1757. };
  1758. name = Debug;
  1759. };
  1760. 00E356F71AD99517003FC87E /* Release */ = {
  1761. isa = XCBuildConfiguration;
  1762. baseConfigurationReference = FB8DBBF7218DB1714AEA17D3 /* Pods-Strides-StridesTests.release.xcconfig */;
  1763. buildSettings = {
  1764. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1765. BUNDLE_LOADER = "$(TEST_HOST)";
  1766. "CODE_SIGN_IDENTITY[sdk=macosx*]" = "-";
  1767. COPY_PHASE_STRIP = NO;
  1768. DEVELOPMENT_TEAM = 3L3U7K6Q28;
  1769. INFOPLIST_FILE = StridesTests/Info.plist;
  1770. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  1771. LD_RUNPATH_SEARCH_PATHS = (
  1772. "$(inherited)",
  1773. "@executable_path/Frameworks",
  1774. "@loader_path/Frameworks",
  1775. );
  1776. OTHER_CFLAGS = (
  1777. "$(inherited)",
  1778. "-DFOLLY_NO_CONFIG",
  1779. "-DFOLLY_MOBILE=1",
  1780. "-DFOLLY_USE_LIBCPP=1",
  1781. "-Wno-comma",
  1782. "-Wno-shorten-64-to-32",
  1783. "-DREACT_NATIVE_MINOR_VERSION=64",
  1784. "-DREANIMATED_VERSION=2.14.4",
  1785. );
  1786. OTHER_LDFLAGS = (
  1787. "-ObjC",
  1788. "-lc++",
  1789. "$(inherited)",
  1790. );
  1791. PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
  1792. PRODUCT_NAME = "$(TARGET_NAME)";
  1793. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Strides.app/Strides";
  1794. };
  1795. name = Release;
  1796. };
  1797. 13B07F941A680F5B00A75B9A /* Debug */ = {
  1798. isa = XCBuildConfiguration;
  1799. baseConfigurationReference = B12059D6810CBCE332360003 /* Pods-Strides.debug.xcconfig */;
  1800. buildSettings = {
  1801. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1802. CLANG_ENABLE_MODULES = YES;
  1803. CODE_SIGN_ENTITLEMENTS = Strides/Strides.entitlements;
  1804. CURRENT_PROJECT_VERSION = 314;
  1805. DEVELOPMENT_TEAM = 3L3U7K6Q28;
  1806. ENABLE_BITCODE = NO;
  1807. "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
  1808. GCC_INPUT_FILETYPE = automatic;
  1809. INFOPLIST_FILE = Strides/Info.plist;
  1810. INFOPLIST_KEY_CFBundleDisplayName = ChargEco;
  1811. INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.lifestyle";
  1812. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  1813. LD_RUNPATH_SEARCH_PATHS = (
  1814. "$(inherited)",
  1815. "@executable_path/Frameworks",
  1816. );
  1817. MARKETING_VERSION = 3.1.3;
  1818. OTHER_CFLAGS = (
  1819. "$(inherited)",
  1820. "-DFOLLY_NO_CONFIG",
  1821. "-DFOLLY_MOBILE=1",
  1822. "-DFOLLY_USE_LIBCPP=1",
  1823. "-Wno-comma",
  1824. "-Wno-shorten-64-to-32",
  1825. "-DREACT_NATIVE_MINOR_VERSION=64",
  1826. "-DREANIMATED_VERSION=2.14.4",
  1827. );
  1828. OTHER_CPLUSPLUSFLAGS = (
  1829. "$(inherited)",
  1830. "-fcxx-modules",
  1831. );
  1832. OTHER_LDFLAGS = (
  1833. "$(inherited)",
  1834. "-ObjC",
  1835. "-lc++",
  1836. );
  1837. PRODUCT_BUNDLE_IDENTIFIER = com.strides.chargeco;
  1838. PRODUCT_NAME = Strides;
  1839. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  1840. SUPPORTS_MACCATALYST = NO;
  1841. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  1842. SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
  1843. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  1844. SWIFT_VERSION = 5.0;
  1845. TARGETED_DEVICE_FAMILY = "1,2";
  1846. VERSIONING_SYSTEM = "apple-generic";
  1847. };
  1848. name = Debug;
  1849. };
  1850. 13B07F951A680F5B00A75B9A /* Release */ = {
  1851. isa = XCBuildConfiguration;
  1852. baseConfigurationReference = 0B4312F6F31A03C548D2D34E /* Pods-Strides.release.xcconfig */;
  1853. buildSettings = {
  1854. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1855. CLANG_ENABLE_MODULES = YES;
  1856. CODE_SIGN_ENTITLEMENTS = Strides/Strides.entitlements;
  1857. CURRENT_PROJECT_VERSION = 314;
  1858. DEVELOPMENT_TEAM = 3L3U7K6Q28;
  1859. ENABLE_BITCODE = NO;
  1860. "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
  1861. GCC_INPUT_FILETYPE = automatic;
  1862. INFOPLIST_FILE = Strides/Info.plist;
  1863. INFOPLIST_KEY_CFBundleDisplayName = ChargEco;
  1864. INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.lifestyle";
  1865. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  1866. LD_RUNPATH_SEARCH_PATHS = (
  1867. "$(inherited)",
  1868. "@executable_path/Frameworks",
  1869. );
  1870. MARKETING_VERSION = 3.1.3;
  1871. OTHER_CFLAGS = (
  1872. "$(inherited)",
  1873. "-DFOLLY_NO_CONFIG",
  1874. "-DFOLLY_MOBILE=1",
  1875. "-DFOLLY_USE_LIBCPP=1",
  1876. "-Wno-comma",
  1877. "-Wno-shorten-64-to-32",
  1878. "-DREACT_NATIVE_MINOR_VERSION=64",
  1879. "-DREANIMATED_VERSION=2.14.4",
  1880. );
  1881. OTHER_CPLUSPLUSFLAGS = (
  1882. "$(inherited)",
  1883. "-fcxx-modules",
  1884. );
  1885. OTHER_LDFLAGS = (
  1886. "$(inherited)",
  1887. "-ObjC",
  1888. "-lc++",
  1889. );
  1890. PRODUCT_BUNDLE_IDENTIFIER = com.strides.chargeco;
  1891. PRODUCT_NAME = Strides;
  1892. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  1893. SUPPORTS_MACCATALYST = NO;
  1894. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  1895. SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
  1896. SWIFT_VERSION = 5.0;
  1897. TARGETED_DEVICE_FAMILY = "1,2";
  1898. VERSIONING_SYSTEM = "apple-generic";
  1899. };
  1900. name = Release;
  1901. };
  1902. 83CBBA201A601CBA00E9B192 /* Debug */ = {
  1903. isa = XCBuildConfiguration;
  1904. buildSettings = {
  1905. ALWAYS_SEARCH_USER_PATHS = NO;
  1906. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1907. CLANG_CXX_LANGUAGE_STANDARD = "c++17";
  1908. CLANG_CXX_LIBRARY = "libc++";
  1909. CLANG_ENABLE_MODULES = YES;
  1910. CLANG_ENABLE_OBJC_ARC = YES;
  1911. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1912. CLANG_WARN_BOOL_CONVERSION = YES;
  1913. CLANG_WARN_COMMA = YES;
  1914. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1915. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1916. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1917. CLANG_WARN_EMPTY_BODY = YES;
  1918. CLANG_WARN_ENUM_CONVERSION = YES;
  1919. CLANG_WARN_INFINITE_RECURSION = YES;
  1920. CLANG_WARN_INT_CONVERSION = YES;
  1921. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1922. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1923. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1924. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1925. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1926. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1927. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1928. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1929. CLANG_WARN_UNREACHABLE_CODE = YES;
  1930. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1931. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1932. COPY_PHASE_STRIP = NO;
  1933. ENABLE_BITCODE = NO;
  1934. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1935. ENABLE_TESTABILITY = YES;
  1936. "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
  1937. GCC_C_LANGUAGE_STANDARD = gnu99;
  1938. GCC_DYNAMIC_NO_PIC = NO;
  1939. GCC_NO_COMMON_BLOCKS = YES;
  1940. GCC_OPTIMIZATION_LEVEL = 0;
  1941. GCC_PREPROCESSOR_DEFINITIONS = (
  1942. "DEBUG=1",
  1943. "$(inherited)",
  1944. );
  1945. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  1946. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1947. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1948. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1949. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1950. GCC_WARN_UNUSED_FUNCTION = YES;
  1951. GCC_WARN_UNUSED_VARIABLE = YES;
  1952. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  1953. LD_RUNPATH_SEARCH_PATHS = (
  1954. /usr/lib/swift,
  1955. "$(inherited)",
  1956. );
  1957. LIBRARY_SEARCH_PATHS = (
  1958. "$(SDKROOT)/usr/lib/swift",
  1959. "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
  1960. "\"$(inherited)\"",
  1961. );
  1962. MTL_ENABLE_DEBUG_INFO = YES;
  1963. ONLY_ACTIVE_ARCH = YES;
  1964. OTHER_CFLAGS = "$(inherited)";
  1965. OTHER_CPLUSPLUSFLAGS = "$(inherited)";
  1966. REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
  1967. SDKROOT = iphoneos;
  1968. };
  1969. name = Debug;
  1970. };
  1971. 83CBBA211A601CBA00E9B192 /* Release */ = {
  1972. isa = XCBuildConfiguration;
  1973. buildSettings = {
  1974. ALWAYS_SEARCH_USER_PATHS = NO;
  1975. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1976. CLANG_CXX_LANGUAGE_STANDARD = "c++17";
  1977. CLANG_CXX_LIBRARY = "libc++";
  1978. CLANG_ENABLE_MODULES = YES;
  1979. CLANG_ENABLE_OBJC_ARC = YES;
  1980. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1981. CLANG_WARN_BOOL_CONVERSION = YES;
  1982. CLANG_WARN_COMMA = YES;
  1983. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1984. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1985. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1986. CLANG_WARN_EMPTY_BODY = YES;
  1987. CLANG_WARN_ENUM_CONVERSION = YES;
  1988. CLANG_WARN_INFINITE_RECURSION = YES;
  1989. CLANG_WARN_INT_CONVERSION = YES;
  1990. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1991. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1992. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1993. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1994. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1995. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1996. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1997. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1998. CLANG_WARN_UNREACHABLE_CODE = YES;
  1999. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2000. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2001. COPY_PHASE_STRIP = YES;
  2002. ENABLE_BITCODE = NO;
  2003. ENABLE_NS_ASSERTIONS = NO;
  2004. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2005. "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
  2006. GCC_C_LANGUAGE_STANDARD = gnu99;
  2007. GCC_NO_COMMON_BLOCKS = YES;
  2008. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2009. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2010. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2011. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2012. GCC_WARN_UNUSED_FUNCTION = YES;
  2013. GCC_WARN_UNUSED_VARIABLE = YES;
  2014. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  2015. LD_RUNPATH_SEARCH_PATHS = (
  2016. /usr/lib/swift,
  2017. "$(inherited)",
  2018. );
  2019. LIBRARY_SEARCH_PATHS = (
  2020. "$(SDKROOT)/usr/lib/swift",
  2021. "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
  2022. "\"$(inherited)\"",
  2023. );
  2024. MTL_ENABLE_DEBUG_INFO = NO;
  2025. OTHER_CFLAGS = "$(inherited)";
  2026. OTHER_CPLUSPLUSFLAGS = "$(inherited)";
  2027. REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
  2028. SDKROOT = iphoneos;
  2029. VALIDATE_PRODUCT = YES;
  2030. };
  2031. name = Release;
  2032. };
  2033. /* End XCBuildConfiguration section */
  2034. /* Begin XCConfigurationList section */
  2035. 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "StridesTests" */ = {
  2036. isa = XCConfigurationList;
  2037. buildConfigurations = (
  2038. 00E356F61AD99517003FC87E /* Debug */,
  2039. 00E356F71AD99517003FC87E /* Release */,
  2040. );
  2041. defaultConfigurationIsVisible = 0;
  2042. defaultConfigurationName = Release;
  2043. };
  2044. 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Strides" */ = {
  2045. isa = XCConfigurationList;
  2046. buildConfigurations = (
  2047. 13B07F941A680F5B00A75B9A /* Debug */,
  2048. 13B07F951A680F5B00A75B9A /* Release */,
  2049. );
  2050. defaultConfigurationIsVisible = 0;
  2051. defaultConfigurationName = Release;
  2052. };
  2053. 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Strides" */ = {
  2054. isa = XCConfigurationList;
  2055. buildConfigurations = (
  2056. 83CBBA201A601CBA00E9B192 /* Debug */,
  2057. 83CBBA211A601CBA00E9B192 /* Release */,
  2058. );
  2059. defaultConfigurationIsVisible = 0;
  2060. defaultConfigurationName = Release;
  2061. };
  2062. /* End XCConfigurationList section */
  2063. };
  2064. rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
  2065. }