project.pbxproj 71 KB

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