| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 54;
- objects = {
- /* Begin PBXBuildFile section */
- 00E356F31AD99517003FC87E /* JuicePlusTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* JuicePlusTests.m */; };
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
- 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
- 38066FC426DE16BF00271DFA /* main.jsbundle in Resources */ = {isa = PBXBuildFile; fileRef = 38066FC226DE16BF00271DFA /* main.jsbundle */; };
- 38066FC526DE16BF00271DFA /* assets in Resources */ = {isa = PBXBuildFile; fileRef = 38066FC326DE16BF00271DFA /* assets */; };
- 3806702826DF20DA00271DFA /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 38066FC926DF20DA00271DFA /* GoogleService-Info.plist */; };
- 3869FBE8299B96AF00B54A73 /* AppCenter-Config.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3869FBE7299B96AE00B54A73 /* AppCenter-Config.plist */; };
- 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
- A5707C5E2B88048AC01CD052 /* libPods-JuicePlus.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB9107F120992435E6CC55BB /* libPods-JuicePlus.a */; };
- A8CB5874BD86036F4E6DF87A /* libPods-JuicePlus-JuicePlusTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AB9D2CD35A198422C90BC492 /* libPods-JuicePlus-JuicePlusTests.a */; };
- /* End PBXBuildFile section */
- /* Begin PBXContainerItemProxy section */
- 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
- remoteInfo = JuicePlus;
- };
- 3806701826DF20DA00271DFA /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = E2B63D462DB7F827C4B11FD51E4F8E2D;
- remoteInfo = FirebaseCore;
- };
- 3806701A26DF20DA00271DFA /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 8CC9178C366942FD6FF6A115604EAD58;
- remoteInfo = FirebaseCoreDiagnostics;
- };
- 3806701C26DF20DA00271DFA /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 13C8C8B254851998F9289F71229B28A2;
- remoteInfo = FirebaseInstallations;
- };
- 3806701E26DF20DA00271DFA /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 5B654B4B042BA7DC93766943A643E42B;
- remoteInfo = FirebaseMessaging;
- };
- 3806702026DF20DA00271DFA /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 856B5CD56F194FAD26EA91620B66D614;
- remoteInfo = GoogleDataTransport;
- };
- 3806702226DF20DA00271DFA /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = B43874C6CBB50E7134FBEC24BABFE14F;
- remoteInfo = GoogleUtilities;
- };
- 3806702426DF20DA00271DFA /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 06FC5C9CF96D60C50FCD47D339C91951;
- remoteInfo = nanopb;
- };
- 3806702626DF20DA00271DFA /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3347A1AB6546F0A3977529B8F199DC41;
- remoteInfo = PromisesObjC;
- };
- 382FB1E6272F967F007EE9BB /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = E0FE6533198104C97DB047DD5CD8AC67;
- remoteInfo = RNDeviceInfo;
- };
- 385053C42970039F0061999F /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3F282D213AB9D1ECA1228C986CC9D2BA;
- remoteInfo = BEMCheckBox;
- };
- 3860E72E266E248E0059CC98 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = F055F4CFF4E851E1C9826ECFEF3F3FFF;
- remoteInfo = "Permission-AppTrackingTransparency";
- };
- 3860E730266E248E0059CC98 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 437C6E620004E36CC6D5E091AFCE2237;
- remoteInfo = "Permission-LocationAccuracy";
- };
- 3860E732266E248E0059CC98 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 11C24EA25460DA1CF59AF70D747DA5EF;
- remoteInfo = "Permission-LocationAlways";
- };
- 3860E734266E248E0059CC98 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = A710801FF4681D52F3948DD170856943;
- remoteInfo = "Permission-LocationWhenInUse";
- };
- 3860E738266E248E0059CC98 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = A4BE7DA128B053FAFE0199F8A181749E;
- remoteInfo = "Permission-Microphone";
- };
- 3860E73C266E248E0059CC98 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = B3DD4468EF372D977659FA36E28EFD79;
- remoteInfo = "Permission-Notifications";
- };
- 3860E73E266E248E0059CC98 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 440764F00D9573560E387E1B72397B42;
- remoteInfo = "Permission-PhotoLibrary";
- };
- 3860E740266E248E0059CC98 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = B7CB361A6143A04F231642DF2A3CB63F;
- remoteInfo = "Permission-PhotoLibraryAddOnly";
- };
- 3860E742266E248E0059CC98 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 8998273719FDD789E6F9C7541AFD0B33;
- remoteInfo = RNVectorIcons;
- };
- 3862FE982668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 6FFB7B2992BB53405E6B771A5BA1E97D;
- remoteInfo = DoubleConversion;
- };
- 3862FE9A2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = ABFEEA82A6C346B22843FBE0B0582182;
- remoteInfo = FBReactNativeSpec;
- };
- 3862FE9C2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3CA7A9404CCDD6BA22C97F8348CE3209;
- remoteInfo = glog;
- };
- 3862FE9E2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = BB1D7880F01CE5024CE360F0D72A6DE3;
- remoteInfo = "Permission-Camera";
- };
- 3862FEA02668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3364DB8FF1D99BD1B5B979899EF22ACA;
- remoteInfo = "Pods-JuicePlus";
- };
- 3862FEA22668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 6FA676FEECD8315301CB3942982C4BCD;
- remoteInfo = "Pods-JuicePlus-JuicePlusTests";
- };
- 3862FEA42668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 1936453FF2A7E3A13063C4917C4D5598;
- remoteInfo = "RCT-Folly";
- };
- 3862FEA62668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = F958876A082BF810B342435CE3FB5AF6;
- remoteInfo = RCTTypeSafety;
- };
- 3862FEA82668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = BD71E2539823621820F84384064C253A;
- remoteInfo = "React-Core";
- };
- 3862FEAA2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = FE6D792B6328AAF68E46924D7F466631;
- remoteInfo = "React-Core-AccessibilityResources";
- };
- 3862FEAC2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 6771D231F4C8C5976470A369C474B32E;
- remoteInfo = "React-CoreModules";
- };
- 3862FEAE2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 37592FDAD45752511010F4B06AC57355;
- remoteInfo = "React-cxxreact";
- };
- 3862FEB02668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = D9F334F2E90E3EE462FC4192AF5C03BD;
- remoteInfo = "React-jsi";
- };
- 3862FEB22668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = F2E7C88DFCD460A4B46B913ADEB8A641;
- remoteInfo = "React-jsiexecutor";
- };
- 3862FEB42668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2577F299FCB0A19824FE989BE77B8E8F;
- remoteInfo = "React-jsinspector";
- };
- 3862FEB62668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 6C9790F1A25C1E3828E179A8F0850851;
- remoteInfo = "react-native-camera";
- };
- 3862FEB82668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 8C3E2A6E6F93E60E397F6C0BBA710BF5;
- remoteInfo = "react-native-cameraroll";
- };
- 3862FEBA2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 467EB07BB1D9636C6348DE0824CE8973;
- remoteInfo = "react-native-geolocation";
- };
- 3862FEBC2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2F955107B98F1B5213C3C9F4CAB1EDB5;
- remoteInfo = "react-native-maps";
- };
- 3862FEBE2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 52FCF98CEFF94C742080B6965D537AD0;
- remoteInfo = "react-native-safe-area-context";
- };
- 3862FEC02668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = FFC72665DB62DE03F833DC354B72933F;
- remoteInfo = "react-native-view-shot";
- };
- 3862FEC22668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 666E72807891C591E025A75410CD2A26;
- remoteInfo = "React-perflogger";
- };
- 3862FEC42668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = FE7B9294FF05AAFD1653E2104E10844A;
- remoteInfo = "React-RCTAnimation";
- };
- 3862FEC62668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = F71EBF73F354B475D465FF6DE9A66707;
- remoteInfo = "React-RCTBlob";
- };
- 3862FEC82668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = EEDBF403E8E0B3885E65C2741B536BC5;
- remoteInfo = "React-RCTImage";
- };
- 3862FECA2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 802121F5B756ACBFDD6D08C36246DADD;
- remoteInfo = "React-RCTLinking";
- };
- 3862FECC2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = A68E5A9B69A3BA0FD52CAF7A354EC93B;
- remoteInfo = "React-RCTNetwork";
- };
- 3862FECE2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 269BE773C9482484B70949A40F4EA525;
- remoteInfo = "React-RCTSettings";
- };
- 3862FED02668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = E6A16705C69FC7DE11C2469A4A0F8358;
- remoteInfo = "React-RCTText";
- };
- 3862FED22668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = C1A919103EAC9813D236486C34FC0A21;
- remoteInfo = "React-RCTVibration";
- };
- 3862FED42668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = D5C775614AC76D44CECB6BE08B022F1F;
- remoteInfo = ReactCommon;
- };
- 3862FED62668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 51B50F20C76CF72E2BEF8D4764235306;
- remoteInfo = ReactNativeART;
- };
- 3862FED82668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 5737DDB4BC95AD399B3206838AB97095;
- remoteInfo = RNCAsyncStorage;
- };
- 3862FEDA2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 629B4458112E2D01978E2FE02FF6FFF7;
- remoteInfo = RNCCheckbox;
- };
- 3862FEDC2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = B8CD4B9B578CE9FA38114B638C9CAA78;
- remoteInfo = RNCMaskedView;
- };
- 3862FEE02668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 0B9BD901B3EB04B824A157C85265F044;
- remoteInfo = RNCPushNotificationIOS;
- };
- 3862FEE22668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 8F65F9361F2069CF9E9D751272968DE4;
- remoteInfo = RNGestureHandler;
- };
- 3862FEE42668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3AEA4A114C08533A2C0F8E039A4C5EB9;
- remoteInfo = RNImageCropPicker;
- };
- 3862FEE62668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3DCCC9C42EB3E07CFD81800EC8A2515D;
- remoteInfo = "RNImageCropPicker-QBImagePicker";
- };
- 3862FEE82668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 778C1572AE22EE933ACA12594B6DF949;
- remoteInfo = RNPermissions;
- };
- 3862FEEA2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = C777CF2FB1E39A45CBBDB54E8693F471;
- remoteInfo = RNReanimated;
- };
- 3862FEEC2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 50B5347C9A6E93B7D4CFC3673BA6FB7E;
- remoteInfo = RNScreens;
- };
- 3862FEEE2668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 484E6781D8E6CE2FB8F6C8D7C9578D97;
- remoteInfo = RNShare;
- };
- 3862FEF02668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 90EE8D3C082C157169540FC8F5913DAD;
- remoteInfo = RNSVG;
- };
- 3862FEF42668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 7862C607B7BE0510C2D65193F9B4B4F9;
- remoteInfo = TOCropViewController;
- };
- 3862FEF62668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = FE1E812071397E31AE21DFF368B781B1;
- remoteInfo = "TOCropViewController-TOCropViewControllerBundle";
- };
- 3862FEF82668D3C90097D3A3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 65D0A19C165FA1126B1360680FE6DB12;
- remoteInfo = Yoga;
- };
- 3869FB89299A2F0000B54A73 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = E08C779E50631C7CF499C9D92CBF2143;
- remoteInfo = Base64;
- };
- 3869FB8B299A2F0000B54A73 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 0B9E5763C5976FF37F042C04F74C8659;
- remoteInfo = CodePush;
- };
- 3869FB8D299A2F0000B54A73 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2DF82EE18981E98BA2339ECE2AB5F350;
- remoteInfo = JWT;
- };
- 3869FB8F299A2F0000B54A73 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 91B23470DEB9A986332BEB5034234BC7;
- remoteInfo = SSZipArchive;
- };
- 3869FC44299BBAA500B54A73 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = F91783AD28315517EB590685D3A72C4E;
- remoteInfo = "appcenter-analytics";
- };
- 3869FC46299BBAA500B54A73 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 900096B0725CFCC567CC79CB90414A7A;
- remoteInfo = "appcenter-core";
- };
- 3869FC48299BBAA500B54A73 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3CE42778BE70CC034137D9A5B65316C1;
- remoteInfo = "appcenter-crashes";
- };
- 38C6DA642668E46D00D889BC /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 5CA9E6FE438CE79CD76FA3B34CC95836;
- remoteInfo = "Google-Maps-iOS-Utils";
- };
- 38C6DA662668E46D00D889BC /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = F7D4CFD8007E1491802305A2021EB56D;
- remoteInfo = "react-native-google-maps";
- };
- 38EDDA1426830E380093F908 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 8DF63376066E2275FF26820B3A512A9B;
- remoteInfo = "react-native-webview";
- };
- 732F2CF6296FA69A00A90ECF /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 148D0F9E8C7373FEAF40D800FC5F1BAA;
- remoteInfo = FirebaseCoreInternal;
- };
- /* End PBXContainerItemProxy section */
- /* Begin PBXFileReference section */
- 00E356EE1AD99517003FC87E /* JuicePlusTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = JuicePlusTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 00E356F21AD99517003FC87E /* JuicePlusTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JuicePlusTests.m; sourceTree = "<group>"; };
- 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>"; };
- 13B07F961A680F5B00A75B9A /* JuicePlus.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = JuicePlus.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = JuicePlus/AppDelegate.h; sourceTree = "<group>"; };
- 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = JuicePlus/AppDelegate.m; sourceTree = "<group>"; };
- 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = JuicePlus/Images.xcassets; sourceTree = "<group>"; };
- 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = JuicePlus/Info.plist; sourceTree = "<group>"; };
- 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = JuicePlus/main.m; sourceTree = "<group>"; };
- 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>"; };
- 38066FC126DDDB0700271DFA /* JuicePlus.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = JuicePlus.entitlements; path = JuicePlus/JuicePlus.entitlements; sourceTree = "<group>"; };
- 38066FC226DE16BF00271DFA /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = main.jsbundle; path = bundle/main.jsbundle; sourceTree = "<group>"; };
- 38066FC326DE16BF00271DFA /* assets */ = {isa = PBXFileReference; lastKnownFileType = folder; name = assets; path = bundle/assets; sourceTree = "<group>"; };
- 38066FC926DF20DA00271DFA /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "GoogleService-Info.plist"; path = "JuicePlus/GoogleService-Info.plist"; sourceTree = "<group>"; };
- 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = Pods.xcodeproj; sourceTree = "<group>"; };
- 3869FBE7299B96AE00B54A73 /* AppCenter-Config.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "AppCenter-Config.plist"; path = "JuicePlus/AppCenter-Config.plist"; sourceTree = "<group>"; };
- 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = JuicePlus/LaunchScreen.storyboard; sourceTree = "<group>"; };
- AB9D2CD35A198422C90BC492 /* libPods-JuicePlus-JuicePlusTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-JuicePlus-JuicePlusTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 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>"; };
- DB9107F120992435E6CC55BB /* libPods-JuicePlus.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-JuicePlus.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
- 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>"; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 00E356EB1AD99517003FC87E /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- A8CB5874BD86036F4E6DF87A /* libPods-JuicePlus-JuicePlusTests.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- A5707C5E2B88048AC01CD052 /* libPods-JuicePlus.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 00E356EF1AD99517003FC87E /* JuicePlusTests */ = {
- isa = PBXGroup;
- children = (
- 00E356F21AD99517003FC87E /* JuicePlusTests.m */,
- 00E356F01AD99517003FC87E /* Supporting Files */,
- );
- path = JuicePlusTests;
- sourceTree = "<group>";
- };
- 00E356F01AD99517003FC87E /* Supporting Files */ = {
- isa = PBXGroup;
- children = (
- 00E356F11AD99517003FC87E /* Info.plist */,
- );
- name = "Supporting Files";
- sourceTree = "<group>";
- };
- 13B07FAE1A68108700A75B9A /* JuicePlus */ = {
- isa = PBXGroup;
- children = (
- 38066FC326DE16BF00271DFA /* assets */,
- 38066FC226DE16BF00271DFA /* main.jsbundle */,
- 38066FC126DDDB0700271DFA /* JuicePlus.entitlements */,
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
- 13B07FB01A68108700A75B9A /* AppDelegate.m */,
- 13B07FB51A68108700A75B9A /* Images.xcassets */,
- 13B07FB61A68108700A75B9A /* Info.plist */,
- 3869FBE7299B96AE00B54A73 /* AppCenter-Config.plist */,
- 38066FC926DF20DA00271DFA /* GoogleService-Info.plist */,
- 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
- 13B07FB71A68108700A75B9A /* main.m */,
- );
- name = JuicePlus;
- sourceTree = "<group>";
- };
- 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
- DB9107F120992435E6CC55BB /* libPods-JuicePlus.a */,
- AB9D2CD35A198422C90BC492 /* libPods-JuicePlus-JuicePlusTests.a */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- 3862FE5E2668D3C90097D3A3 /* Products */ = {
- isa = PBXGroup;
- children = (
- 3869FC45299BBAA500B54A73 /* appcenter-analytics */,
- 3869FC47299BBAA500B54A73 /* appcenter-core */,
- 3869FC49299BBAA500B54A73 /* appcenter-crashes */,
- 3869FB8A299A2F0000B54A73 /* Base64 */,
- 385053C52970039F0061999F /* BEMCheckBox */,
- 3869FB8C299A2F0000B54A73 /* CodePush */,
- 3862FE992668D3C90097D3A3 /* DoubleConversion */,
- 3862FE9B2668D3C90097D3A3 /* FBReactNativeSpec */,
- 3806701926DF20DA00271DFA /* FirebaseCore */,
- 3806701B26DF20DA00271DFA /* FirebaseCoreDiagnostics */,
- 732F2CF7296FA69A00A90ECF /* FirebaseCoreInternal */,
- 3806701D26DF20DA00271DFA /* FirebaseInstallations */,
- 3806701F26DF20DA00271DFA /* FirebaseMessaging */,
- 3862FE9D2668D3C90097D3A3 /* glog */,
- 38C6DA652668E46D00D889BC /* Google-Maps-iOS-Utils */,
- 3806702126DF20DA00271DFA /* GoogleDataTransport */,
- 3806702326DF20DA00271DFA /* GoogleUtilities */,
- 3869FB8E299A2F0000B54A73 /* JWT */,
- 3806702526DF20DA00271DFA /* nanopb */,
- 3860E72F266E248E0059CC98 /* Permission-AppTrackingTransparency */,
- 3862FE9F2668D3C90097D3A3 /* Permission-Camera */,
- 3860E731266E248E0059CC98 /* Permission-LocationAccuracy */,
- 3860E733266E248E0059CC98 /* Permission-LocationAlways */,
- 3860E735266E248E0059CC98 /* Permission-LocationWhenInUse */,
- 3860E739266E248E0059CC98 /* Permission-Microphone */,
- 3860E73D266E248E0059CC98 /* Permission-Notifications */,
- 3860E73F266E248E0059CC98 /* Permission-PhotoLibrary */,
- 3860E741266E248E0059CC98 /* Permission-PhotoLibraryAddOnly */,
- 3862FEA12668D3C90097D3A3 /* Pods-JuicePlus */,
- 3862FEA32668D3C90097D3A3 /* Pods-JuicePlus-JuicePlusTests */,
- 3806702726DF20DA00271DFA /* PromisesObjC */,
- 3862FEA52668D3C90097D3A3 /* RCT-Folly */,
- 3862FEA72668D3C90097D3A3 /* RCTTypeSafety */,
- 3862FEA92668D3C90097D3A3 /* React-Core */,
- 3862FEAB2668D3C90097D3A3 /* React-Core-AccessibilityResources */,
- 3862FEAD2668D3C90097D3A3 /* React-CoreModules */,
- 3862FEAF2668D3C90097D3A3 /* React-cxxreact */,
- 3862FEB12668D3C90097D3A3 /* React-jsi */,
- 3862FEB32668D3C90097D3A3 /* React-jsiexecutor */,
- 3862FEB52668D3C90097D3A3 /* React-jsinspector */,
- 3862FEB72668D3C90097D3A3 /* react-native-camera */,
- 3862FEB92668D3C90097D3A3 /* react-native-cameraroll */,
- 3862FEBB2668D3C90097D3A3 /* react-native-geolocation */,
- 38C6DA672668E46D00D889BC /* react-native-google-maps */,
- 3862FEBD2668D3C90097D3A3 /* react-native-maps */,
- 3862FEBF2668D3C90097D3A3 /* react-native-safe-area-context */,
- 3862FEC12668D3C90097D3A3 /* react-native-view-shot */,
- 38EDDA1526830E380093F908 /* react-native-webview */,
- 3862FEC32668D3C90097D3A3 /* React-perflogger */,
- 3862FEC52668D3C90097D3A3 /* React-RCTAnimation */,
- 3862FEC72668D3C90097D3A3 /* React-RCTBlob */,
- 3862FEC92668D3C90097D3A3 /* React-RCTImage */,
- 3862FECB2668D3C90097D3A3 /* React-RCTLinking */,
- 3862FECD2668D3C90097D3A3 /* React-RCTNetwork */,
- 3862FECF2668D3C90097D3A3 /* React-RCTSettings */,
- 3862FED12668D3C90097D3A3 /* React-RCTText */,
- 3862FED32668D3C90097D3A3 /* React-RCTVibration */,
- 3862FED52668D3C90097D3A3 /* ReactCommon */,
- 3862FED72668D3C90097D3A3 /* ReactNativeART */,
- 3862FED92668D3C90097D3A3 /* RNCAsyncStorage */,
- 3862FEDB2668D3C90097D3A3 /* RNCCheckbox */,
- 3862FEDD2668D3C90097D3A3 /* RNCMaskedView */,
- 3862FEE12668D3C90097D3A3 /* RNCPushNotificationIOS */,
- 382FB1E7272F967F007EE9BB /* RNDeviceInfo */,
- 3862FEE32668D3C90097D3A3 /* RNGestureHandler */,
- 3862FEE52668D3C90097D3A3 /* RNImageCropPicker */,
- 3862FEE72668D3C90097D3A3 /* RNImageCropPicker-QBImagePicker */,
- 3862FEE92668D3C90097D3A3 /* RNPermissions */,
- 3862FEEB2668D3C90097D3A3 /* RNReanimated */,
- 3862FEED2668D3C90097D3A3 /* RNScreens */,
- 3862FEEF2668D3C90097D3A3 /* RNShare */,
- 3862FEF12668D3C90097D3A3 /* RNSVG */,
- 3860E743266E248E0059CC98 /* RNVectorIcons */,
- 3869FB90299A2F0000B54A73 /* SSZipArchive */,
- 3862FEF52668D3C90097D3A3 /* TOCropViewController */,
- 3862FEF72668D3C90097D3A3 /* TOCropViewController-TOCropViewControllerBundle */,
- 3862FEF92668D3C90097D3A3 /* Yoga */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
- isa = PBXGroup;
- children = (
- );
- name = Libraries;
- sourceTree = "<group>";
- };
- 83CBB9F61A601CBA00E9B192 = {
- isa = PBXGroup;
- children = (
- 13B07FAE1A68108700A75B9A /* JuicePlus */,
- 832341AE1AAA6A7D00B99B32 /* Libraries */,
- 00E356EF1AD99517003FC87E /* JuicePlusTests */,
- 83CBBA001A601CBA00E9B192 /* Products */,
- 2D16E6871FA4F8E400B85C8A /* Frameworks */,
- AE9F3160A5794A17807F051F /* Pods */,
- );
- indentWidth = 2;
- sourceTree = "<group>";
- tabWidth = 2;
- usesTabs = 0;
- };
- 83CBBA001A601CBA00E9B192 /* Products */ = {
- isa = PBXGroup;
- children = (
- 13B07F961A680F5B00A75B9A /* JuicePlus.app */,
- 00E356EE1AD99517003FC87E /* JuicePlusTests.xctest */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- AE9F3160A5794A17807F051F /* Pods */ = {
- isa = PBXGroup;
- children = (
- 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */,
- B12059D6810CBCE332360003 /* Pods-JuicePlus.debug.xcconfig */,
- 0B4312F6F31A03C548D2D34E /* Pods-JuicePlus.release.xcconfig */,
- 1EAF8AFB4DFFD2DC3F519A17 /* Pods-JuicePlus-JuicePlusTests.debug.xcconfig */,
- FB8DBBF7218DB1714AEA17D3 /* Pods-JuicePlus-JuicePlusTests.release.xcconfig */,
- );
- path = Pods;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXNativeTarget section */
- 00E356ED1AD99517003FC87E /* JuicePlusTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "JuicePlusTests" */;
- buildPhases = (
- 91782402D5526C1FE269DCEB /* [CP] Check Pods Manifest.lock */,
- 00E356EA1AD99517003FC87E /* Sources */,
- 00E356EB1AD99517003FC87E /* Frameworks */,
- 00E356EC1AD99517003FC87E /* Resources */,
- E8315E9C8ADE07ADFC46E267 /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 00E356F51AD99517003FC87E /* PBXTargetDependency */,
- );
- name = JuicePlusTests;
- productName = JuicePlusTests;
- productReference = 00E356EE1AD99517003FC87E /* JuicePlusTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- 13B07F861A680F5B00A75B9A /* JuicePlus */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "JuicePlus" */;
- buildPhases = (
- ECF1D1690D900A2BFDCEE6DB /* [CP] Check Pods Manifest.lock */,
- FD10A7F022414F080027D42C /* Start Packager */,
- 13B07F871A680F5B00A75B9A /* Sources */,
- 13B07F8C1A680F5B00A75B9A /* Frameworks */,
- 13B07F8E1A680F5B00A75B9A /* Resources */,
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
- 299A58B4788798FED5F19B10 /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = JuicePlus;
- productName = JuicePlus;
- productReference = 13B07F961A680F5B00A75B9A /* JuicePlus.app */;
- productType = "com.apple.product-type.application";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- 83CBB9F71A601CBA00E9B192 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 1330;
- TargetAttributes = {
- 00E356ED1AD99517003FC87E = {
- CreatedOnToolsVersion = 6.2;
- TestTargetID = 13B07F861A680F5B00A75B9A;
- };
- 13B07F861A680F5B00A75B9A = {
- LastSwiftMigration = 1120;
- };
- };
- };
- buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "JuicePlus" */;
- compatibilityVersion = "Xcode 12.0";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- );
- mainGroup = 83CBB9F61A601CBA00E9B192;
- productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
- projectDirPath = "";
- projectReferences = (
- {
- ProductGroup = 3862FE5E2668D3C90097D3A3 /* Products */;
- ProjectRef = 3862FE5D2668D3C90097D3A3 /* Pods.xcodeproj */;
- },
- );
- projectRoot = "";
- targets = (
- 13B07F861A680F5B00A75B9A /* JuicePlus */,
- 00E356ED1AD99517003FC87E /* JuicePlusTests */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXReferenceProxy section */
- 3806701926DF20DA00271DFA /* FirebaseCore */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = FirebaseCore;
- path = libFirebaseCore.a;
- remoteRef = 3806701826DF20DA00271DFA /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3806701B26DF20DA00271DFA /* FirebaseCoreDiagnostics */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = FirebaseCoreDiagnostics;
- path = libFirebaseCoreDiagnostics.a;
- remoteRef = 3806701A26DF20DA00271DFA /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3806701D26DF20DA00271DFA /* FirebaseInstallations */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = FirebaseInstallations;
- path = libFirebaseInstallations.a;
- remoteRef = 3806701C26DF20DA00271DFA /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3806701F26DF20DA00271DFA /* FirebaseMessaging */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = FirebaseMessaging;
- path = libFirebaseMessaging.a;
- remoteRef = 3806701E26DF20DA00271DFA /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3806702126DF20DA00271DFA /* GoogleDataTransport */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = GoogleDataTransport;
- path = libGoogleDataTransport.a;
- remoteRef = 3806702026DF20DA00271DFA /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3806702326DF20DA00271DFA /* GoogleUtilities */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = GoogleUtilities;
- path = libGoogleUtilities.a;
- remoteRef = 3806702226DF20DA00271DFA /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3806702526DF20DA00271DFA /* nanopb */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = nanopb;
- path = libnanopb.a;
- remoteRef = 3806702426DF20DA00271DFA /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3806702726DF20DA00271DFA /* PromisesObjC */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = PromisesObjC;
- path = libPromisesObjC.a;
- remoteRef = 3806702626DF20DA00271DFA /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 382FB1E7272F967F007EE9BB /* RNDeviceInfo */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNDeviceInfo;
- path = libRNDeviceInfo.a;
- remoteRef = 382FB1E6272F967F007EE9BB /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 385053C52970039F0061999F /* BEMCheckBox */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = BEMCheckBox;
- path = libBEMCheckBox.a;
- remoteRef = 385053C42970039F0061999F /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3860E72F266E248E0059CC98 /* Permission-AppTrackingTransparency */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "Permission-AppTrackingTransparency";
- path = "libPermission-AppTrackingTransparency.a";
- remoteRef = 3860E72E266E248E0059CC98 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3860E731266E248E0059CC98 /* Permission-LocationAccuracy */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "Permission-LocationAccuracy";
- path = "libPermission-LocationAccuracy.a";
- remoteRef = 3860E730266E248E0059CC98 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3860E733266E248E0059CC98 /* Permission-LocationAlways */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "Permission-LocationAlways";
- path = "libPermission-LocationAlways.a";
- remoteRef = 3860E732266E248E0059CC98 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3860E735266E248E0059CC98 /* Permission-LocationWhenInUse */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "Permission-LocationWhenInUse";
- path = "libPermission-LocationWhenInUse.a";
- remoteRef = 3860E734266E248E0059CC98 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3860E739266E248E0059CC98 /* Permission-Microphone */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "Permission-Microphone";
- path = "libPermission-Microphone.a";
- remoteRef = 3860E738266E248E0059CC98 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3860E73D266E248E0059CC98 /* Permission-Notifications */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "Permission-Notifications";
- path = "libPermission-Notifications.a";
- remoteRef = 3860E73C266E248E0059CC98 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3860E73F266E248E0059CC98 /* Permission-PhotoLibrary */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "Permission-PhotoLibrary";
- path = "libPermission-PhotoLibrary.a";
- remoteRef = 3860E73E266E248E0059CC98 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3860E741266E248E0059CC98 /* Permission-PhotoLibraryAddOnly */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "Permission-PhotoLibraryAddOnly";
- path = "libPermission-PhotoLibraryAddOnly.a";
- remoteRef = 3860E740266E248E0059CC98 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3860E743266E248E0059CC98 /* RNVectorIcons */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNVectorIcons;
- path = libRNVectorIcons.a;
- remoteRef = 3860E742266E248E0059CC98 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FE992668D3C90097D3A3 /* DoubleConversion */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = DoubleConversion;
- path = libDoubleConversion.a;
- remoteRef = 3862FE982668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FE9B2668D3C90097D3A3 /* FBReactNativeSpec */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = FBReactNativeSpec;
- path = libFBReactNativeSpec.a;
- remoteRef = 3862FE9A2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FE9D2668D3C90097D3A3 /* glog */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = glog;
- path = libglog.a;
- remoteRef = 3862FE9C2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FE9F2668D3C90097D3A3 /* Permission-Camera */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "Permission-Camera";
- path = "libPermission-Camera.a";
- remoteRef = 3862FE9E2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEA12668D3C90097D3A3 /* Pods-JuicePlus */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "Pods-JuicePlus";
- path = "libPods-JuicePlus.a";
- remoteRef = 3862FEA02668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEA32668D3C90097D3A3 /* Pods-JuicePlus-JuicePlusTests */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "Pods-JuicePlus-JuicePlusTests";
- path = "libPods-JuicePlus-JuicePlusTests.a";
- remoteRef = 3862FEA22668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEA52668D3C90097D3A3 /* RCT-Folly */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "RCT-Folly";
- path = "libRCT-Folly.a";
- remoteRef = 3862FEA42668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEA72668D3C90097D3A3 /* RCTTypeSafety */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RCTTypeSafety;
- path = libRCTTypeSafety.a;
- remoteRef = 3862FEA62668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEA92668D3C90097D3A3 /* React-Core */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-Core";
- path = "libReact-Core.a";
- remoteRef = 3862FEA82668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEAB2668D3C90097D3A3 /* React-Core-AccessibilityResources */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- name = "React-Core-AccessibilityResources";
- path = AccessibilityResources.bundle;
- remoteRef = 3862FEAA2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEAD2668D3C90097D3A3 /* React-CoreModules */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-CoreModules";
- path = "libReact-CoreModules.a";
- remoteRef = 3862FEAC2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEAF2668D3C90097D3A3 /* React-cxxreact */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-cxxreact";
- path = "libReact-cxxreact.a";
- remoteRef = 3862FEAE2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEB12668D3C90097D3A3 /* React-jsi */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-jsi";
- path = "libReact-jsi.a";
- remoteRef = 3862FEB02668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEB32668D3C90097D3A3 /* React-jsiexecutor */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-jsiexecutor";
- path = "libReact-jsiexecutor.a";
- remoteRef = 3862FEB22668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEB52668D3C90097D3A3 /* React-jsinspector */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-jsinspector";
- path = "libReact-jsinspector.a";
- remoteRef = 3862FEB42668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEB72668D3C90097D3A3 /* react-native-camera */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "react-native-camera";
- path = "libreact-native-camera.a";
- remoteRef = 3862FEB62668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEB92668D3C90097D3A3 /* react-native-cameraroll */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "react-native-cameraroll";
- path = "libreact-native-cameraroll.a";
- remoteRef = 3862FEB82668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEBB2668D3C90097D3A3 /* react-native-geolocation */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "react-native-geolocation";
- path = "libreact-native-geolocation.a";
- remoteRef = 3862FEBA2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEBD2668D3C90097D3A3 /* react-native-maps */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "react-native-maps";
- path = "libreact-native-maps.a";
- remoteRef = 3862FEBC2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEBF2668D3C90097D3A3 /* react-native-safe-area-context */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "react-native-safe-area-context";
- path = "libreact-native-safe-area-context.a";
- remoteRef = 3862FEBE2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEC12668D3C90097D3A3 /* react-native-view-shot */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "react-native-view-shot";
- path = "libreact-native-view-shot.a";
- remoteRef = 3862FEC02668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEC32668D3C90097D3A3 /* React-perflogger */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-perflogger";
- path = "libReact-perflogger.a";
- remoteRef = 3862FEC22668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEC52668D3C90097D3A3 /* React-RCTAnimation */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-RCTAnimation";
- path = "libReact-RCTAnimation.a";
- remoteRef = 3862FEC42668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEC72668D3C90097D3A3 /* React-RCTBlob */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-RCTBlob";
- path = "libReact-RCTBlob.a";
- remoteRef = 3862FEC62668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEC92668D3C90097D3A3 /* React-RCTImage */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-RCTImage";
- path = "libReact-RCTImage.a";
- remoteRef = 3862FEC82668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FECB2668D3C90097D3A3 /* React-RCTLinking */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-RCTLinking";
- path = "libReact-RCTLinking.a";
- remoteRef = 3862FECA2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FECD2668D3C90097D3A3 /* React-RCTNetwork */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-RCTNetwork";
- path = "libReact-RCTNetwork.a";
- remoteRef = 3862FECC2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FECF2668D3C90097D3A3 /* React-RCTSettings */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-RCTSettings";
- path = "libReact-RCTSettings.a";
- remoteRef = 3862FECE2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FED12668D3C90097D3A3 /* React-RCTText */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-RCTText";
- path = "libReact-RCTText.a";
- remoteRef = 3862FED02668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FED32668D3C90097D3A3 /* React-RCTVibration */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "React-RCTVibration";
- path = "libReact-RCTVibration.a";
- remoteRef = 3862FED22668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FED52668D3C90097D3A3 /* ReactCommon */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = ReactCommon;
- path = libReactCommon.a;
- remoteRef = 3862FED42668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FED72668D3C90097D3A3 /* ReactNativeART */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = ReactNativeART;
- path = libReactNativeART.a;
- remoteRef = 3862FED62668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FED92668D3C90097D3A3 /* RNCAsyncStorage */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNCAsyncStorage;
- path = libRNCAsyncStorage.a;
- remoteRef = 3862FED82668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEDB2668D3C90097D3A3 /* RNCCheckbox */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNCCheckbox;
- path = libRNCCheckbox.a;
- remoteRef = 3862FEDA2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEDD2668D3C90097D3A3 /* RNCMaskedView */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNCMaskedView;
- path = libRNCMaskedView.a;
- remoteRef = 3862FEDC2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEE12668D3C90097D3A3 /* RNCPushNotificationIOS */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNCPushNotificationIOS;
- path = libRNCPushNotificationIOS.a;
- remoteRef = 3862FEE02668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEE32668D3C90097D3A3 /* RNGestureHandler */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNGestureHandler;
- path = libRNGestureHandler.a;
- remoteRef = 3862FEE22668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEE52668D3C90097D3A3 /* RNImageCropPicker */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNImageCropPicker;
- path = libRNImageCropPicker.a;
- remoteRef = 3862FEE42668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEE72668D3C90097D3A3 /* RNImageCropPicker-QBImagePicker */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- name = "RNImageCropPicker-QBImagePicker";
- path = QBImagePicker.bundle;
- remoteRef = 3862FEE62668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEE92668D3C90097D3A3 /* RNPermissions */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNPermissions;
- path = libRNPermissions.a;
- remoteRef = 3862FEE82668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEEB2668D3C90097D3A3 /* RNReanimated */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNReanimated;
- path = libRNReanimated.a;
- remoteRef = 3862FEEA2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEED2668D3C90097D3A3 /* RNScreens */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNScreens;
- path = libRNScreens.a;
- remoteRef = 3862FEEC2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEEF2668D3C90097D3A3 /* RNShare */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNShare;
- path = libRNShare.a;
- remoteRef = 3862FEEE2668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEF12668D3C90097D3A3 /* RNSVG */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = RNSVG;
- path = libRNSVG.a;
- remoteRef = 3862FEF02668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEF52668D3C90097D3A3 /* TOCropViewController */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = TOCropViewController;
- path = libTOCropViewController.a;
- remoteRef = 3862FEF42668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEF72668D3C90097D3A3 /* TOCropViewController-TOCropViewControllerBundle */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- name = "TOCropViewController-TOCropViewControllerBundle";
- path = TOCropViewControllerBundle.bundle;
- remoteRef = 3862FEF62668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3862FEF92668D3C90097D3A3 /* Yoga */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = Yoga;
- path = libYoga.a;
- remoteRef = 3862FEF82668D3C90097D3A3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3869FB8A299A2F0000B54A73 /* Base64 */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = Base64;
- path = libBase64.a;
- remoteRef = 3869FB89299A2F0000B54A73 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3869FB8C299A2F0000B54A73 /* CodePush */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = CodePush;
- path = libCodePush.a;
- remoteRef = 3869FB8B299A2F0000B54A73 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3869FB8E299A2F0000B54A73 /* JWT */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = JWT;
- path = libJWT.a;
- remoteRef = 3869FB8D299A2F0000B54A73 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3869FB90299A2F0000B54A73 /* SSZipArchive */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = SSZipArchive;
- path = libSSZipArchive.a;
- remoteRef = 3869FB8F299A2F0000B54A73 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3869FC45299BBAA500B54A73 /* appcenter-analytics */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "appcenter-analytics";
- path = "libappcenter-analytics.a";
- remoteRef = 3869FC44299BBAA500B54A73 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3869FC47299BBAA500B54A73 /* appcenter-core */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "appcenter-core";
- path = "libappcenter-core.a";
- remoteRef = 3869FC46299BBAA500B54A73 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3869FC49299BBAA500B54A73 /* appcenter-crashes */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "appcenter-crashes";
- path = "libappcenter-crashes.a";
- remoteRef = 3869FC48299BBAA500B54A73 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 38C6DA652668E46D00D889BC /* Google-Maps-iOS-Utils */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "Google-Maps-iOS-Utils";
- path = "libGoogle-Maps-iOS-Utils.a";
- remoteRef = 38C6DA642668E46D00D889BC /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 38C6DA672668E46D00D889BC /* react-native-google-maps */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "react-native-google-maps";
- path = "libreact-native-google-maps.a";
- remoteRef = 38C6DA662668E46D00D889BC /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 38EDDA1526830E380093F908 /* react-native-webview */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = "react-native-webview";
- path = "libreact-native-webview.a";
- remoteRef = 38EDDA1426830E380093F908 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 732F2CF7296FA69A00A90ECF /* FirebaseCoreInternal */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- name = FirebaseCoreInternal;
- path = libFirebaseCoreInternal.a;
- remoteRef = 732F2CF6296FA69A00A90ECF /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- /* End PBXReferenceProxy section */
- /* Begin PBXResourcesBuildPhase section */
- 00E356EC1AD99517003FC87E /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 13B07F8E1A680F5B00A75B9A /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 38066FC426DE16BF00271DFA /* main.jsbundle in Resources */,
- 38066FC526DE16BF00271DFA /* assets in Resources */,
- 3806702826DF20DA00271DFA /* GoogleService-Info.plist in Resources */,
- 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
- 3869FBE8299B96AF00B54A73 /* AppCenter-Config.plist in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXShellScriptBuildPhase section */
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "Bundle React Native code and images";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
- };
- 299A58B4788798FED5F19B10 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-JuicePlus/Pods-JuicePlus-resources-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Copy Pods Resources";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-JuicePlus/Pods-JuicePlus-resources-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-JuicePlus/Pods-JuicePlus-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 91782402D5526C1FE269DCEB /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-JuicePlus-JuicePlusTests-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- E8315E9C8ADE07ADFC46E267 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-JuicePlus-JuicePlusTests/Pods-JuicePlus-JuicePlusTests-resources-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Copy Pods Resources";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-JuicePlus-JuicePlusTests/Pods-JuicePlus-JuicePlusTests-resources-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-JuicePlus-JuicePlusTests/Pods-JuicePlus-JuicePlusTests-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- ECF1D1690D900A2BFDCEE6DB /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-JuicePlus-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- FD10A7F022414F080027D42C /* Start Packager */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- name = "Start Packager";
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- /* End PBXShellScriptBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 00E356EA1AD99517003FC87E /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 00E356F31AD99517003FC87E /* JuicePlusTests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 13B07F871A680F5B00A75B9A /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
- 13B07FC11A68108700A75B9A /* main.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXTargetDependency section */
- 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 13B07F861A680F5B00A75B9A /* JuicePlus */;
- targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
- };
- /* End PBXTargetDependency section */
- /* Begin XCBuildConfiguration section */
- 00E356F61AD99517003FC87E /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 1EAF8AFB4DFFD2DC3F519A17 /* Pods-JuicePlus-JuicePlusTests.debug.xcconfig */;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- INFOPLIST_FILE = JuicePlusTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- "$(inherited)",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/JuicePlus.app/JuicePlus";
- };
- name = Debug;
- };
- 00E356F71AD99517003FC87E /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = FB8DBBF7218DB1714AEA17D3 /* Pods-JuicePlus-JuicePlusTests.release.xcconfig */;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- BUNDLE_LOADER = "$(TEST_HOST)";
- COPY_PHASE_STRIP = NO;
- INFOPLIST_FILE = JuicePlusTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- "$(inherited)",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/JuicePlus.app/JuicePlus";
- };
- name = Release;
- };
- 13B07F941A680F5B00A75B9A /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = B12059D6810CBCE332360003 /* Pods-JuicePlus.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CODE_SIGN_ENTITLEMENTS = JuicePlus/JuicePlus.entitlements;
- CURRENT_PROJECT_VERSION = 90;
- DEVELOPMENT_TEAM = TK7T9A6RQ2;
- ENABLE_BITCODE = NO;
- INFOPLIST_FILE = JuicePlus/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- MARKETING_VERSION = 2.2.3;
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.strides.chargeco;
- PRODUCT_NAME = JuicePlus;
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Debug;
- };
- 13B07F951A680F5B00A75B9A /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 0B4312F6F31A03C548D2D34E /* Pods-JuicePlus.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CLANG_ENABLE_MODULES = YES;
- CODE_SIGN_ENTITLEMENTS = JuicePlus/JuicePlus.entitlements;
- CURRENT_PROJECT_VERSION = 90;
- DEVELOPMENT_TEAM = TK7T9A6RQ2;
- INFOPLIST_FILE = JuicePlus/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- MARKETING_VERSION = 2.2.3;
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.strides.chargeco;
- PRODUCT_NAME = JuicePlus;
- SWIFT_VERSION = 5.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Release;
- };
- 83CBBA201A601CBA00E9B192 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 i386";
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = (
- /usr/lib/swift,
- "$(inherited)",
- );
- LIBRARY_SEARCH_PATHS = (
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
- "\"$(inherited)\"",
- );
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- };
- name = Debug;
- };
- 83CBBA211A601CBA00E9B192 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = YES;
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 i386";
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = (
- /usr/lib/swift,
- "$(inherited)",
- );
- LIBRARY_SEARCH_PATHS = (
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
- "\"$(inherited)\"",
- );
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "JuicePlusTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 00E356F61AD99517003FC87E /* Debug */,
- 00E356F71AD99517003FC87E /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "JuicePlus" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 13B07F941A680F5B00A75B9A /* Debug */,
- 13B07F951A680F5B00A75B9A /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "JuicePlus" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 83CBBA201A601CBA00E9B192 /* Debug */,
- 83CBBA211A601CBA00E9B192 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- /* End XCConfigurationList section */
- };
- rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
- }
|