project.pbxproj 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932
  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. 3869FBE8299B96AF00B54A73 /* AppCenter-Config.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3869FBE7299B96AE00B54A73 /* AppCenter-Config.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. 3869FB89299A2F0000B54A73 /* PBXContainerItemProxy */ = {
  492. isa = PBXContainerItemProxy;
  493. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  494. proxyType = 2;
  495. remoteGlobalIDString = E08C779E50631C7CF499C9D92CBF2143;
  496. remoteInfo = Base64;
  497. };
  498. 3869FB8B299A2F0000B54A73 /* PBXContainerItemProxy */ = {
  499. isa = PBXContainerItemProxy;
  500. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  501. proxyType = 2;
  502. remoteGlobalIDString = 0B9E5763C5976FF37F042C04F74C8659;
  503. remoteInfo = CodePush;
  504. };
  505. 3869FB8D299A2F0000B54A73 /* PBXContainerItemProxy */ = {
  506. isa = PBXContainerItemProxy;
  507. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  508. proxyType = 2;
  509. remoteGlobalIDString = 2DF82EE18981E98BA2339ECE2AB5F350;
  510. remoteInfo = JWT;
  511. };
  512. 3869FB8F299A2F0000B54A73 /* PBXContainerItemProxy */ = {
  513. isa = PBXContainerItemProxy;
  514. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  515. proxyType = 2;
  516. remoteGlobalIDString = 91B23470DEB9A986332BEB5034234BC7;
  517. remoteInfo = SSZipArchive;
  518. };
  519. 3869FC44299BBAA500B54A73 /* PBXContainerItemProxy */ = {
  520. isa = PBXContainerItemProxy;
  521. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  522. proxyType = 2;
  523. remoteGlobalIDString = F91783AD28315517EB590685D3A72C4E;
  524. remoteInfo = "appcenter-analytics";
  525. };
  526. 3869FC46299BBAA500B54A73 /* PBXContainerItemProxy */ = {
  527. isa = PBXContainerItemProxy;
  528. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  529. proxyType = 2;
  530. remoteGlobalIDString = 900096B0725CFCC567CC79CB90414A7A;
  531. remoteInfo = "appcenter-core";
  532. };
  533. 3869FC48299BBAA500B54A73 /* PBXContainerItemProxy */ = {
  534. isa = PBXContainerItemProxy;
  535. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  536. proxyType = 2;
  537. remoteGlobalIDString = 3CE42778BE70CC034137D9A5B65316C1;
  538. remoteInfo = "appcenter-crashes";
  539. };
  540. 38C6DA642668E46D00D889BC /* PBXContainerItemProxy */ = {
  541. isa = PBXContainerItemProxy;
  542. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  543. proxyType = 2;
  544. remoteGlobalIDString = 5CA9E6FE438CE79CD76FA3B34CC95836;
  545. remoteInfo = "Google-Maps-iOS-Utils";
  546. };
  547. 38C6DA662668E46D00D889BC /* PBXContainerItemProxy */ = {
  548. isa = PBXContainerItemProxy;
  549. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  550. proxyType = 2;
  551. remoteGlobalIDString = F7D4CFD8007E1491802305A2021EB56D;
  552. remoteInfo = "react-native-google-maps";
  553. };
  554. 38EDDA1426830E380093F908 /* PBXContainerItemProxy */ = {
  555. isa = PBXContainerItemProxy;
  556. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  557. proxyType = 2;
  558. remoteGlobalIDString = 8DF63376066E2275FF26820B3A512A9B;
  559. remoteInfo = "react-native-webview";
  560. };
  561. 732F2CF6296FA69A00A90ECF /* PBXContainerItemProxy */ = {
  562. isa = PBXContainerItemProxy;
  563. containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  564. proxyType = 2;
  565. remoteGlobalIDString = 148D0F9E8C7373FEAF40D800FC5F1BAA;
  566. remoteInfo = FirebaseCoreInternal;
  567. };
  568. /* End PBXContainerItemProxy section */
  569. /* Begin PBXFileReference section */
  570. 00E356EE1AD99517003FC87E /* JuicePlusTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = JuicePlusTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  571. 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  572. 00E356F21AD99517003FC87E /* JuicePlusTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JuicePlusTests.m; sourceTree = "<group>"; };
  573. 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>"; };
  574. 13B07F961A680F5B00A75B9A /* JuicePlus.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = JuicePlus.app; sourceTree = BUILT_PRODUCTS_DIR; };
  575. 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = JuicePlus/AppDelegate.h; sourceTree = "<group>"; };
  576. 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = JuicePlus/AppDelegate.m; sourceTree = "<group>"; };
  577. 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = JuicePlus/Images.xcassets; sourceTree = "<group>"; };
  578. 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = JuicePlus/Info.plist; sourceTree = "<group>"; };
  579. 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = JuicePlus/main.m; sourceTree = "<group>"; };
  580. 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>"; };
  581. 38066FC126DDDB0700271DFA /* JuicePlus.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = JuicePlus.entitlements; path = JuicePlus/JuicePlus.entitlements; sourceTree = "<group>"; };
  582. 38066FC226DE16BF00271DFA /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = main.jsbundle; path = bundle/main.jsbundle; sourceTree = "<group>"; };
  583. 38066FC326DE16BF00271DFA /* assets */ = {isa = PBXFileReference; lastKnownFileType = folder; name = assets; path = bundle/assets; sourceTree = "<group>"; };
  584. 38066FC926DF20DA00271DFA /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "GoogleService-Info.plist"; path = "JuicePlus/GoogleService-Info.plist"; sourceTree = "<group>"; };
  585. 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = Pods.xcodeproj; sourceTree = "<group>"; };
  586. 3869FBE7299B96AE00B54A73 /* AppCenter-Config.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "AppCenter-Config.plist"; path = "JuicePlus/AppCenter-Config.plist"; sourceTree = "<group>"; };
  587. 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = JuicePlus/LaunchScreen.storyboard; sourceTree = "<group>"; };
  588. AB9D2CD35A198422C90BC492 /* libPods-JuicePlus-JuicePlusTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-JuicePlus-JuicePlusTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  589. 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>"; };
  590. DB9107F120992435E6CC55BB /* libPods-JuicePlus.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-JuicePlus.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  591. ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
  592. 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>"; };
  593. /* End PBXFileReference section */
  594. /* Begin PBXFrameworksBuildPhase section */
  595. 00E356EB1AD99517003FC87E /* Frameworks */ = {
  596. isa = PBXFrameworksBuildPhase;
  597. buildActionMask = 2147483647;
  598. files = (
  599. A8CB5874BD86036F4E6DF87A /* libPods-JuicePlus-JuicePlusTests.a in Frameworks */,
  600. );
  601. runOnlyForDeploymentPostprocessing = 0;
  602. };
  603. 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
  604. isa = PBXFrameworksBuildPhase;
  605. buildActionMask = 2147483647;
  606. files = (
  607. A5707C5E2B88048AC01CD052 /* libPods-JuicePlus.a in Frameworks */,
  608. );
  609. runOnlyForDeploymentPostprocessing = 0;
  610. };
  611. /* End PBXFrameworksBuildPhase section */
  612. /* Begin PBXGroup section */
  613. 00E356EF1AD99517003FC87E /* JuicePlusTests */ = {
  614. isa = PBXGroup;
  615. children = (
  616. 00E356F21AD99517003FC87E /* JuicePlusTests.m */,
  617. 00E356F01AD99517003FC87E /* Supporting Files */,
  618. );
  619. path = JuicePlusTests;
  620. sourceTree = "<group>";
  621. };
  622. 00E356F01AD99517003FC87E /* Supporting Files */ = {
  623. isa = PBXGroup;
  624. children = (
  625. 00E356F11AD99517003FC87E /* Info.plist */,
  626. );
  627. name = "Supporting Files";
  628. sourceTree = "<group>";
  629. };
  630. 13B07FAE1A68108700A75B9A /* JuicePlus */ = {
  631. isa = PBXGroup;
  632. children = (
  633. 38066FC326DE16BF00271DFA /* assets */,
  634. 38066FC226DE16BF00271DFA /* main.jsbundle */,
  635. 38066FC126DDDB0700271DFA /* JuicePlus.entitlements */,
  636. 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
  637. 13B07FB01A68108700A75B9A /* AppDelegate.m */,
  638. 13B07FB51A68108700A75B9A /* Images.xcassets */,
  639. 13B07FB61A68108700A75B9A /* Info.plist */,
  640. 3869FBE7299B96AE00B54A73 /* AppCenter-Config.plist */,
  641. 38066FC926DF20DA00271DFA /* GoogleService-Info.plist */,
  642. 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
  643. 13B07FB71A68108700A75B9A /* main.m */,
  644. );
  645. name = JuicePlus;
  646. sourceTree = "<group>";
  647. };
  648. 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
  649. isa = PBXGroup;
  650. children = (
  651. ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
  652. DB9107F120992435E6CC55BB /* libPods-JuicePlus.a */,
  653. AB9D2CD35A198422C90BC492 /* libPods-JuicePlus-JuicePlusTests.a */,
  654. );
  655. name = Frameworks;
  656. sourceTree = "<group>";
  657. };
  658. 3862FE5E2668D3C90097D3A3 /* Products */ = {
  659. isa = PBXGroup;
  660. children = (
  661. 3869FC45299BBAA500B54A73 /* appcenter-analytics */,
  662. 3869FC47299BBAA500B54A73 /* appcenter-core */,
  663. 3869FC49299BBAA500B54A73 /* appcenter-crashes */,
  664. 3869FB8A299A2F0000B54A73 /* Base64 */,
  665. 385053C52970039F0061999F /* BEMCheckBox */,
  666. 3869FB8C299A2F0000B54A73 /* CodePush */,
  667. 3862FE992668D3C90097D3A3 /* DoubleConversion */,
  668. 3862FE9B2668D3C90097D3A3 /* FBReactNativeSpec */,
  669. 3806701926DF20DA00271DFA /* FirebaseCore */,
  670. 3806701B26DF20DA00271DFA /* FirebaseCoreDiagnostics */,
  671. 732F2CF7296FA69A00A90ECF /* FirebaseCoreInternal */,
  672. 3806701D26DF20DA00271DFA /* FirebaseInstallations */,
  673. 3806701F26DF20DA00271DFA /* FirebaseMessaging */,
  674. 3862FE9D2668D3C90097D3A3 /* glog */,
  675. 38C6DA652668E46D00D889BC /* Google-Maps-iOS-Utils */,
  676. 3806702126DF20DA00271DFA /* GoogleDataTransport */,
  677. 3806702326DF20DA00271DFA /* GoogleUtilities */,
  678. 3869FB8E299A2F0000B54A73 /* JWT */,
  679. 3806702526DF20DA00271DFA /* nanopb */,
  680. 3860E72F266E248E0059CC98 /* Permission-AppTrackingTransparency */,
  681. 3862FE9F2668D3C90097D3A3 /* Permission-Camera */,
  682. 3860E731266E248E0059CC98 /* Permission-LocationAccuracy */,
  683. 3860E733266E248E0059CC98 /* Permission-LocationAlways */,
  684. 3860E735266E248E0059CC98 /* Permission-LocationWhenInUse */,
  685. 3860E739266E248E0059CC98 /* Permission-Microphone */,
  686. 3860E73D266E248E0059CC98 /* Permission-Notifications */,
  687. 3860E73F266E248E0059CC98 /* Permission-PhotoLibrary */,
  688. 3860E741266E248E0059CC98 /* Permission-PhotoLibraryAddOnly */,
  689. 3862FEA12668D3C90097D3A3 /* Pods-JuicePlus */,
  690. 3862FEA32668D3C90097D3A3 /* Pods-JuicePlus-JuicePlusTests */,
  691. 3806702726DF20DA00271DFA /* PromisesObjC */,
  692. 3862FEA52668D3C90097D3A3 /* RCT-Folly */,
  693. 3862FEA72668D3C90097D3A3 /* RCTTypeSafety */,
  694. 3862FEA92668D3C90097D3A3 /* React-Core */,
  695. 3862FEAB2668D3C90097D3A3 /* React-Core-AccessibilityResources */,
  696. 3862FEAD2668D3C90097D3A3 /* React-CoreModules */,
  697. 3862FEAF2668D3C90097D3A3 /* React-cxxreact */,
  698. 3862FEB12668D3C90097D3A3 /* React-jsi */,
  699. 3862FEB32668D3C90097D3A3 /* React-jsiexecutor */,
  700. 3862FEB52668D3C90097D3A3 /* React-jsinspector */,
  701. 3862FEB72668D3C90097D3A3 /* react-native-camera */,
  702. 3862FEB92668D3C90097D3A3 /* react-native-cameraroll */,
  703. 3862FEBB2668D3C90097D3A3 /* react-native-geolocation */,
  704. 38C6DA672668E46D00D889BC /* react-native-google-maps */,
  705. 3862FEBD2668D3C90097D3A3 /* react-native-maps */,
  706. 3862FEBF2668D3C90097D3A3 /* react-native-safe-area-context */,
  707. 3862FEC12668D3C90097D3A3 /* react-native-view-shot */,
  708. 38EDDA1526830E380093F908 /* react-native-webview */,
  709. 3862FEC32668D3C90097D3A3 /* React-perflogger */,
  710. 3862FEC52668D3C90097D3A3 /* React-RCTAnimation */,
  711. 3862FEC72668D3C90097D3A3 /* React-RCTBlob */,
  712. 3862FEC92668D3C90097D3A3 /* React-RCTImage */,
  713. 3862FECB2668D3C90097D3A3 /* React-RCTLinking */,
  714. 3862FECD2668D3C90097D3A3 /* React-RCTNetwork */,
  715. 3862FECF2668D3C90097D3A3 /* React-RCTSettings */,
  716. 3862FED12668D3C90097D3A3 /* React-RCTText */,
  717. 3862FED32668D3C90097D3A3 /* React-RCTVibration */,
  718. 3862FED52668D3C90097D3A3 /* ReactCommon */,
  719. 3862FED72668D3C90097D3A3 /* ReactNativeART */,
  720. 3862FED92668D3C90097D3A3 /* RNCAsyncStorage */,
  721. 3862FEDB2668D3C90097D3A3 /* RNCCheckbox */,
  722. 3862FEDD2668D3C90097D3A3 /* RNCMaskedView */,
  723. 3862FEE12668D3C90097D3A3 /* RNCPushNotificationIOS */,
  724. 382FB1E7272F967F007EE9BB /* RNDeviceInfo */,
  725. 3862FEE32668D3C90097D3A3 /* RNGestureHandler */,
  726. 3862FEE52668D3C90097D3A3 /* RNImageCropPicker */,
  727. 3862FEE72668D3C90097D3A3 /* RNImageCropPicker-QBImagePicker */,
  728. 3862FEE92668D3C90097D3A3 /* RNPermissions */,
  729. 3862FEEB2668D3C90097D3A3 /* RNReanimated */,
  730. 3862FEED2668D3C90097D3A3 /* RNScreens */,
  731. 3862FEEF2668D3C90097D3A3 /* RNShare */,
  732. 3862FEF12668D3C90097D3A3 /* RNSVG */,
  733. 3860E743266E248E0059CC98 /* RNVectorIcons */,
  734. 3869FB90299A2F0000B54A73 /* SSZipArchive */,
  735. 3862FEF52668D3C90097D3A3 /* TOCropViewController */,
  736. 3862FEF72668D3C90097D3A3 /* TOCropViewController-TOCropViewControllerBundle */,
  737. 3862FEF92668D3C90097D3A3 /* Yoga */,
  738. );
  739. name = Products;
  740. sourceTree = "<group>";
  741. };
  742. 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
  743. isa = PBXGroup;
  744. children = (
  745. );
  746. name = Libraries;
  747. sourceTree = "<group>";
  748. };
  749. 83CBB9F61A601CBA00E9B192 = {
  750. isa = PBXGroup;
  751. children = (
  752. 13B07FAE1A68108700A75B9A /* JuicePlus */,
  753. 832341AE1AAA6A7D00B99B32 /* Libraries */,
  754. 00E356EF1AD99517003FC87E /* JuicePlusTests */,
  755. 83CBBA001A601CBA00E9B192 /* Products */,
  756. 2D16E6871FA4F8E400B85C8A /* Frameworks */,
  757. AE9F3160A5794A17807F051F /* Pods */,
  758. );
  759. indentWidth = 2;
  760. sourceTree = "<group>";
  761. tabWidth = 2;
  762. usesTabs = 0;
  763. };
  764. 83CBBA001A601CBA00E9B192 /* Products */ = {
  765. isa = PBXGroup;
  766. children = (
  767. 13B07F961A680F5B00A75B9A /* JuicePlus.app */,
  768. 00E356EE1AD99517003FC87E /* JuicePlusTests.xctest */,
  769. );
  770. name = Products;
  771. sourceTree = "<group>";
  772. };
  773. AE9F3160A5794A17807F051F /* Pods */ = {
  774. isa = PBXGroup;
  775. children = (
  776. 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */,
  777. B12059D6810CBCE332360003 /* Pods-JuicePlus.debug.xcconfig */,
  778. 0B4312F6F31A03C548D2D34E /* Pods-JuicePlus.release.xcconfig */,
  779. 1EAF8AFB4DFFD2DC3F519A17 /* Pods-JuicePlus-JuicePlusTests.debug.xcconfig */,
  780. FB8DBBF7218DB1714AEA17D3 /* Pods-JuicePlus-JuicePlusTests.release.xcconfig */,
  781. );
  782. path = Pods;
  783. sourceTree = "<group>";
  784. };
  785. /* End PBXGroup section */
  786. /* Begin PBXNativeTarget section */
  787. 00E356ED1AD99517003FC87E /* JuicePlusTests */ = {
  788. isa = PBXNativeTarget;
  789. buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "JuicePlusTests" */;
  790. buildPhases = (
  791. 91782402D5526C1FE269DCEB /* [CP] Check Pods Manifest.lock */,
  792. 00E356EA1AD99517003FC87E /* Sources */,
  793. 00E356EB1AD99517003FC87E /* Frameworks */,
  794. 00E356EC1AD99517003FC87E /* Resources */,
  795. E8315E9C8ADE07ADFC46E267 /* [CP] Copy Pods Resources */,
  796. );
  797. buildRules = (
  798. );
  799. dependencies = (
  800. 00E356F51AD99517003FC87E /* PBXTargetDependency */,
  801. );
  802. name = JuicePlusTests;
  803. productName = JuicePlusTests;
  804. productReference = 00E356EE1AD99517003FC87E /* JuicePlusTests.xctest */;
  805. productType = "com.apple.product-type.bundle.unit-test";
  806. };
  807. 13B07F861A680F5B00A75B9A /* JuicePlus */ = {
  808. isa = PBXNativeTarget;
  809. buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "JuicePlus" */;
  810. buildPhases = (
  811. ECF1D1690D900A2BFDCEE6DB /* [CP] Check Pods Manifest.lock */,
  812. FD10A7F022414F080027D42C /* Start Packager */,
  813. 13B07F871A680F5B00A75B9A /* Sources */,
  814. 13B07F8C1A680F5B00A75B9A /* Frameworks */,
  815. 13B07F8E1A680F5B00A75B9A /* Resources */,
  816. 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
  817. 299A58B4788798FED5F19B10 /* [CP] Copy Pods Resources */,
  818. );
  819. buildRules = (
  820. );
  821. dependencies = (
  822. );
  823. name = JuicePlus;
  824. productName = JuicePlus;
  825. productReference = 13B07F961A680F5B00A75B9A /* JuicePlus.app */;
  826. productType = "com.apple.product-type.application";
  827. };
  828. /* End PBXNativeTarget section */
  829. /* Begin PBXProject section */
  830. 83CBB9F71A601CBA00E9B192 /* Project object */ = {
  831. isa = PBXProject;
  832. attributes = {
  833. LastUpgradeCheck = 1330;
  834. TargetAttributes = {
  835. 00E356ED1AD99517003FC87E = {
  836. CreatedOnToolsVersion = 6.2;
  837. TestTargetID = 13B07F861A680F5B00A75B9A;
  838. };
  839. 13B07F861A680F5B00A75B9A = {
  840. LastSwiftMigration = 1120;
  841. };
  842. };
  843. };
  844. buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "JuicePlus" */;
  845. compatibilityVersion = "Xcode 12.0";
  846. developmentRegion = en;
  847. hasScannedForEncodings = 0;
  848. knownRegions = (
  849. en,
  850. Base,
  851. );
  852. mainGroup = 83CBB9F61A601CBA00E9B192;
  853. productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
  854. projectDirPath = "";
  855. projectReferences = (
  856. {
  857. ProductGroup = 3862FE5E2668D3C90097D3A3 /* Products */;
  858. ProjectRef = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
  859. },
  860. );
  861. projectRoot = "";
  862. targets = (
  863. 13B07F861A680F5B00A75B9A /* JuicePlus */,
  864. 00E356ED1AD99517003FC87E /* JuicePlusTests */,
  865. );
  866. };
  867. /* End PBXProject section */
  868. /* Begin PBXReferenceProxy section */
  869. 3806701926DF20DA00271DFA /* FirebaseCore */ = {
  870. isa = PBXReferenceProxy;
  871. fileType = archive.ar;
  872. name = FirebaseCore;
  873. path = libFirebaseCore.a;
  874. remoteRef = 3806701826DF20DA00271DFA /* PBXContainerItemProxy */;
  875. sourceTree = BUILT_PRODUCTS_DIR;
  876. };
  877. 3806701B26DF20DA00271DFA /* FirebaseCoreDiagnostics */ = {
  878. isa = PBXReferenceProxy;
  879. fileType = archive.ar;
  880. name = FirebaseCoreDiagnostics;
  881. path = libFirebaseCoreDiagnostics.a;
  882. remoteRef = 3806701A26DF20DA00271DFA /* PBXContainerItemProxy */;
  883. sourceTree = BUILT_PRODUCTS_DIR;
  884. };
  885. 3806701D26DF20DA00271DFA /* FirebaseInstallations */ = {
  886. isa = PBXReferenceProxy;
  887. fileType = archive.ar;
  888. name = FirebaseInstallations;
  889. path = libFirebaseInstallations.a;
  890. remoteRef = 3806701C26DF20DA00271DFA /* PBXContainerItemProxy */;
  891. sourceTree = BUILT_PRODUCTS_DIR;
  892. };
  893. 3806701F26DF20DA00271DFA /* FirebaseMessaging */ = {
  894. isa = PBXReferenceProxy;
  895. fileType = archive.ar;
  896. name = FirebaseMessaging;
  897. path = libFirebaseMessaging.a;
  898. remoteRef = 3806701E26DF20DA00271DFA /* PBXContainerItemProxy */;
  899. sourceTree = BUILT_PRODUCTS_DIR;
  900. };
  901. 3806702126DF20DA00271DFA /* GoogleDataTransport */ = {
  902. isa = PBXReferenceProxy;
  903. fileType = archive.ar;
  904. name = GoogleDataTransport;
  905. path = libGoogleDataTransport.a;
  906. remoteRef = 3806702026DF20DA00271DFA /* PBXContainerItemProxy */;
  907. sourceTree = BUILT_PRODUCTS_DIR;
  908. };
  909. 3806702326DF20DA00271DFA /* GoogleUtilities */ = {
  910. isa = PBXReferenceProxy;
  911. fileType = archive.ar;
  912. name = GoogleUtilities;
  913. path = libGoogleUtilities.a;
  914. remoteRef = 3806702226DF20DA00271DFA /* PBXContainerItemProxy */;
  915. sourceTree = BUILT_PRODUCTS_DIR;
  916. };
  917. 3806702526DF20DA00271DFA /* nanopb */ = {
  918. isa = PBXReferenceProxy;
  919. fileType = archive.ar;
  920. name = nanopb;
  921. path = libnanopb.a;
  922. remoteRef = 3806702426DF20DA00271DFA /* PBXContainerItemProxy */;
  923. sourceTree = BUILT_PRODUCTS_DIR;
  924. };
  925. 3806702726DF20DA00271DFA /* PromisesObjC */ = {
  926. isa = PBXReferenceProxy;
  927. fileType = archive.ar;
  928. name = PromisesObjC;
  929. path = libPromisesObjC.a;
  930. remoteRef = 3806702626DF20DA00271DFA /* PBXContainerItemProxy */;
  931. sourceTree = BUILT_PRODUCTS_DIR;
  932. };
  933. 382FB1E7272F967F007EE9BB /* RNDeviceInfo */ = {
  934. isa = PBXReferenceProxy;
  935. fileType = archive.ar;
  936. name = RNDeviceInfo;
  937. path = libRNDeviceInfo.a;
  938. remoteRef = 382FB1E6272F967F007EE9BB /* PBXContainerItemProxy */;
  939. sourceTree = BUILT_PRODUCTS_DIR;
  940. };
  941. 385053C52970039F0061999F /* BEMCheckBox */ = {
  942. isa = PBXReferenceProxy;
  943. fileType = archive.ar;
  944. name = BEMCheckBox;
  945. path = libBEMCheckBox.a;
  946. remoteRef = 385053C42970039F0061999F /* PBXContainerItemProxy */;
  947. sourceTree = BUILT_PRODUCTS_DIR;
  948. };
  949. 3860E72F266E248E0059CC98 /* Permission-AppTrackingTransparency */ = {
  950. isa = PBXReferenceProxy;
  951. fileType = archive.ar;
  952. name = "Permission-AppTrackingTransparency";
  953. path = "libPermission-AppTrackingTransparency.a";
  954. remoteRef = 3860E72E266E248E0059CC98 /* PBXContainerItemProxy */;
  955. sourceTree = BUILT_PRODUCTS_DIR;
  956. };
  957. 3860E731266E248E0059CC98 /* Permission-LocationAccuracy */ = {
  958. isa = PBXReferenceProxy;
  959. fileType = archive.ar;
  960. name = "Permission-LocationAccuracy";
  961. path = "libPermission-LocationAccuracy.a";
  962. remoteRef = 3860E730266E248E0059CC98 /* PBXContainerItemProxy */;
  963. sourceTree = BUILT_PRODUCTS_DIR;
  964. };
  965. 3860E733266E248E0059CC98 /* Permission-LocationAlways */ = {
  966. isa = PBXReferenceProxy;
  967. fileType = archive.ar;
  968. name = "Permission-LocationAlways";
  969. path = "libPermission-LocationAlways.a";
  970. remoteRef = 3860E732266E248E0059CC98 /* PBXContainerItemProxy */;
  971. sourceTree = BUILT_PRODUCTS_DIR;
  972. };
  973. 3860E735266E248E0059CC98 /* Permission-LocationWhenInUse */ = {
  974. isa = PBXReferenceProxy;
  975. fileType = archive.ar;
  976. name = "Permission-LocationWhenInUse";
  977. path = "libPermission-LocationWhenInUse.a";
  978. remoteRef = 3860E734266E248E0059CC98 /* PBXContainerItemProxy */;
  979. sourceTree = BUILT_PRODUCTS_DIR;
  980. };
  981. 3860E739266E248E0059CC98 /* Permission-Microphone */ = {
  982. isa = PBXReferenceProxy;
  983. fileType = archive.ar;
  984. name = "Permission-Microphone";
  985. path = "libPermission-Microphone.a";
  986. remoteRef = 3860E738266E248E0059CC98 /* PBXContainerItemProxy */;
  987. sourceTree = BUILT_PRODUCTS_DIR;
  988. };
  989. 3860E73D266E248E0059CC98 /* Permission-Notifications */ = {
  990. isa = PBXReferenceProxy;
  991. fileType = archive.ar;
  992. name = "Permission-Notifications";
  993. path = "libPermission-Notifications.a";
  994. remoteRef = 3860E73C266E248E0059CC98 /* PBXContainerItemProxy */;
  995. sourceTree = BUILT_PRODUCTS_DIR;
  996. };
  997. 3860E73F266E248E0059CC98 /* Permission-PhotoLibrary */ = {
  998. isa = PBXReferenceProxy;
  999. fileType = archive.ar;
  1000. name = "Permission-PhotoLibrary";
  1001. path = "libPermission-PhotoLibrary.a";
  1002. remoteRef = 3860E73E266E248E0059CC98 /* PBXContainerItemProxy */;
  1003. sourceTree = BUILT_PRODUCTS_DIR;
  1004. };
  1005. 3860E741266E248E0059CC98 /* Permission-PhotoLibraryAddOnly */ = {
  1006. isa = PBXReferenceProxy;
  1007. fileType = archive.ar;
  1008. name = "Permission-PhotoLibraryAddOnly";
  1009. path = "libPermission-PhotoLibraryAddOnly.a";
  1010. remoteRef = 3860E740266E248E0059CC98 /* PBXContainerItemProxy */;
  1011. sourceTree = BUILT_PRODUCTS_DIR;
  1012. };
  1013. 3860E743266E248E0059CC98 /* RNVectorIcons */ = {
  1014. isa = PBXReferenceProxy;
  1015. fileType = archive.ar;
  1016. name = RNVectorIcons;
  1017. path = libRNVectorIcons.a;
  1018. remoteRef = 3860E742266E248E0059CC98 /* PBXContainerItemProxy */;
  1019. sourceTree = BUILT_PRODUCTS_DIR;
  1020. };
  1021. 3862FE992668D3C90097D3A3 /* DoubleConversion */ = {
  1022. isa = PBXReferenceProxy;
  1023. fileType = archive.ar;
  1024. name = DoubleConversion;
  1025. path = libDoubleConversion.a;
  1026. remoteRef = 3862FE982668D3C90097D3A3 /* PBXContainerItemProxy */;
  1027. sourceTree = BUILT_PRODUCTS_DIR;
  1028. };
  1029. 3862FE9B2668D3C90097D3A3 /* FBReactNativeSpec */ = {
  1030. isa = PBXReferenceProxy;
  1031. fileType = archive.ar;
  1032. name = FBReactNativeSpec;
  1033. path = libFBReactNativeSpec.a;
  1034. remoteRef = 3862FE9A2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1035. sourceTree = BUILT_PRODUCTS_DIR;
  1036. };
  1037. 3862FE9D2668D3C90097D3A3 /* glog */ = {
  1038. isa = PBXReferenceProxy;
  1039. fileType = archive.ar;
  1040. name = glog;
  1041. path = libglog.a;
  1042. remoteRef = 3862FE9C2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1043. sourceTree = BUILT_PRODUCTS_DIR;
  1044. };
  1045. 3862FE9F2668D3C90097D3A3 /* Permission-Camera */ = {
  1046. isa = PBXReferenceProxy;
  1047. fileType = archive.ar;
  1048. name = "Permission-Camera";
  1049. path = "libPermission-Camera.a";
  1050. remoteRef = 3862FE9E2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1051. sourceTree = BUILT_PRODUCTS_DIR;
  1052. };
  1053. 3862FEA12668D3C90097D3A3 /* Pods-JuicePlus */ = {
  1054. isa = PBXReferenceProxy;
  1055. fileType = archive.ar;
  1056. name = "Pods-JuicePlus";
  1057. path = "libPods-JuicePlus.a";
  1058. remoteRef = 3862FEA02668D3C90097D3A3 /* PBXContainerItemProxy */;
  1059. sourceTree = BUILT_PRODUCTS_DIR;
  1060. };
  1061. 3862FEA32668D3C90097D3A3 /* Pods-JuicePlus-JuicePlusTests */ = {
  1062. isa = PBXReferenceProxy;
  1063. fileType = archive.ar;
  1064. name = "Pods-JuicePlus-JuicePlusTests";
  1065. path = "libPods-JuicePlus-JuicePlusTests.a";
  1066. remoteRef = 3862FEA22668D3C90097D3A3 /* PBXContainerItemProxy */;
  1067. sourceTree = BUILT_PRODUCTS_DIR;
  1068. };
  1069. 3862FEA52668D3C90097D3A3 /* RCT-Folly */ = {
  1070. isa = PBXReferenceProxy;
  1071. fileType = archive.ar;
  1072. name = "RCT-Folly";
  1073. path = "libRCT-Folly.a";
  1074. remoteRef = 3862FEA42668D3C90097D3A3 /* PBXContainerItemProxy */;
  1075. sourceTree = BUILT_PRODUCTS_DIR;
  1076. };
  1077. 3862FEA72668D3C90097D3A3 /* RCTTypeSafety */ = {
  1078. isa = PBXReferenceProxy;
  1079. fileType = archive.ar;
  1080. name = RCTTypeSafety;
  1081. path = libRCTTypeSafety.a;
  1082. remoteRef = 3862FEA62668D3C90097D3A3 /* PBXContainerItemProxy */;
  1083. sourceTree = BUILT_PRODUCTS_DIR;
  1084. };
  1085. 3862FEA92668D3C90097D3A3 /* React-Core */ = {
  1086. isa = PBXReferenceProxy;
  1087. fileType = archive.ar;
  1088. name = "React-Core";
  1089. path = "libReact-Core.a";
  1090. remoteRef = 3862FEA82668D3C90097D3A3 /* PBXContainerItemProxy */;
  1091. sourceTree = BUILT_PRODUCTS_DIR;
  1092. };
  1093. 3862FEAB2668D3C90097D3A3 /* React-Core-AccessibilityResources */ = {
  1094. isa = PBXReferenceProxy;
  1095. fileType = wrapper.cfbundle;
  1096. name = "React-Core-AccessibilityResources";
  1097. path = AccessibilityResources.bundle;
  1098. remoteRef = 3862FEAA2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1099. sourceTree = BUILT_PRODUCTS_DIR;
  1100. };
  1101. 3862FEAD2668D3C90097D3A3 /* React-CoreModules */ = {
  1102. isa = PBXReferenceProxy;
  1103. fileType = archive.ar;
  1104. name = "React-CoreModules";
  1105. path = "libReact-CoreModules.a";
  1106. remoteRef = 3862FEAC2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1107. sourceTree = BUILT_PRODUCTS_DIR;
  1108. };
  1109. 3862FEAF2668D3C90097D3A3 /* React-cxxreact */ = {
  1110. isa = PBXReferenceProxy;
  1111. fileType = archive.ar;
  1112. name = "React-cxxreact";
  1113. path = "libReact-cxxreact.a";
  1114. remoteRef = 3862FEAE2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1115. sourceTree = BUILT_PRODUCTS_DIR;
  1116. };
  1117. 3862FEB12668D3C90097D3A3 /* React-jsi */ = {
  1118. isa = PBXReferenceProxy;
  1119. fileType = archive.ar;
  1120. name = "React-jsi";
  1121. path = "libReact-jsi.a";
  1122. remoteRef = 3862FEB02668D3C90097D3A3 /* PBXContainerItemProxy */;
  1123. sourceTree = BUILT_PRODUCTS_DIR;
  1124. };
  1125. 3862FEB32668D3C90097D3A3 /* React-jsiexecutor */ = {
  1126. isa = PBXReferenceProxy;
  1127. fileType = archive.ar;
  1128. name = "React-jsiexecutor";
  1129. path = "libReact-jsiexecutor.a";
  1130. remoteRef = 3862FEB22668D3C90097D3A3 /* PBXContainerItemProxy */;
  1131. sourceTree = BUILT_PRODUCTS_DIR;
  1132. };
  1133. 3862FEB52668D3C90097D3A3 /* React-jsinspector */ = {
  1134. isa = PBXReferenceProxy;
  1135. fileType = archive.ar;
  1136. name = "React-jsinspector";
  1137. path = "libReact-jsinspector.a";
  1138. remoteRef = 3862FEB42668D3C90097D3A3 /* PBXContainerItemProxy */;
  1139. sourceTree = BUILT_PRODUCTS_DIR;
  1140. };
  1141. 3862FEB72668D3C90097D3A3 /* react-native-camera */ = {
  1142. isa = PBXReferenceProxy;
  1143. fileType = archive.ar;
  1144. name = "react-native-camera";
  1145. path = "libreact-native-camera.a";
  1146. remoteRef = 3862FEB62668D3C90097D3A3 /* PBXContainerItemProxy */;
  1147. sourceTree = BUILT_PRODUCTS_DIR;
  1148. };
  1149. 3862FEB92668D3C90097D3A3 /* react-native-cameraroll */ = {
  1150. isa = PBXReferenceProxy;
  1151. fileType = archive.ar;
  1152. name = "react-native-cameraroll";
  1153. path = "libreact-native-cameraroll.a";
  1154. remoteRef = 3862FEB82668D3C90097D3A3 /* PBXContainerItemProxy */;
  1155. sourceTree = BUILT_PRODUCTS_DIR;
  1156. };
  1157. 3862FEBB2668D3C90097D3A3 /* react-native-geolocation */ = {
  1158. isa = PBXReferenceProxy;
  1159. fileType = archive.ar;
  1160. name = "react-native-geolocation";
  1161. path = "libreact-native-geolocation.a";
  1162. remoteRef = 3862FEBA2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1163. sourceTree = BUILT_PRODUCTS_DIR;
  1164. };
  1165. 3862FEBD2668D3C90097D3A3 /* react-native-maps */ = {
  1166. isa = PBXReferenceProxy;
  1167. fileType = archive.ar;
  1168. name = "react-native-maps";
  1169. path = "libreact-native-maps.a";
  1170. remoteRef = 3862FEBC2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1171. sourceTree = BUILT_PRODUCTS_DIR;
  1172. };
  1173. 3862FEBF2668D3C90097D3A3 /* react-native-safe-area-context */ = {
  1174. isa = PBXReferenceProxy;
  1175. fileType = archive.ar;
  1176. name = "react-native-safe-area-context";
  1177. path = "libreact-native-safe-area-context.a";
  1178. remoteRef = 3862FEBE2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1179. sourceTree = BUILT_PRODUCTS_DIR;
  1180. };
  1181. 3862FEC12668D3C90097D3A3 /* react-native-view-shot */ = {
  1182. isa = PBXReferenceProxy;
  1183. fileType = archive.ar;
  1184. name = "react-native-view-shot";
  1185. path = "libreact-native-view-shot.a";
  1186. remoteRef = 3862FEC02668D3C90097D3A3 /* PBXContainerItemProxy */;
  1187. sourceTree = BUILT_PRODUCTS_DIR;
  1188. };
  1189. 3862FEC32668D3C90097D3A3 /* React-perflogger */ = {
  1190. isa = PBXReferenceProxy;
  1191. fileType = archive.ar;
  1192. name = "React-perflogger";
  1193. path = "libReact-perflogger.a";
  1194. remoteRef = 3862FEC22668D3C90097D3A3 /* PBXContainerItemProxy */;
  1195. sourceTree = BUILT_PRODUCTS_DIR;
  1196. };
  1197. 3862FEC52668D3C90097D3A3 /* React-RCTAnimation */ = {
  1198. isa = PBXReferenceProxy;
  1199. fileType = archive.ar;
  1200. name = "React-RCTAnimation";
  1201. path = "libReact-RCTAnimation.a";
  1202. remoteRef = 3862FEC42668D3C90097D3A3 /* PBXContainerItemProxy */;
  1203. sourceTree = BUILT_PRODUCTS_DIR;
  1204. };
  1205. 3862FEC72668D3C90097D3A3 /* React-RCTBlob */ = {
  1206. isa = PBXReferenceProxy;
  1207. fileType = archive.ar;
  1208. name = "React-RCTBlob";
  1209. path = "libReact-RCTBlob.a";
  1210. remoteRef = 3862FEC62668D3C90097D3A3 /* PBXContainerItemProxy */;
  1211. sourceTree = BUILT_PRODUCTS_DIR;
  1212. };
  1213. 3862FEC92668D3C90097D3A3 /* React-RCTImage */ = {
  1214. isa = PBXReferenceProxy;
  1215. fileType = archive.ar;
  1216. name = "React-RCTImage";
  1217. path = "libReact-RCTImage.a";
  1218. remoteRef = 3862FEC82668D3C90097D3A3 /* PBXContainerItemProxy */;
  1219. sourceTree = BUILT_PRODUCTS_DIR;
  1220. };
  1221. 3862FECB2668D3C90097D3A3 /* React-RCTLinking */ = {
  1222. isa = PBXReferenceProxy;
  1223. fileType = archive.ar;
  1224. name = "React-RCTLinking";
  1225. path = "libReact-RCTLinking.a";
  1226. remoteRef = 3862FECA2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1227. sourceTree = BUILT_PRODUCTS_DIR;
  1228. };
  1229. 3862FECD2668D3C90097D3A3 /* React-RCTNetwork */ = {
  1230. isa = PBXReferenceProxy;
  1231. fileType = archive.ar;
  1232. name = "React-RCTNetwork";
  1233. path = "libReact-RCTNetwork.a";
  1234. remoteRef = 3862FECC2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1235. sourceTree = BUILT_PRODUCTS_DIR;
  1236. };
  1237. 3862FECF2668D3C90097D3A3 /* React-RCTSettings */ = {
  1238. isa = PBXReferenceProxy;
  1239. fileType = archive.ar;
  1240. name = "React-RCTSettings";
  1241. path = "libReact-RCTSettings.a";
  1242. remoteRef = 3862FECE2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1243. sourceTree = BUILT_PRODUCTS_DIR;
  1244. };
  1245. 3862FED12668D3C90097D3A3 /* React-RCTText */ = {
  1246. isa = PBXReferenceProxy;
  1247. fileType = archive.ar;
  1248. name = "React-RCTText";
  1249. path = "libReact-RCTText.a";
  1250. remoteRef = 3862FED02668D3C90097D3A3 /* PBXContainerItemProxy */;
  1251. sourceTree = BUILT_PRODUCTS_DIR;
  1252. };
  1253. 3862FED32668D3C90097D3A3 /* React-RCTVibration */ = {
  1254. isa = PBXReferenceProxy;
  1255. fileType = archive.ar;
  1256. name = "React-RCTVibration";
  1257. path = "libReact-RCTVibration.a";
  1258. remoteRef = 3862FED22668D3C90097D3A3 /* PBXContainerItemProxy */;
  1259. sourceTree = BUILT_PRODUCTS_DIR;
  1260. };
  1261. 3862FED52668D3C90097D3A3 /* ReactCommon */ = {
  1262. isa = PBXReferenceProxy;
  1263. fileType = archive.ar;
  1264. name = ReactCommon;
  1265. path = libReactCommon.a;
  1266. remoteRef = 3862FED42668D3C90097D3A3 /* PBXContainerItemProxy */;
  1267. sourceTree = BUILT_PRODUCTS_DIR;
  1268. };
  1269. 3862FED72668D3C90097D3A3 /* ReactNativeART */ = {
  1270. isa = PBXReferenceProxy;
  1271. fileType = archive.ar;
  1272. name = ReactNativeART;
  1273. path = libReactNativeART.a;
  1274. remoteRef = 3862FED62668D3C90097D3A3 /* PBXContainerItemProxy */;
  1275. sourceTree = BUILT_PRODUCTS_DIR;
  1276. };
  1277. 3862FED92668D3C90097D3A3 /* RNCAsyncStorage */ = {
  1278. isa = PBXReferenceProxy;
  1279. fileType = archive.ar;
  1280. name = RNCAsyncStorage;
  1281. path = libRNCAsyncStorage.a;
  1282. remoteRef = 3862FED82668D3C90097D3A3 /* PBXContainerItemProxy */;
  1283. sourceTree = BUILT_PRODUCTS_DIR;
  1284. };
  1285. 3862FEDB2668D3C90097D3A3 /* RNCCheckbox */ = {
  1286. isa = PBXReferenceProxy;
  1287. fileType = archive.ar;
  1288. name = RNCCheckbox;
  1289. path = libRNCCheckbox.a;
  1290. remoteRef = 3862FEDA2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1291. sourceTree = BUILT_PRODUCTS_DIR;
  1292. };
  1293. 3862FEDD2668D3C90097D3A3 /* RNCMaskedView */ = {
  1294. isa = PBXReferenceProxy;
  1295. fileType = archive.ar;
  1296. name = RNCMaskedView;
  1297. path = libRNCMaskedView.a;
  1298. remoteRef = 3862FEDC2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1299. sourceTree = BUILT_PRODUCTS_DIR;
  1300. };
  1301. 3862FEE12668D3C90097D3A3 /* RNCPushNotificationIOS */ = {
  1302. isa = PBXReferenceProxy;
  1303. fileType = archive.ar;
  1304. name = RNCPushNotificationIOS;
  1305. path = libRNCPushNotificationIOS.a;
  1306. remoteRef = 3862FEE02668D3C90097D3A3 /* PBXContainerItemProxy */;
  1307. sourceTree = BUILT_PRODUCTS_DIR;
  1308. };
  1309. 3862FEE32668D3C90097D3A3 /* RNGestureHandler */ = {
  1310. isa = PBXReferenceProxy;
  1311. fileType = archive.ar;
  1312. name = RNGestureHandler;
  1313. path = libRNGestureHandler.a;
  1314. remoteRef = 3862FEE22668D3C90097D3A3 /* PBXContainerItemProxy */;
  1315. sourceTree = BUILT_PRODUCTS_DIR;
  1316. };
  1317. 3862FEE52668D3C90097D3A3 /* RNImageCropPicker */ = {
  1318. isa = PBXReferenceProxy;
  1319. fileType = archive.ar;
  1320. name = RNImageCropPicker;
  1321. path = libRNImageCropPicker.a;
  1322. remoteRef = 3862FEE42668D3C90097D3A3 /* PBXContainerItemProxy */;
  1323. sourceTree = BUILT_PRODUCTS_DIR;
  1324. };
  1325. 3862FEE72668D3C90097D3A3 /* RNImageCropPicker-QBImagePicker */ = {
  1326. isa = PBXReferenceProxy;
  1327. fileType = wrapper.cfbundle;
  1328. name = "RNImageCropPicker-QBImagePicker";
  1329. path = QBImagePicker.bundle;
  1330. remoteRef = 3862FEE62668D3C90097D3A3 /* PBXContainerItemProxy */;
  1331. sourceTree = BUILT_PRODUCTS_DIR;
  1332. };
  1333. 3862FEE92668D3C90097D3A3 /* RNPermissions */ = {
  1334. isa = PBXReferenceProxy;
  1335. fileType = archive.ar;
  1336. name = RNPermissions;
  1337. path = libRNPermissions.a;
  1338. remoteRef = 3862FEE82668D3C90097D3A3 /* PBXContainerItemProxy */;
  1339. sourceTree = BUILT_PRODUCTS_DIR;
  1340. };
  1341. 3862FEEB2668D3C90097D3A3 /* RNReanimated */ = {
  1342. isa = PBXReferenceProxy;
  1343. fileType = archive.ar;
  1344. name = RNReanimated;
  1345. path = libRNReanimated.a;
  1346. remoteRef = 3862FEEA2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1347. sourceTree = BUILT_PRODUCTS_DIR;
  1348. };
  1349. 3862FEED2668D3C90097D3A3 /* RNScreens */ = {
  1350. isa = PBXReferenceProxy;
  1351. fileType = archive.ar;
  1352. name = RNScreens;
  1353. path = libRNScreens.a;
  1354. remoteRef = 3862FEEC2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1355. sourceTree = BUILT_PRODUCTS_DIR;
  1356. };
  1357. 3862FEEF2668D3C90097D3A3 /* RNShare */ = {
  1358. isa = PBXReferenceProxy;
  1359. fileType = archive.ar;
  1360. name = RNShare;
  1361. path = libRNShare.a;
  1362. remoteRef = 3862FEEE2668D3C90097D3A3 /* PBXContainerItemProxy */;
  1363. sourceTree = BUILT_PRODUCTS_DIR;
  1364. };
  1365. 3862FEF12668D3C90097D3A3 /* RNSVG */ = {
  1366. isa = PBXReferenceProxy;
  1367. fileType = archive.ar;
  1368. name = RNSVG;
  1369. path = libRNSVG.a;
  1370. remoteRef = 3862FEF02668D3C90097D3A3 /* PBXContainerItemProxy */;
  1371. sourceTree = BUILT_PRODUCTS_DIR;
  1372. };
  1373. 3862FEF52668D3C90097D3A3 /* TOCropViewController */ = {
  1374. isa = PBXReferenceProxy;
  1375. fileType = archive.ar;
  1376. name = TOCropViewController;
  1377. path = libTOCropViewController.a;
  1378. remoteRef = 3862FEF42668D3C90097D3A3 /* PBXContainerItemProxy */;
  1379. sourceTree = BUILT_PRODUCTS_DIR;
  1380. };
  1381. 3862FEF72668D3C90097D3A3 /* TOCropViewController-TOCropViewControllerBundle */ = {
  1382. isa = PBXReferenceProxy;
  1383. fileType = wrapper.cfbundle;
  1384. name = "TOCropViewController-TOCropViewControllerBundle";
  1385. path = TOCropViewControllerBundle.bundle;
  1386. remoteRef = 3862FEF62668D3C90097D3A3 /* PBXContainerItemProxy */;
  1387. sourceTree = BUILT_PRODUCTS_DIR;
  1388. };
  1389. 3862FEF92668D3C90097D3A3 /* Yoga */ = {
  1390. isa = PBXReferenceProxy;
  1391. fileType = archive.ar;
  1392. name = Yoga;
  1393. path = libYoga.a;
  1394. remoteRef = 3862FEF82668D3C90097D3A3 /* PBXContainerItemProxy */;
  1395. sourceTree = BUILT_PRODUCTS_DIR;
  1396. };
  1397. 3869FB8A299A2F0000B54A73 /* Base64 */ = {
  1398. isa = PBXReferenceProxy;
  1399. fileType = archive.ar;
  1400. name = Base64;
  1401. path = libBase64.a;
  1402. remoteRef = 3869FB89299A2F0000B54A73 /* PBXContainerItemProxy */;
  1403. sourceTree = BUILT_PRODUCTS_DIR;
  1404. };
  1405. 3869FB8C299A2F0000B54A73 /* CodePush */ = {
  1406. isa = PBXReferenceProxy;
  1407. fileType = archive.ar;
  1408. name = CodePush;
  1409. path = libCodePush.a;
  1410. remoteRef = 3869FB8B299A2F0000B54A73 /* PBXContainerItemProxy */;
  1411. sourceTree = BUILT_PRODUCTS_DIR;
  1412. };
  1413. 3869FB8E299A2F0000B54A73 /* JWT */ = {
  1414. isa = PBXReferenceProxy;
  1415. fileType = archive.ar;
  1416. name = JWT;
  1417. path = libJWT.a;
  1418. remoteRef = 3869FB8D299A2F0000B54A73 /* PBXContainerItemProxy */;
  1419. sourceTree = BUILT_PRODUCTS_DIR;
  1420. };
  1421. 3869FB90299A2F0000B54A73 /* SSZipArchive */ = {
  1422. isa = PBXReferenceProxy;
  1423. fileType = archive.ar;
  1424. name = SSZipArchive;
  1425. path = libSSZipArchive.a;
  1426. remoteRef = 3869FB8F299A2F0000B54A73 /* PBXContainerItemProxy */;
  1427. sourceTree = BUILT_PRODUCTS_DIR;
  1428. };
  1429. 3869FC45299BBAA500B54A73 /* appcenter-analytics */ = {
  1430. isa = PBXReferenceProxy;
  1431. fileType = archive.ar;
  1432. name = "appcenter-analytics";
  1433. path = "libappcenter-analytics.a";
  1434. remoteRef = 3869FC44299BBAA500B54A73 /* PBXContainerItemProxy */;
  1435. sourceTree = BUILT_PRODUCTS_DIR;
  1436. };
  1437. 3869FC47299BBAA500B54A73 /* appcenter-core */ = {
  1438. isa = PBXReferenceProxy;
  1439. fileType = archive.ar;
  1440. name = "appcenter-core";
  1441. path = "libappcenter-core.a";
  1442. remoteRef = 3869FC46299BBAA500B54A73 /* PBXContainerItemProxy */;
  1443. sourceTree = BUILT_PRODUCTS_DIR;
  1444. };
  1445. 3869FC49299BBAA500B54A73 /* appcenter-crashes */ = {
  1446. isa = PBXReferenceProxy;
  1447. fileType = archive.ar;
  1448. name = "appcenter-crashes";
  1449. path = "libappcenter-crashes.a";
  1450. remoteRef = 3869FC48299BBAA500B54A73 /* PBXContainerItemProxy */;
  1451. sourceTree = BUILT_PRODUCTS_DIR;
  1452. };
  1453. 38C6DA652668E46D00D889BC /* Google-Maps-iOS-Utils */ = {
  1454. isa = PBXReferenceProxy;
  1455. fileType = archive.ar;
  1456. name = "Google-Maps-iOS-Utils";
  1457. path = "libGoogle-Maps-iOS-Utils.a";
  1458. remoteRef = 38C6DA642668E46D00D889BC /* PBXContainerItemProxy */;
  1459. sourceTree = BUILT_PRODUCTS_DIR;
  1460. };
  1461. 38C6DA672668E46D00D889BC /* react-native-google-maps */ = {
  1462. isa = PBXReferenceProxy;
  1463. fileType = archive.ar;
  1464. name = "react-native-google-maps";
  1465. path = "libreact-native-google-maps.a";
  1466. remoteRef = 38C6DA662668E46D00D889BC /* PBXContainerItemProxy */;
  1467. sourceTree = BUILT_PRODUCTS_DIR;
  1468. };
  1469. 38EDDA1526830E380093F908 /* react-native-webview */ = {
  1470. isa = PBXReferenceProxy;
  1471. fileType = archive.ar;
  1472. name = "react-native-webview";
  1473. path = "libreact-native-webview.a";
  1474. remoteRef = 38EDDA1426830E380093F908 /* PBXContainerItemProxy */;
  1475. sourceTree = BUILT_PRODUCTS_DIR;
  1476. };
  1477. 732F2CF7296FA69A00A90ECF /* FirebaseCoreInternal */ = {
  1478. isa = PBXReferenceProxy;
  1479. fileType = archive.ar;
  1480. name = FirebaseCoreInternal;
  1481. path = libFirebaseCoreInternal.a;
  1482. remoteRef = 732F2CF6296FA69A00A90ECF /* PBXContainerItemProxy */;
  1483. sourceTree = BUILT_PRODUCTS_DIR;
  1484. };
  1485. /* End PBXReferenceProxy section */
  1486. /* Begin PBXResourcesBuildPhase section */
  1487. 00E356EC1AD99517003FC87E /* Resources */ = {
  1488. isa = PBXResourcesBuildPhase;
  1489. buildActionMask = 2147483647;
  1490. files = (
  1491. );
  1492. runOnlyForDeploymentPostprocessing = 0;
  1493. };
  1494. 13B07F8E1A680F5B00A75B9A /* Resources */ = {
  1495. isa = PBXResourcesBuildPhase;
  1496. buildActionMask = 2147483647;
  1497. files = (
  1498. 38066FC426DE16BF00271DFA /* main.jsbundle in Resources */,
  1499. 38066FC526DE16BF00271DFA /* assets in Resources */,
  1500. 3806702826DF20DA00271DFA /* GoogleService-Info.plist in Resources */,
  1501. 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
  1502. 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
  1503. 3869FBE8299B96AF00B54A73 /* AppCenter-Config.plist in Resources */,
  1504. );
  1505. runOnlyForDeploymentPostprocessing = 0;
  1506. };
  1507. /* End PBXResourcesBuildPhase section */
  1508. /* Begin PBXShellScriptBuildPhase section */
  1509. 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
  1510. isa = PBXShellScriptBuildPhase;
  1511. buildActionMask = 2147483647;
  1512. files = (
  1513. );
  1514. inputPaths = (
  1515. );
  1516. name = "Bundle React Native code and images";
  1517. outputPaths = (
  1518. );
  1519. runOnlyForDeploymentPostprocessing = 0;
  1520. shellPath = /bin/sh;
  1521. shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
  1522. };
  1523. 299A58B4788798FED5F19B10 /* [CP] Copy Pods Resources */ = {
  1524. isa = PBXShellScriptBuildPhase;
  1525. buildActionMask = 2147483647;
  1526. files = (
  1527. );
  1528. inputFileListPaths = (
  1529. "${PODS_ROOT}/Target Support Files/Pods-JuicePlus/Pods-JuicePlus-resources-${CONFIGURATION}-input-files.xcfilelist",
  1530. );
  1531. name = "[CP] Copy Pods Resources";
  1532. outputFileListPaths = (
  1533. "${PODS_ROOT}/Target Support Files/Pods-JuicePlus/Pods-JuicePlus-resources-${CONFIGURATION}-output-files.xcfilelist",
  1534. );
  1535. runOnlyForDeploymentPostprocessing = 0;
  1536. shellPath = /bin/sh;
  1537. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-JuicePlus/Pods-JuicePlus-resources.sh\"\n";
  1538. showEnvVarsInLog = 0;
  1539. };
  1540. 91782402D5526C1FE269DCEB /* [CP] Check Pods Manifest.lock */ = {
  1541. isa = PBXShellScriptBuildPhase;
  1542. buildActionMask = 2147483647;
  1543. files = (
  1544. );
  1545. inputFileListPaths = (
  1546. );
  1547. inputPaths = (
  1548. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1549. "${PODS_ROOT}/Manifest.lock",
  1550. );
  1551. name = "[CP] Check Pods Manifest.lock";
  1552. outputFileListPaths = (
  1553. );
  1554. outputPaths = (
  1555. "$(DERIVED_FILE_DIR)/Pods-JuicePlus-JuicePlusTests-checkManifestLockResult.txt",
  1556. );
  1557. runOnlyForDeploymentPostprocessing = 0;
  1558. shellPath = /bin/sh;
  1559. 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";
  1560. showEnvVarsInLog = 0;
  1561. };
  1562. E8315E9C8ADE07ADFC46E267 /* [CP] Copy Pods Resources */ = {
  1563. isa = PBXShellScriptBuildPhase;
  1564. buildActionMask = 2147483647;
  1565. files = (
  1566. );
  1567. inputFileListPaths = (
  1568. "${PODS_ROOT}/Target Support Files/Pods-JuicePlus-JuicePlusTests/Pods-JuicePlus-JuicePlusTests-resources-${CONFIGURATION}-input-files.xcfilelist",
  1569. );
  1570. name = "[CP] Copy Pods Resources";
  1571. outputFileListPaths = (
  1572. "${PODS_ROOT}/Target Support Files/Pods-JuicePlus-JuicePlusTests/Pods-JuicePlus-JuicePlusTests-resources-${CONFIGURATION}-output-files.xcfilelist",
  1573. );
  1574. runOnlyForDeploymentPostprocessing = 0;
  1575. shellPath = /bin/sh;
  1576. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-JuicePlus-JuicePlusTests/Pods-JuicePlus-JuicePlusTests-resources.sh\"\n";
  1577. showEnvVarsInLog = 0;
  1578. };
  1579. ECF1D1690D900A2BFDCEE6DB /* [CP] Check Pods Manifest.lock */ = {
  1580. isa = PBXShellScriptBuildPhase;
  1581. buildActionMask = 2147483647;
  1582. files = (
  1583. );
  1584. inputFileListPaths = (
  1585. );
  1586. inputPaths = (
  1587. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1588. "${PODS_ROOT}/Manifest.lock",
  1589. );
  1590. name = "[CP] Check Pods Manifest.lock";
  1591. outputFileListPaths = (
  1592. );
  1593. outputPaths = (
  1594. "$(DERIVED_FILE_DIR)/Pods-JuicePlus-checkManifestLockResult.txt",
  1595. );
  1596. runOnlyForDeploymentPostprocessing = 0;
  1597. shellPath = /bin/sh;
  1598. 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";
  1599. showEnvVarsInLog = 0;
  1600. };
  1601. FD10A7F022414F080027D42C /* Start Packager */ = {
  1602. isa = PBXShellScriptBuildPhase;
  1603. buildActionMask = 2147483647;
  1604. files = (
  1605. );
  1606. inputFileListPaths = (
  1607. );
  1608. inputPaths = (
  1609. );
  1610. name = "Start Packager";
  1611. outputFileListPaths = (
  1612. );
  1613. outputPaths = (
  1614. );
  1615. runOnlyForDeploymentPostprocessing = 0;
  1616. shellPath = /bin/sh;
  1617. 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";
  1618. showEnvVarsInLog = 0;
  1619. };
  1620. /* End PBXShellScriptBuildPhase section */
  1621. /* Begin PBXSourcesBuildPhase section */
  1622. 00E356EA1AD99517003FC87E /* Sources */ = {
  1623. isa = PBXSourcesBuildPhase;
  1624. buildActionMask = 2147483647;
  1625. files = (
  1626. 00E356F31AD99517003FC87E /* JuicePlusTests.m in Sources */,
  1627. );
  1628. runOnlyForDeploymentPostprocessing = 0;
  1629. };
  1630. 13B07F871A680F5B00A75B9A /* Sources */ = {
  1631. isa = PBXSourcesBuildPhase;
  1632. buildActionMask = 2147483647;
  1633. files = (
  1634. 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
  1635. 13B07FC11A68108700A75B9A /* main.m in Sources */,
  1636. );
  1637. runOnlyForDeploymentPostprocessing = 0;
  1638. };
  1639. /* End PBXSourcesBuildPhase section */
  1640. /* Begin PBXTargetDependency section */
  1641. 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
  1642. isa = PBXTargetDependency;
  1643. target = 13B07F861A680F5B00A75B9A /* JuicePlus */;
  1644. targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
  1645. };
  1646. /* End PBXTargetDependency section */
  1647. /* Begin XCBuildConfiguration section */
  1648. 00E356F61AD99517003FC87E /* Debug */ = {
  1649. isa = XCBuildConfiguration;
  1650. baseConfigurationReference = 1EAF8AFB4DFFD2DC3F519A17 /* Pods-JuicePlus-JuicePlusTests.debug.xcconfig */;
  1651. buildSettings = {
  1652. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1653. BUNDLE_LOADER = "$(TEST_HOST)";
  1654. GCC_PREPROCESSOR_DEFINITIONS = (
  1655. "DEBUG=1",
  1656. "$(inherited)",
  1657. );
  1658. INFOPLIST_FILE = JuicePlusTests/Info.plist;
  1659. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  1660. LD_RUNPATH_SEARCH_PATHS = (
  1661. "$(inherited)",
  1662. "@executable_path/Frameworks",
  1663. "@loader_path/Frameworks",
  1664. );
  1665. OTHER_LDFLAGS = (
  1666. "-ObjC",
  1667. "-lc++",
  1668. "$(inherited)",
  1669. );
  1670. PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
  1671. PRODUCT_NAME = "$(TARGET_NAME)";
  1672. TARGETED_DEVICE_FAMILY = "1,2";
  1673. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/JuicePlus.app/JuicePlus";
  1674. };
  1675. name = Debug;
  1676. };
  1677. 00E356F71AD99517003FC87E /* Release */ = {
  1678. isa = XCBuildConfiguration;
  1679. baseConfigurationReference = FB8DBBF7218DB1714AEA17D3 /* Pods-JuicePlus-JuicePlusTests.release.xcconfig */;
  1680. buildSettings = {
  1681. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1682. BUNDLE_LOADER = "$(TEST_HOST)";
  1683. COPY_PHASE_STRIP = NO;
  1684. INFOPLIST_FILE = JuicePlusTests/Info.plist;
  1685. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  1686. LD_RUNPATH_SEARCH_PATHS = (
  1687. "$(inherited)",
  1688. "@executable_path/Frameworks",
  1689. "@loader_path/Frameworks",
  1690. );
  1691. OTHER_LDFLAGS = (
  1692. "-ObjC",
  1693. "-lc++",
  1694. "$(inherited)",
  1695. );
  1696. PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
  1697. PRODUCT_NAME = "$(TARGET_NAME)";
  1698. TARGETED_DEVICE_FAMILY = "1,2";
  1699. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/JuicePlus.app/JuicePlus";
  1700. };
  1701. name = Release;
  1702. };
  1703. 13B07F941A680F5B00A75B9A /* Debug */ = {
  1704. isa = XCBuildConfiguration;
  1705. baseConfigurationReference = B12059D6810CBCE332360003 /* Pods-JuicePlus.debug.xcconfig */;
  1706. buildSettings = {
  1707. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1708. CLANG_ENABLE_MODULES = YES;
  1709. CODE_SIGN_ENTITLEMENTS = JuicePlus/JuicePlus.entitlements;
  1710. CURRENT_PROJECT_VERSION = 90;
  1711. DEVELOPMENT_TEAM = TK7T9A6RQ2;
  1712. ENABLE_BITCODE = NO;
  1713. INFOPLIST_FILE = JuicePlus/Info.plist;
  1714. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  1715. LD_RUNPATH_SEARCH_PATHS = (
  1716. "$(inherited)",
  1717. "@executable_path/Frameworks",
  1718. );
  1719. MARKETING_VERSION = 2.2.3;
  1720. OTHER_LDFLAGS = (
  1721. "$(inherited)",
  1722. "-ObjC",
  1723. "-lc++",
  1724. );
  1725. PRODUCT_BUNDLE_IDENTIFIER = com.strides.chargeco;
  1726. PRODUCT_NAME = JuicePlus;
  1727. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  1728. SWIFT_VERSION = 5.0;
  1729. TARGETED_DEVICE_FAMILY = "1,2";
  1730. VERSIONING_SYSTEM = "apple-generic";
  1731. };
  1732. name = Debug;
  1733. };
  1734. 13B07F951A680F5B00A75B9A /* Release */ = {
  1735. isa = XCBuildConfiguration;
  1736. baseConfigurationReference = 0B4312F6F31A03C548D2D34E /* Pods-JuicePlus.release.xcconfig */;
  1737. buildSettings = {
  1738. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1739. CLANG_ENABLE_MODULES = YES;
  1740. CODE_SIGN_ENTITLEMENTS = JuicePlus/JuicePlus.entitlements;
  1741. CURRENT_PROJECT_VERSION = 90;
  1742. DEVELOPMENT_TEAM = TK7T9A6RQ2;
  1743. INFOPLIST_FILE = JuicePlus/Info.plist;
  1744. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  1745. LD_RUNPATH_SEARCH_PATHS = (
  1746. "$(inherited)",
  1747. "@executable_path/Frameworks",
  1748. );
  1749. MARKETING_VERSION = 2.2.3;
  1750. OTHER_LDFLAGS = (
  1751. "$(inherited)",
  1752. "-ObjC",
  1753. "-lc++",
  1754. );
  1755. PRODUCT_BUNDLE_IDENTIFIER = com.strides.chargeco;
  1756. PRODUCT_NAME = JuicePlus;
  1757. SWIFT_VERSION = 5.0;
  1758. TARGETED_DEVICE_FAMILY = "1,2";
  1759. VERSIONING_SYSTEM = "apple-generic";
  1760. };
  1761. name = Release;
  1762. };
  1763. 83CBBA201A601CBA00E9B192 /* Debug */ = {
  1764. isa = XCBuildConfiguration;
  1765. buildSettings = {
  1766. ALWAYS_SEARCH_USER_PATHS = NO;
  1767. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1768. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1769. CLANG_CXX_LIBRARY = "libc++";
  1770. CLANG_ENABLE_MODULES = YES;
  1771. CLANG_ENABLE_OBJC_ARC = YES;
  1772. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1773. CLANG_WARN_BOOL_CONVERSION = YES;
  1774. CLANG_WARN_COMMA = YES;
  1775. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1776. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1777. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1778. CLANG_WARN_EMPTY_BODY = YES;
  1779. CLANG_WARN_ENUM_CONVERSION = YES;
  1780. CLANG_WARN_INFINITE_RECURSION = YES;
  1781. CLANG_WARN_INT_CONVERSION = YES;
  1782. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1783. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1784. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1785. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1786. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1787. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1788. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1789. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1790. CLANG_WARN_UNREACHABLE_CODE = YES;
  1791. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1792. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1793. COPY_PHASE_STRIP = NO;
  1794. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1795. ENABLE_TESTABILITY = YES;
  1796. "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 i386";
  1797. GCC_C_LANGUAGE_STANDARD = gnu99;
  1798. GCC_DYNAMIC_NO_PIC = NO;
  1799. GCC_NO_COMMON_BLOCKS = YES;
  1800. GCC_OPTIMIZATION_LEVEL = 0;
  1801. GCC_PREPROCESSOR_DEFINITIONS = (
  1802. "DEBUG=1",
  1803. "$(inherited)",
  1804. );
  1805. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  1806. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1807. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1808. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1809. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1810. GCC_WARN_UNUSED_FUNCTION = YES;
  1811. GCC_WARN_UNUSED_VARIABLE = YES;
  1812. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  1813. LD_RUNPATH_SEARCH_PATHS = (
  1814. /usr/lib/swift,
  1815. "$(inherited)",
  1816. );
  1817. LIBRARY_SEARCH_PATHS = (
  1818. "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
  1819. "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
  1820. "\"$(inherited)\"",
  1821. );
  1822. MTL_ENABLE_DEBUG_INFO = YES;
  1823. ONLY_ACTIVE_ARCH = YES;
  1824. SDKROOT = iphoneos;
  1825. };
  1826. name = Debug;
  1827. };
  1828. 83CBBA211A601CBA00E9B192 /* Release */ = {
  1829. isa = XCBuildConfiguration;
  1830. buildSettings = {
  1831. ALWAYS_SEARCH_USER_PATHS = NO;
  1832. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1833. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1834. CLANG_CXX_LIBRARY = "libc++";
  1835. CLANG_ENABLE_MODULES = YES;
  1836. CLANG_ENABLE_OBJC_ARC = YES;
  1837. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1838. CLANG_WARN_BOOL_CONVERSION = YES;
  1839. CLANG_WARN_COMMA = YES;
  1840. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1841. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1842. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1843. CLANG_WARN_EMPTY_BODY = YES;
  1844. CLANG_WARN_ENUM_CONVERSION = YES;
  1845. CLANG_WARN_INFINITE_RECURSION = YES;
  1846. CLANG_WARN_INT_CONVERSION = YES;
  1847. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1848. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1849. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1850. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1851. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1852. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1853. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1854. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1855. CLANG_WARN_UNREACHABLE_CODE = YES;
  1856. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1857. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1858. COPY_PHASE_STRIP = YES;
  1859. ENABLE_NS_ASSERTIONS = NO;
  1860. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1861. "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 i386";
  1862. GCC_C_LANGUAGE_STANDARD = gnu99;
  1863. GCC_NO_COMMON_BLOCKS = YES;
  1864. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1865. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1866. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1867. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1868. GCC_WARN_UNUSED_FUNCTION = YES;
  1869. GCC_WARN_UNUSED_VARIABLE = YES;
  1870. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  1871. LD_RUNPATH_SEARCH_PATHS = (
  1872. /usr/lib/swift,
  1873. "$(inherited)",
  1874. );
  1875. LIBRARY_SEARCH_PATHS = (
  1876. "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
  1877. "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
  1878. "\"$(inherited)\"",
  1879. );
  1880. MTL_ENABLE_DEBUG_INFO = NO;
  1881. SDKROOT = iphoneos;
  1882. VALIDATE_PRODUCT = YES;
  1883. };
  1884. name = Release;
  1885. };
  1886. /* End XCBuildConfiguration section */
  1887. /* Begin XCConfigurationList section */
  1888. 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "JuicePlusTests" */ = {
  1889. isa = XCConfigurationList;
  1890. buildConfigurations = (
  1891. 00E356F61AD99517003FC87E /* Debug */,
  1892. 00E356F71AD99517003FC87E /* Release */,
  1893. );
  1894. defaultConfigurationIsVisible = 0;
  1895. defaultConfigurationName = Release;
  1896. };
  1897. 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "JuicePlus" */ = {
  1898. isa = XCConfigurationList;
  1899. buildConfigurations = (
  1900. 13B07F941A680F5B00A75B9A /* Debug */,
  1901. 13B07F951A680F5B00A75B9A /* Release */,
  1902. );
  1903. defaultConfigurationIsVisible = 0;
  1904. defaultConfigurationName = Release;
  1905. };
  1906. 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "JuicePlus" */ = {
  1907. isa = XCConfigurationList;
  1908. buildConfigurations = (
  1909. 83CBBA201A601CBA00E9B192 /* Debug */,
  1910. 83CBBA211A601CBA00E9B192 /* Release */,
  1911. );
  1912. defaultConfigurationIsVisible = 0;
  1913. defaultConfigurationName = Release;
  1914. };
  1915. /* End XCConfigurationList section */
  1916. };
  1917. rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
  1918. }