project.pbxproj 71 KB

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