Giter Site home page Giter Site logo

blackboxvision / react-native-mercadopago-px Goto Github PK

View Code? Open in Web Editor NEW
104.0 6.0 25.0 8.03 MB

🚀 MercadoPago PX bridge for react-native

Home Page: https://react-native-mercadopago-px.blackbox-vision.tech

License: MIT License

Kotlin 24.65% JavaScript 3.32% Ruby 14.50% Java 13.63% TypeScript 20.19% Swift 15.63% C 0.22% Objective-C 7.87%
react-native react mercadopago sdk library mercadopago-api bridge android ios

react-native-mercadopago-px's Introduction

npm version License: MIT

React Native Unofficial SDK for integrating MercadoPago PX Native UIs.

Getting Started

To integrate this SDK you can check out our docs.

Add your App

We showcase the apps using currently our SDK. If you want to add your application, you need to perform a set of steps:

  1. Fork our repo and edit the following JSON.
  2. Upload your images to docs/static/img.
  3. Perform a PR.

Enterprise Support

We offer enterprise support for the following cases:

  • Make adjustments in the library or improve it to support a non-existent case.
  • Help you perform an E2E integration in mobile, web and server-side.

In any case, you can contact us and we'll try to help you offering our experience.

Issues

Please, open an issue following one of the issues templates. We will do our best to fix them.

Contributing

If you want to contribute to this project see contributing for more information.

License

Distributed under the MIT license. See LICENSE for more information.

react-native-mercadopago-px's People

Contributors

alexsegura avatar dependabot[bot] avatar felipegangrel avatar gabbyboy avatar gabrielkaplanbbv avatar jonatansalas avatar manutuero avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

react-native-mercadopago-px's Issues

Error while bundling

Describe the bug
Gradle fails to bundle package.

To Reproduce
Steps to reproduce the behavior:

  1. start any empty react-native projects
  2. run npm i @blackbox-vision/react-native-mercadopago-px as explained in https://react-native-mercadopago-px.blackbox-vision.tech/docs/install
  3. run-android fails with gradle error:
    `error Failed to install the app. Make sure you have the Android development environment set up: https://reactnative.dev/docs/environment-setup.
    Error: Command failed: ./gradlew app:installDebug -PreactNativeDevServerPort=8081

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ':app:checkDebugAarMetadata'.

Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
Could not find com.mercadopago.android.px:checkout:4.45.0.
Searched in the following locations:
- https://repo.maven.apache.org/maven2/com/mercadopago/android/px/checkout/4.45.0/checkout-4.45.0.pom
- file:/Users/luchux/.m2/repository/com/mercadopago/android/px/checkout/4.45.0/checkout-4.45.0.pom
- file:/Users/luchux/Devel/compartir/node_modules/react-native/android/com/mercadopago/android/px/checkout/4.45.0/checkout-4.45.0.pom
- file:/Users/luchux/Devel/compartir/node_modules/jsc-android/dist/com/mercadopago/android/px/checkout/4.45.0/checkout-4.45.0.pom
- https://dl.google.com/dl/android/maven2/com/mercadopago/android/px/checkout/4.45.0/checkout-4.45.0.pom
- https://www.jitpack.io/com/mercadopago/android/px/checkout/4.45.0/checkout-4.45.0.pom
Required by:
project :app > project :blackbox-vision_react-native-mercadopago-px

  • Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

  • Get more help at https://help.gradle.org

BUILD FAILED in 6s

at makeError (/Users/luchux/Devel/compartir/node_modules/@react-native-community/cli-platform-android/node_modules/execa/index.js:174:9)
at /Users/luchux/Devel/compartir/node_modules/@react-native-community/cli-platform-android/node_modules/execa/index.js:278:16
at processTicksAndRejections (internal/process/task_queues.js:95:5)
at async runOnAllDevices (/Users/luchux/Devel/compartir/node_modules/@react-native-community/cli-platform-android/build/commands/runAndroid/runOnAllDevices.js:106:5)
at async Command.handleAction (/Users/luchux/Devel/compartir/node_modules/react-native/node_modules/@react-native-community/cli/build/index.js:192:9)

info Run CLI with --verbose flag for more details.
`
Expected behavior
gradle should build well.

Screenshots
If applicable, add screenshots to help explain your problem.

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

Dependencies
Add the name and version of all dependencies of your project.

[Feature] - Add support for Discount configuration

Motivation

  • Enable developers to manage discounts via Javascript API

Draft API

We've in mind the following API:

const payment = await MercadoPagoCheckout.createPayment({
    publicKey: Env.MP_PUBLIC_KEY,
    preferenceId: `your_preference_id`,
    discountOptions: {
       campaignId: 'id',
       couponAmount: 100 
    }
});

[Example] - Marketplace implementation

Motivation

  • Show an example on how to use PX checkout for Marketplace integration
  • Show how to request access to MP data for the seller
  • Show how to store data from the seller
  • Show how to generate a preference targeting the seller credentials

Error in createPayment function - Expo

Describe the bug

Hello, i use the library, and have error in the funcion "createPayment".

My code is same of example

The preferenceId is created success.

The execution of "createPayment" return the following error:

"null is not an object (evaluating '_reactNative.NativeModules.ReactNativeMercadopagoPx.createPayment')"

Smartphone (please complete the following information):

  • Device: Xioami redmi 8 pro
  • OS: Android
  • Version 10

My package.json is the following:
"@blackbox-vision/react-native-mercadopago-px": "^0.7.2",
"@react-native-async-storage/async-storage": "^1.13.2",
"@react-native-community/masked-view": "0.1.10",
"@react-native-picker/picker": "^1.9.3",
"@react-navigation/drawer": "^5.11.4",
"@react-navigation/native": "^5.8.10",
"@use-expo/font": "^2.0.0",
"axios": "^0.21.0",
"expo": "~39.0.2",
"expo-font": "~8.3.0",
"expo-status-bar": "~1.0.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.4.tar.gz",
"react-native-gesture-handler": "~1.7.0",
"react-native-paper": "^4.4.1",
"react-native-reanimated": "~1.13.0",
"react-native-safe-area-context": "3.1.4",
"react-native-screens": "~2.10.1",
"react-native-web": "~0.13.12"

Pod install error

RN Version: "0.64.2"
Cocapods Version: 1.11.3

Pasa cuando quiero hacer pod install

Y les dejo el error en si:

Screen Shot 2023-06-14 at 12 35 17 PM

String:

zehto@MacBook-Pro-de-Zehto ios % pod install



[!] Invalid `Podfile` file: undefined method `enable_user_defined_build_types!' for #<Pod::Podfile:0x000000010763fe90 @defined_in_file=#<Pathname:/Users/zehto/Desktop/Proyecto/ios/Podfile>, @internal_hash={"plugins"=>{"cocoapods-user-defined-build-types"=>{}}}, @root_target_definitions=[#<Pod::Podfile::TargetDefinition label=Pods>], @current_target_definition=#<Pod::Podfile::TargetDefinition label=Pods>>.



  from /Users/zehto/Desktop/ios/Podfile:3

   -------------------------------------------

 

  enable_user_defined_build_types!



   -------------------------------------------

Y el Podfile:
Screen Shot 2023-06-14 at 12 36 12 PM

String:

plugin 'cocoapods-user-defined-build-types'

enable_user_defined_build_types!


require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

platform :ios, '10.0'

target 'rnwithapollopoc' do
  config = use_native_modules!

  pod 'MercadoPagoSDK', :build_type => :dynamic_framework

  use_react_native!(
    :path => config[:reactNativePath],
    # to enable hermes on iOS, change `false` to `true` and then install pods
    :hermes_enabled => false
  )
 
  # Enables Flipper.
  #
  # Note that if you have use_frameworks! enabled, Flipper will not work and
  # you should disable the next line.
  # use_flipper!()

  post_install do |installer|
    react_native_post_install(installer)
  end
end

target 'OneSignalNotificationServiceExtension' do
  pod 'OneSignalXCFramework', '>= 3.0', '< 4.0'
end

When i add library to my RN project this changes the container colors

Describe the bug
When i add library to my RN project this changes the container colors by gray

To Reproduce
Steps to reproduce the behavior:

  1. Install library
  2. Start Payment
  3. See error

Screenshots
Captura

Smartphone (please complete the following information):

  • Device: Pixel_3a_API_30_x86
  • OS: Android 11.0
  • Version 30 apk

Guardar Tarjetas de Crédito y Login

Buenos días, disculpá la molestia. Quería consultar si es posible una vez ingresados los datos de la tarjeta por primera vez guardar los mismos para la próxima vez que se realiza una compra dentro de la aplicación.

Mi otra duda es si hay alguna forma de loguearse en Mercado Pago una vez apretado el botón de "comprar" en vez de hardcodear y poner el mail del payer dentro del script. También se deberían guardar los datos de login para la próxima compra.

Muchas gracias! Espero la respuesta.

Saludos!

[Feature] - Add support for language prop on Android

Motivation

  • Enable users to configure locale from React-Native side
  • Give parity with IOS which is currently supported

Current Limitations

We've to workaround the current way to configure locale for the PX Android library. In the examples they recommend modifying the context from the Application class by initializing an instance of the PXBehaviourConfigurer class.

The problem with that, is that our library is called as a function which receives parameters and starts an Activity. I'll have to review if constantly modifying the context from a runtime function call instead of modifying at startup would imply a perf issue.

Error in production mode, when paying with cash

good morning my query is that in development mode the system works correctly. but in production mode it only accepts credit cards but does not pay cash as "PagoEfectivo"

To Reproduce

  • Use the production access.
  • use this data to generate the id

items:[
{
id:userid,
title,description,quantity,currency_id,unit_price,
category_id:{}
}],
payer: {
email:String,
phone: String,
name: Sstringe,
surname: String,
},
notification_url:url,
============================Return Post.data==============================
{
additional_info: '',
auto_return: '',
back_urls: { failure: '', pending: '', success: '' },
binary_mode: false,
client_id: 'ggggg',
collector_id: 777777777,
coupon_code: null,
coupon_labels: null,
date_created: '2020-08-18T04:51:52.143+00:00',
date_of_expiration: null,
expiration_date_from: null,
expiration_date_to: null,
expires: false,
external_reference: '',
id: 'xxxxxx-xxxxxxxx-9d8xxxxxxxxxxb-xxx-xxx-xxxxxxx',
init_point: 'https://www.mercadopago.com.pe/checkout/v1/redirect?pref_id=**xxxxxxxx-xxxxxxxxx',**
internal_metadata: null,
items: [
{
id: '23',
category_id: '{"type":"tema","productId":22}',
currency_id: 'PEN',
description: 'Liderazgo Integral',
title: 'Liderazgo Integral',
quantity: 1,
unit_price: 100
}
],
marketplace: 'NONE',
marketplace_fee: 0,
metadata: {},
notification_url: 'https://api.xxxxxx.com/client/.........
operation_type: 'regular_payment',
payer: {
phone: { area_code: '', number: '99999999999' },
address: { zip_code: '', street_name: '', street_number: null },
email: 'lxxxxxxxx@gmail.com',
identification: { number: '', type: '' },
name: 'xxxxxxxxxxx',
surname: 'xxxxxxxxxxx',
date_created: null,
last_purchase: null
},
payment_methods: {
default_card_id: null,
default_payment_method_id: null,
excluded_payment_methods: [ [Object] ],
excluded_payment_types: [ [Object] ],
installments: null,
default_installments: null
},
processing_modes: null,
product_id: null,
redirect_urls: { failure: '', pending: '', success: '' },
sandbox_init_point: 'https://sandbox.mercadopago.com.pe/checkout/v1/redirect?pref_id=**xxxxxxxxxxxxxxxxxxxx**',
site_id: 'MPE',
shipments: {
default_shipping_method: null,
receiver_address: {
zip_code: '',
street_name: '',
street_number: null,
floor: '',
apartment: '',
city_name: null,
state_name: null,
country_name: null
}
},
total_amount: null,
last_updated: null
}

Expected behavior
Is it perhaps some data that I have to send in the POST ???? or configure my Mercadopago account ???
image
image PRODUCTION MODE (KEY AND TOKEN)

When I use the card payment it works correctly. payment proceeds.

When I generate the ticket to make the payment with PagoEfectivo (In development mode, TEST-TOKEN AND TEST-KEY) it works. the only problem is in development mode.
image
Image TEST MODE (KEY AND TOKEN)

Getting an extra empty space on payment method

Describe the bug
On iOS, When I click on start payment I get an extra blank space with a blank button next to "New card". When I clicked on this empty space the app crashes and I get this error on Xcode:
Screen Shot 2022-01-11 at 5 29 27 AM

How can I fix this?

Screenshots
Simulator Screen Shot - iPhone 12 Pro Max - 2022-01-11 at 03 14 00

Gradle 7.X de@:blackbox-vision_react-native-mercadopago-px' porque usa jcenter()

No puedo correr una app basica luego de haber update gradle a 7.2

Error:

WARNING:: Please remove usages of jcenter() Maven repository from your build scripts and migrate your build to other Maven repositories.
This repository is deprecated and it will be shut down in the future.
See http://developer.android.com/r/tools/jcenter-end-of-service for more information.
Currently detected usages in: root project 'dale', project ':blackbox-vision_react-native-mercadopago-px'

Task :app:checkDebugAarMetadata FAILED

[Feature] - Support for Card Tokenization

Motivation

  • Enable uses cases like save and restore card data from app customers.

Current Limitation

It seems that with v4 SDK this isn't possible. We've open issues in both android and ios PX repositories:

Not being able to build for iOS

Describe the bug
Once I follow the instructions on the repo and run for iOS I get Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. on the VS code terminal. Once I open Xcode and tried to build I get module map file '/Users/juampy/Library/Developer/Xcode/DerivedData/xxxxxxxx-dtwuehfxifcnstgzpzwzcqvoxuud/Build/Products/Debug-iphonesimulator/MLBusinessComponents/MLBusinessComponents.modulemap' not found.. Sometimes when I successfully open the app and try to call MercadoPagoCheckout.createPayment I get TypeError: null is not an object (evaluating '_reactNative.NativeModules.ReactNativeMercadopagoPx.createPayment') .It works on android

To Reproduce
Steps to reproduce the behavior:

  1. Follow the instructions on the repo
  2. Run yarn ios (react-native run-ios)
  3. See error

Expected behavior
The build succeed and the app runs on simulator as before the library got installed.

Screenshots
Screen Shot 2020-11-23 at 18 18 11

Smartphone (please complete the following information):

  • Device: iPhone 11
  • OS: iOS14.2
  • Version: Not sure

Dependencies
"@blackbox-vision/react-native-mercadopago-px": "^0.7.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-firebase/app": "^8.4.7",
"@react-native-firebase/auth": "^9.3.2",
"@react-native-firebase/firestore": "^7.9.1",
"@react-navigation/bottom-tabs": "^5.10.0",
"@react-navigation/native": "^5.8.0",
"@react-navigation/stack": "^5.12.5",
"axios": "^0.21.0",
"contentful": "^7.14.8",
"react": "16.13.1",
"react-contentful": "^2.0.30",
"react-native": "0.63.3",
"react-native-gesture-handler": "^1.8.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-reanimated": "^1.13.1",
"react-native-safe-area-context": "^3.1.8",
"react-native-screens": "^2.14.0",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^12.1.0",
"react-native-svg-uri": "^1.2.3",
"react-native-vector-icons": "^7.1.0",
"react-native-video": "^5.1.0-alpha8",
"react-navigation": "^4.4.3",
"react-navigation-tabs": "^2.10.0"

Problema al obtener el pago

Buenas, estoy usando la librería y todo funciona correctamente salvo por una diferencia que encuentro cuando realizo un pago a través de la web que brinda MercadoPago.

  • Si realizo el pago desde la interfaz que brinda MercadoPago:
    Una vez realizado el pago, cuando voy a obtener la información del mismo a la API de MercadoPago (https://api.mercadopago.com/v1/payments/{id}), me devuelve un json con los items de mi compra en "additional_info.items"

{
"acquirer_reconciliation": [],
"additional_info": {
"authentication_code": null,
"available_balance": null,
"ip_address": "XXX.XXX.X.X",
"items": [
{
"category_id": null,
"description": "Descripcion",
"id": null,
"picture_url": null,
"quantity": "1",
"title": "Titulo",
"unit_price": "300.0"
}
],
"nsu_processadora": null
},
"authorization_code": null,
"binary_mode": false,
"brand_id": null,
"call_for_authorize_id": null,
"captured": true,
"card": {
"cardholder": {
"identification": {
"number": "XXXXXXXX",
"type": "DNI"
},
"name": "APRO"
},
"date_created": "2021-07-23T13:15:16.000-04:00",
"date_last_updated": "2021-07-23T13:15:16.000-04:00",
"expiration_month": 11,
"expiration_year": 2025,
"first_six_digits": "450995",
"id": null,
"last_four_digits": "3704"
},
"charges_details": [],
"collector_id": 130685343,
"corporation_id": null,
"counter_currency": null,
"coupon_amount": 0,
"currency_id": "ARS",
"date_approved": "2021-07-23T13:15:16.963-04:00",
"date_created": "2021-07-23T13:15:16.857-04:00",
"date_last_updated": "2021-07-23T13:15:16.963-04:00",
"date_of_expiration": null,
"deduction_schema": "PROACTIVE_3",
"description": "Descripcion",
"differential_pricing_id": null,
"external_reference": null,
"fee_details": [
{
"amount": 7.23,
"fee_payer": "collector",
"type": "mercadopago_fee"
}
],
"id": 1239029852,
"installments": 1,
"integrator_id": null,
"issuer_id": "310",
"live_mode": false,
"marketplace_owner": null,
"merchant_account_id": null,
"merchant_number": null,
"metadata": {},
"money_release_date": "2021-08-27T13:15:16.963-04:00",
"money_release_schema": null,
"notification_url": null,
"operation_type": "regular_payment",
"order": {
"id": "2993569680",
"type": "mercadopago"
},
"payer": {
"first_name": null,
"last_name": null,
"email": "[email protected]",
"identification": {
"number": "XXXXXXXX",
"type": "DNI"
},
"phone": {
"area_code": null,
"number": null,
"extension": null
},
"type": null,
"entity_type": null,
"id": "795845222"
},
"payment_method_id": "visa",
"payment_type_id": "credit_card",
"platform_id": null,
"point_of_interaction": {},
"pos_id": null,
"processing_mode": "aggregator",
"refunds": [],
"shipping_amount": 0,
"sponsor_id": null,
"statement_descriptor": "XXXXXX",
"status": "approved",
"status_detail": "accredited",
"store_id": null,
"taxes_amount": 0,
"transaction_amount": 300,
"transaction_amount_refunded": 0,
"transaction_details": {
"acquirer_reference": null,
"external_resource_url": null,
"financial_institution": null,
"installment_amount": 300,
"net_received_amount": 292.77,
"overpaid_amount": 0,
"payable_deferral_period": null,
"payment_method_reference_id": null,
"total_paid_amount": 300
}
}

  • Si realizo el pago desde la librería react-native-mercadopago-px:
    Una vez realizado el pago, cuando voy a obtener la información del mismo a la API de MercadoPago (https://api.mercadopago.com/v1/payments/{id}), no me devuelve los items (ni la ip_address, entre otros, aunque por el momento no me interesan esos datos).

{
"acquirer_reconciliation": [],
"additional_info": {
"authentication_code": null,
"available_balance": null,
"nsu_processadora": null
},
"authorization_code": null,
"binary_mode": false,
"brand_id": null,
"call_for_authorize_id": null,
"captured": true,
"card": {
"cardholder": {
"identification": {
"number": "XXXXXXXX",
"type": "DNI"
},
"name": "APRO"
},
"date_created": "2021-07-23T13:13:52.000-04:00",
"date_last_updated": "2021-07-23T13:13:52.000-04:00",
"expiration_month": 11,
"expiration_year": 2025,
"first_six_digits": "503175",
"id": null,
"last_four_digits": "0604"
},
"charges_details": [],
"collector_id": 130685343,
"corporation_id": null,
"counter_currency": null,
"coupon_amount": 0,
"currency_id": "ARS",
"date_approved": "2021-07-23T13:13:52.977-04:00",
"date_created": "2021-07-23T13:13:52.867-04:00",
"date_last_updated": "2021-07-23T13:13:52.977-04:00",
"date_of_expiration": null,
"deduction_schema": "PROACTIVE_3",
"description": "Descripcion",
"differential_pricing_id": null,
"external_reference": null,
"fee_details": [
{
"amount": 7.23,
"fee_payer": "collector",
"type": "mercadopago_fee"
}
],
"id": 1239031297,
"installments": 1,
"integrator_id": null,
"issuer_id": "3",
"live_mode": false,
"marketplace_owner": null,
"merchant_account_id": null,
"merchant_number": null,
"metadata": {},
"money_release_date": "2021-08-27T13:13:52.977-04:00",
"money_release_schema": null,
"notification_url": null,
"operation_type": "regular_payment",
"order": {},
"payer": {
"first_name": null,
"last_name": null,
"email": "[email protected]",
"identification": {
"number": "XXXXXXXX",
"type": "DNI"
},
"phone": {
"area_code": null,
"number": null,
"extension": null
},
"type": null,
"entity_type": null,
"id": "795845222"
},
"payment_method_id": "master",
"payment_type_id": "credit_card",
"platform_id": null,
"point_of_interaction": {},
"pos_id": null,
"processing_mode": "aggregator",
"refunds": [],
"shipping_amount": 0,
"sponsor_id": null,
"statement_descriptor": "PRINCE",
"status": "approved",
"status_detail": "accredited",
"store_id": null,
"taxes_amount": 0,
"transaction_amount": 300,
"transaction_amount_refunded": 0,
"transaction_details": {
"acquirer_reference": null,
"external_resource_url": null,
"financial_institution": null,
"installment_amount": 300,
"net_received_amount": 292.77,
"overpaid_amount": 0,
"payable_deferral_period": null,
"payment_method_reference_id": null,
"total_paid_amount": 300
}
}

Quería saber si a alguien más le ha pasado o si estoy haciendo algo mal.
Saludos y muchas gracias.

Argument 0 (NSNumber) of UIManager.measure must not be null

Hi! when my Mercado Plugin active the autofocus on input to put card number, i got this issue and i cannot continue. How i can turn off this auto Focus on Ios? i dont have any problem with Android, only Ios

Argument 0 (NSNumber) of UIManager.measure must not be null

RCTLogArgumentError(RCTModuleMethod*, unsigned long, objc_object*, char const*)
RCTModuleMethod.mm:67
__41-[RCTModuleMethod processMethodSignature]_block_invoke.164
-[RCTModuleMethod invokeWithBridge:module:arguments:]
facebook::react::invokeInner(RCTBridge*, RCTModuleData*, unsigned int, folly::dynamic const&)
facebook::react::RCTNativeModule::invoke(unsigned int, folly::dynamic&&, int)::$_0::operator()() const
invocation function for block in facebook::react::RCTNativeModule::invoke(unsigned int, folly::dynamic&&, int)
_dispatch_call_block_and_release
_dispatch_client_callout
_dispatch_lane_serial_drain
_dispatch_lane_invoke
_dispatch_workloop_worker_thread
_pthread_wqthread
start_wqthread

image

[Feature] - Support for Flipper on IOS

Motivation

  • Flipper is currently the de facto tooling for react-native >= 0.60.
  • Give the possibility for users in the IOS side to keep using Flipper.

Current limitations

As we've started building the library we found some limitations around Flipper dependencies that generated issues when trying to startup the compilation process to run a debug build on simulator.

For the sake of v1, enabling Flipper on IOS is really necessary, because Flipper is the de facto tooling for debugging apps during development process.

Crash al obtener tipos de documentos en el sdk

Buenas!

Hace poco comenzamos a experimentar un error en la librería de iOS.

Screenshot_2023-03-07_at_15

Esto hace que luego del ingreso del cvv cuando deberia mostrar el ingreso de dni se produce un crash y se cierra la app.

Para Android funciona ok.

Bug to press "PAY" - Nothing Happens

Hola, estoy hace varios dias intentado encontrar el bug de porque no funciona.

Basicamente tengo una app con react native 0.64. Hice una implementacion basica del plugin.

Obtengo el preferenceId, todo bien... pero al intentar utilizar lo siguiente (con sus respectivos datos...)

      const payment = await MercadoPagoCheckout.createPayment({
        publicKey: Env.MP_PUBLIC_KEY,
        preferenceId,
      });

abre la app. Pero al intentar "pagar" (en cualquier caso: Debito, Credito, PagoFacil, etc) hace lo que se muestra en la imagen y luego se queda ahi. No comprendo porque ya que ni si quiera tira error en la consola.

Screenshot_20210910-182512_sensorstest

Gracias y aprecio cualquier ayuda del motivo del bug.
Saludos

Comenzar a usar Mercado Pago Px

Hola. Siempre me he dedicado a hacer Front-end en React Native pero nunca hice Back-end asi que disculpen por mi ignorancia. Seguí todos los pasos de instalación y requisitos previos. Estoy utilizando el Example Usage en una screen dentro de mi aplicación llamada MercadoPagoTest.js y la copie y pegué tal cual como está escrito. Posteriormente creé un archivo llamado react-native-config.env dentro de la carpeta "react-native-mercadopago-px" y dentro coloque:

#.env MP_ACCESS_TOKEN= el access token de mi usuario de prueba creado con Postman MP_PUBLIC_KEY= el public key de mi usuario de prueba creado con Postman

Luego en MercadoPagoTest.js cambie las partes que dicen '[email protected]' por el mail de mi usuario de prueba. En ningún momento utilice curl (no sé como utilizarlo). Al colocar npm run android la consola me tira el error:

Execution failed for task ':blackbox-vision_react-native-mercadopago-px:packageDebugResources'

Desearia saber que estoy haciendo mal o como solucionar ese error. Desde ya muchisimas gracias.

Martin.

Adjunto mis scripts:
https://pastebin.com/JKmqDM6k
https://pastebin.com/uXDUy3j5

Error when compiling on ios with RN 0.64.1

Describe the bug
With react native 0.64.1 do not compile on ios

To Reproduce
Steps to reproduce the behavior:

  1. Create a new project with 0.64.1 version yarn react-native init ExampleReactNative
  2. Run yarn add @blackbox-vision/react-native-mercadopago-px
  3. Edit Podfile adding:
  • install! 'cocoapods', :disable_input_output_paths => true
  • use_modular_headers!
  • pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec', :modular_headers => false
  • pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec', :modular_headers => false
  1. Run cd ios && pod install
  2. Run yarn run react-native run-ios
  3. See error

Expected behavior
A successful build

Dependencies

"react": "17.0.1",
"react-native": "0.64.1"
Error
adopago-px/blackbox_vision_react_native_mercadopago_px.swiftmodule/x86_64.swiftdoc

Ditto /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/blackbox_vision_react_native_mercadopago_px.swiftmodule/x86_64-apple-ios-simulator.swiftdoc /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox_vision_react_native_mercadopago_px.swiftdoc (in target 'blackbox-vision-react-native-mercadopago-px' from project 'Pods')
    cd /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    /usr/bin/ditto -rsrc /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox_vision_react_native_mercadopago_px.swiftdoc /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/blackbox_vision_react_native_mercadopago_px.swiftmodule/x86_64-apple-ios-simulator.swiftdoc

Ditto /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/blackbox_vision_react_native_mercadopago_px.swiftmodule/Project/x86_64.swiftsourceinfo /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox_vision_react_native_mercadopago_px.swiftsourceinfo (in target 'blackbox-vision-react-native-mercadopago-px' from project 'Pods')
    cd /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    /usr/bin/ditto -rsrc /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox_vision_react_native_mercadopago_px.swiftsourceinfo /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/blackbox_vision_react_native_mercadopago_px.swiftmodule/Project/x86_64.swiftsourceinfo

Ditto /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/blackbox_vision_react_native_mercadopago_px.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox_vision_react_native_mercadopago_px.swiftsourceinfo (in target 'blackbox-vision-react-native-mercadopago-px' from project 'Pods')
    cd /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    /usr/bin/ditto -rsrc /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox_vision_react_native_mercadopago_px.swiftsourceinfo /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/blackbox_vision_react_native_mercadopago_px.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo

CompileC /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/ReactNativeMercadopagoPx-18d50e7a2ebd11567f2b032694f91ea67fbd25d18b84703ed3c8463a0fd08469.o /Users/fcrizul/Documents/temp/ExampleReactNative/node_modules/@blackbox-vision/react-native-mercadopago-px/ios/ReactNativeMercadopagoPx.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'blackbox-vision-react-native-mercadopago-px' from project 'Pods')
    cd /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    export LANG\=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios10.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version\=2 -fobjc-legacy-dispatch -index-store-path /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Index/DataStore -iquote /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/blackbox-vision-react-native-mercadopago-px-generated-files.hmap -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/blackbox-vision-react-native-mercadopago-px-own-target-headers.hmap -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/blackbox-vision-react-native-mercadopago-px-all-non-framework-target-headers.hmap -ivfsoverlay /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/all-product-headers.yaml -iquote /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/blackbox-vision-react-native-mercadopago-px-project-headers.hmap -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/include -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Private -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Private/blackbox-vision-react-native-mercadopago-px -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/DoubleConversion -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBLazyVector -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCT-Folly -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTRequired -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-Core -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-RCTBlob -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-RCTText -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-callinvoker -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-cxxreact -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-jsi -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-jsinspector -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-perflogger -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-runtimeexecutor -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/ReactCommon -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/Yoga -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/glog -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/DerivedSources-normal/x86_64 -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/DerivedSources/x86_64 -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/DerivedSources -F/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/AndesUI/AndesUI.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLBusinessComponents/MLBusinessComponents.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardDrawer/MLCardDrawer.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardForm/MLCardForm.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MercadoPagoSDK/MercadoPagoSDK.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBReactNativeSpec/FBReactNativeSpec.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FXBlurView/FXBlurView.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/JRSwizzle/JRSwizzle.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/MLUI/MLUI.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTAnimation/React-RCTAnimation.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTBlob/React-RCTBlob.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTImage/React-RCTImage.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTLinking/React-RCTLinking.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTNetwork/React-RCTNetwork.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTSettings/React-RCTSettings.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTText/React-RCTText.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTVibration/React-RCTVibration.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/ReactCommon/ReactCommon.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/cxxreact/React-cxxreact.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/folly/RCT-Folly.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsi/React-jsi.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsinspector/React-jsinspector.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsireact/React-jsiexecutor.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/reactperflogger/React-perflogger.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Target\ Support\ Files/blackbox-vision-react-native-mercadopago-px/blackbox-vision-react-native-mercadopago-px-prefix.pch -MMD -MT dependencies -MF /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/ReactNativeMercadopagoPx-18d50e7a2ebd11567f2b032694f91ea67fbd25d18b84703ed3c8463a0fd08469.d --serialize-diagnostics /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/ReactNativeMercadopagoPx-18d50e7a2ebd11567f2b032694f91ea67fbd25d18b84703ed3c8463a0fd08469.dia -c /Users/fcrizul/Documents/temp/ExampleReactNative/node_modules/@blackbox-vision/react-native-mercadopago-px/ios/ReactNativeMercadopagoPx.m -o /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/ReactNativeMercadopagoPx-18d50e7a2ebd11567f2b032694f91ea67fbd25d18b84703ed3c8463a0fd08469.o

CompileC /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox-vision-react-native-mercadopago-px-dummy.o /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Target\ Support\ Files/blackbox-vision-react-native-mercadopago-px/blackbox-vision-react-native-mercadopago-px-dummy.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'blackbox-vision-react-native-mercadopago-px' from project 'Pods')
    cd /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    export LANG\=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios10.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version\=2 -fobjc-legacy-dispatch -index-store-path /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Index/DataStore -iquote /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/blackbox-vision-react-native-mercadopago-px-generated-files.hmap -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/blackbox-vision-react-native-mercadopago-px-own-target-headers.hmap -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/blackbox-vision-react-native-mercadopago-px-all-non-framework-target-headers.hmap -ivfsoverlay /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/all-product-headers.yaml -iquote /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/blackbox-vision-react-native-mercadopago-px-project-headers.hmap -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/include -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Private -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Private/blackbox-vision-react-native-mercadopago-px -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/DoubleConversion -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBLazyVector -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCT-Folly -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTRequired -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-Core -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-RCTBlob -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-RCTText -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-callinvoker -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-cxxreact -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-jsi -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-jsinspector -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-perflogger -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-runtimeexecutor -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/ReactCommon -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/Yoga -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/glog -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/DerivedSources-normal/x86_64 -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/DerivedSources/x86_64 -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/DerivedSources -F/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/AndesUI/AndesUI.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLBusinessComponents/MLBusinessComponents.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardDrawer/MLCardDrawer.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardForm/MLCardForm.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MercadoPagoSDK/MercadoPagoSDK.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBReactNativeSpec/FBReactNativeSpec.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FXBlurView/FXBlurView.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/JRSwizzle/JRSwizzle.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/MLUI/MLUI.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTAnimation/React-RCTAnimation.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTBlob/React-RCTBlob.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTImage/React-RCTImage.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTLinking/React-RCTLinking.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTNetwork/React-RCTNetwork.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTSettings/React-RCTSettings.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTText/React-RCTText.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTVibration/React-RCTVibration.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/ReactCommon/ReactCommon.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/cxxreact/React-cxxreact.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/folly/RCT-Folly.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsi/React-jsi.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsinspector/React-jsinspector.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsireact/React-jsiexecutor.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/reactperflogger/React-perflogger.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Target\ Support\ Files/blackbox-vision-react-native-mercadopago-px/blackbox-vision-react-native-mercadopago-px-prefix.pch -MMD -MT dependencies -MF /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox-vision-react-native-mercadopago-px-dummy.d --serialize-diagnostics /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox-vision-react-native-mercadopago-px-dummy.dia -c /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Target\ Support\ Files/blackbox-vision-react-native-mercadopago-px/blackbox-vision-react-native-mercadopago-px-dummy.m -o /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox-vision-react-native-mercadopago-px-dummy.o

Libtool /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/libblackbox-vision-react-native-mercadopago-px.a normal (in target 'blackbox-vision-react-native-mercadopago-px' from project 'Pods')
    cd /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    export IPHONEOS_DEPLOYMENT_TARGET\=10.0
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only x86_64 -D -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk -L/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px -filelist /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox-vision-react-native-mercadopago-px.LinkFileList -dependency_info /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox-vision-react-native-mercadopago-px_libtool_dependency_info.dat -o /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/libblackbox-vision-react-native-mercadopago-px.a

WriteAuxiliaryFile /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Script-6A7FF1C070D4F4C9668B45432067EEEB.sh (in target 'blackbox-vision-react-native-mercadopago-px' from project 'Pods')
    cd /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    write-file /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Script-6A7FF1C070D4F4C9668B45432067EEEB.sh

PhaseScriptExecution Copy\ generated\ compatibility\ header /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Script-6A7FF1C070D4F4C9668B45432067EEEB.sh (in target 'blackbox-vision-react-native-mercadopago-px' from project 'Pods')
    cd /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    export ACTION\=build
    export AD_HOC_CODE_SIGNING_ALLOWED\=YES
    export ALTERNATE_GROUP\=staff
    export ALTERNATE_MODE\=u+w,go-w,a+rX
    export ALTERNATE_OWNER\=fcrizul
    export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES\=NO
    export ALWAYS_SEARCH_USER_PATHS\=NO
    export ALWAYS_USE_SEPARATE_HEADERMAPS\=NO
    export APPLE_INTERNAL_DEVELOPER_DIR\=/AppleInternal/Developer
    export APPLE_INTERNAL_DIR\=/AppleInternal
    export APPLE_INTERNAL_DOCUMENTATION_DIR\=/AppleInternal/Documentation
    export APPLE_INTERNAL_LIBRARY_DIR\=/AppleInternal/Library
    export APPLE_INTERNAL_TOOLS\=/AppleInternal/Developer/Tools
    export APPLICATION_EXTENSION_API_ONLY\=NO
    export APPLY_RULES_IN_COPY_FILES\=NO
    export APPLY_RULES_IN_COPY_HEADERS\=NO
    export ARCHS\=x86_64
    export ARCHS_STANDARD\=arm64\ x86_64\ i386
    export ARCHS_STANDARD_32_64_BIT\=arm64\ i386\ x86_64
    export ARCHS_STANDARD_32_BIT\=i386
    export ARCHS_STANDARD_64_BIT\=arm64\ x86_64
    export ARCHS_STANDARD_INCLUDING_64_BIT\=arm64\ x86_64\ i386
    export ARCHS_UNIVERSAL_IPHONE_OS\=arm64\ i386\ x86_64
    export ASSETCATALOG_FILTER_FOR_DEVICE_MODEL\=iPhone13,2
    export ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION\=14.5
    export AVAILABLE_PLATFORMS\=appletvos\ appletvsimulator\ iphoneos\ iphonesimulator\ macosx\ watchos\ watchsimulator
    export BITCODE_GENERATION_MODE\=marker
    export BUILD_ACTIVE_RESOURCES_ONLY\=YES
    export BUILD_COMPONENTS\=headers\ build
    export BUILD_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products
    export BUILD_LIBRARY_FOR_DISTRIBUTION\=NO
    export BUILD_ROOT\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products
    export BUILD_STYLE\=
    export BUILD_VARIANTS\=normal
    export BUILT_PRODUCTS_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px
    export BUNDLE_CONTENTS_FOLDER_PATH_deep\=Contents/
    export BUNDLE_EXECUTABLE_FOLDER_NAME_deep\=MacOS
    export BUNDLE_FORMAT\=shallow
    export BUNDLE_FRAMEWORKS_FOLDER_PATH\=Frameworks
    export BUNDLE_PLUGINS_FOLDER_PATH\=PlugIns
    export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH\=PrivateHeaders
    export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH\=Headers
    export CACHE_ROOT\=/var/folders/rh/3r6w7yvs2xd8z48183yz6_7r0000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode
    export CCHROOT\=/var/folders/rh/3r6w7yvs2xd8z48183yz6_7r0000gn/C/com.apple.DeveloperTools/12.5-12E262/Xcode
    export CHMOD\=/bin/chmod
    export CHOWN\=/usr/sbin/chown
    export CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED\=YES
    export CLANG_ANALYZER_NONNULL\=YES
    export CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION\=YES_AGGRESSIVE
    export CLANG_CXX_LANGUAGE_STANDARD\=gnu++14
    export CLANG_CXX_LIBRARY\=libc++
    export CLANG_ENABLE_MODULES\=YES
    export CLANG_ENABLE_MODULE_DEBUGGING\=NO
    export CLANG_ENABLE_OBJC_ARC\=YES
    export CLANG_ENABLE_OBJC_WEAK\=NO
    export CLANG_MODULES_BUILD_SESSION_FILE\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
    export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING\=YES
    export CLANG_WARN_BOOL_CONVERSION\=YES
    export CLANG_WARN_COMMA\=YES
    export CLANG_WARN_CONSTANT_CONVERSION\=YES
    export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS\=YES
    export CLANG_WARN_DIRECT_OBJC_ISA_USAGE\=YES_ERROR
    export CLANG_WARN_DOCUMENTATION_COMMENTS\=YES
    export CLANG_WARN_EMPTY_BODY\=YES
    export CLANG_WARN_ENUM_CONVERSION\=YES
    export CLANG_WARN_INFINITE_RECURSION\=YES
    export CLANG_WARN_INT_CONVERSION\=YES
    export CLANG_WARN_NON_LITERAL_NULL_CONVERSION\=YES
    export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF\=YES
    export CLANG_WARN_OBJC_LITERAL_CONVERSION\=YES
    export CLANG_WARN_OBJC_ROOT_CLASS\=YES_ERROR
    export CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER\=NO
    export CLANG_WARN_RANGE_LOOP_ANALYSIS\=YES
    export CLANG_WARN_STRICT_PROTOTYPES\=YES
    export CLANG_WARN_SUSPICIOUS_MOVE\=YES
    export CLANG_WARN_UNGUARDED_AVAILABILITY\=YES_AGGRESSIVE
    export CLANG_WARN_UNREACHABLE_CODE\=YES
    export CLANG_WARN__DUPLICATE_METHOD_MATCH\=YES
    export CLASS_FILE_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/JavaClasses
    export CLEAN_PRECOMPS\=YES
    export CLONE_HEADERS\=NO
    export CODESIGNING_FOLDER_PATH\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/libblackbox-vision-react-native-mercadopago-px.a
    export CODE_SIGNING_ALLOWED\=NO
    export CODE_SIGNING_REQUIRED\=YES
    export CODE_SIGN_CONTEXT_CLASS\=XCiPhoneSimulatorCodeSignContext
    export CODE_SIGN_IDENTITY\=-
    export CODE_SIGN_INJECT_BASE_ENTITLEMENTS\=YES
    export COLOR_DIAGNOSTICS\=NO
    export COMBINE_HIDPI_IMAGES\=NO
    export COMPILER_INDEX_STORE_ENABLE\=Default
    export COMPOSITE_SDK_DIRS\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/CompositeSDKs
    export COMPRESS_PNG_FILES\=YES
    export CONFIGURATION\=Debug
    export CONFIGURATION_BUILD_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px
    export CONFIGURATION_TEMP_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator
    export COPYING_PRESERVES_HFS_DATA\=NO
    export COPY_HEADERS_RUN_UNIFDEF\=NO
    export COPY_PHASE_STRIP\=NO
    export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS\=YES
    export CORRESPONDING_DEVICE_PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
    export CORRESPONDING_DEVICE_PLATFORM_NAME\=iphoneos
    export CORRESPONDING_DEVICE_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.5.sdk
    export CORRESPONDING_DEVICE_SDK_NAME\=iphoneos14.5
    export CP\=/bin/cp
    export CREATE_INFOPLIST_SECTION_IN_BINARY\=NO
    export CURRENT_ARCH\=undefined_arch
    export CURRENT_VARIANT\=normal
    export DEAD_CODE_STRIPPING\=YES
    export DEBUGGING_SYMBOLS\=YES
    export DEBUG_INFORMATION_FORMAT\=dwarf
    export DEFAULT_COMPILER\=com.apple.compilers.llvm.clang.1_0
    export DEFAULT_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions
    export DEFAULT_KEXT_INSTALL_PATH\=/System/Library/Extensions
    export DEFINES_MODULE\=NO
    export DEPLOYMENT_LOCATION\=NO
    export DEPLOYMENT_POSTPROCESSING\=NO
    export DEPLOYMENT_TARGET_CLANG_ENV_NAME\=IPHONEOS_DEPLOYMENT_TARGET
    export DEPLOYMENT_TARGET_CLANG_FLAG_NAME\=mios-simulator-version-min
    export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX\=-mios-simulator-version-min\=
    export DEPLOYMENT_TARGET_LD_ENV_NAME\=IPHONEOS_DEPLOYMENT_TARGET
    export DEPLOYMENT_TARGET_LD_FLAG_NAME\=ios_simulator_version_min
    export DEPLOYMENT_TARGET_SETTING_NAME\=IPHONEOS_DEPLOYMENT_TARGET
    export DEPLOYMENT_TARGET_SUGGESTED_VALUES\=9.0\ 9.2\ 10.0\ 10.2\ 11.0\ 11.2\ 11.4\ 12.1\ 12.3\ 13.0\ 13.2\ 13.4\ 13.6\ 14.1\ 14.3\ 14.5
    export DERIVED_FILES_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/DerivedSources
    export DERIVED_FILE_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/DerivedSources
    export DERIVED_SOURCES_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/DerivedSources
    export DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications
    export DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin
    export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export DEVELOPER_FRAMEWORKS_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_FRAMEWORKS_DIR_QUOTED\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Library
    export DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
    export DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Tools
    export DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr
    export DEVELOPMENT_LANGUAGE\=en
    export DONT_GENERATE_INFOPLIST_FILE\=NO
    export DO_HEADER_SCANNING_IN_JAM\=NO
    export DSTROOT\=/tmp/Pods.dst
    export DT_TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
    export DWARF_DSYM_FILE_NAME\=libblackbox-vision-react-native-mercadopago-px.a.dSYM
    export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT\=NO
    export DWARF_DSYM_FOLDER_PATH\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px
    export EFFECTIVE_PLATFORM_NAME\=-iphonesimulator
    export EMBEDDED_CONTENT_CONTAINS_SWIFT\=NO
    export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE\=NO
    export ENABLE_BITCODE\=NO
    export ENABLE_DEFAULT_HEADER_SEARCH_PATHS\=YES
    export ENABLE_HARDENED_RUNTIME\=NO
    export ENABLE_HEADER_DEPENDENCIES\=YES
    export ENABLE_ON_DEMAND_RESOURCES\=NO
    export ENABLE_PREVIEWS\=NO
    export ENABLE_STRICT_OBJC_MSGSEND\=YES
    export ENABLE_TESTABILITY\=YES
    export ENABLE_TESTING_SEARCH_PATHS\=NO
    export ENTITLEMENTS_DESTINATION\=__entitlements
    export ENTITLEMENTS_REQUIRED\=YES
    export EXCLUDED_ARCHS\=arm64\ 
    export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS\=.DS_Store\ .svn\ .git\ .hg\ CVS
    export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES\=\*.nib\ \*.lproj\ \*.framework\ \*.gch\ \*.xcode\*\ \*.xcassets\ \(\*\)\ .DS_Store\ CVS\ .svn\ .git\ .hg\ \*.pbproj\ \*.pbxproj
    export EXECUTABLE_EXTENSION\=a
    export EXECUTABLE_NAME\=libblackbox-vision-react-native-mercadopago-px.a
    export EXECUTABLE_PATH\=libblackbox-vision-react-native-mercadopago-px.a
    export EXECUTABLE_PREFIX\=lib
    export EXECUTABLE_SUFFIX\=.a
    export FILE_LIST\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects/LinkFileList
    export FIXED_FILES_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/FixedFiles
    export FRAMEWORK_FLAG_PREFIX\=-framework
    export FRAMEWORK_SEARCH_PATHS\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px\ 
    export FRAMEWORK_VERSION\=A
    export FULL_PRODUCT_NAME\=libblackbox-vision-react-native-mercadopago-px.a
    export GCC3_VERSION\=3.3
    export GCC_C_LANGUAGE_STANDARD\=gnu11
    export GCC_DYNAMIC_NO_PIC\=NO
    export GCC_NO_COMMON_BLOCKS\=YES
    export GCC_OBJC_LEGACY_DISPATCH\=YES
    export GCC_OPTIMIZATION_LEVEL\=0
    export GCC_PFE_FILE_C_DIALECTS\=c\ objective-c\ c++\ objective-c++
    export GCC_PREFIX_HEADER\=Target\ Support\ Files/blackbox-vision-react-native-mercadopago-px/blackbox-vision-react-native-mercadopago-px-prefix.pch
    export GCC_PREPROCESSOR_DEFINITIONS\=POD_CONFIGURATION_DEBUG\=1\ DEBUG\=1\ \ COCOAPODS\=1
    export GCC_TREAT_WARNINGS_AS_ERRORS\=NO
    export GCC_VERSION\=com.apple.compilers.llvm.clang.1_0
    export GCC_VERSION_IDENTIFIER\=com_apple_compilers_llvm_clang_1_0
    export GCC_WARN_64_TO_32_BIT_CONVERSION\=YES
    export GCC_WARN_ABOUT_RETURN_TYPE\=YES_ERROR
    export GCC_WARN_UNDECLARED_SELECTOR\=YES
    export GCC_WARN_UNINITIALIZED_AUTOS\=YES_AGGRESSIVE
    export GCC_WARN_UNUSED_FUNCTION\=YES
    export GCC_WARN_UNUSED_VARIABLE\=YES
    export GENERATED_MODULEMAP_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/GeneratedModuleMaps-iphonesimulator
    export GENERATE_MASTER_OBJECT_FILE\=NO
    export GENERATE_PKGINFO_FILE\=NO
    export GENERATE_PROFILING_CODE\=NO
    export GENERATE_TEXT_BASED_STUBS\=NO
    export GID\=20
    export GROUP\=staff
    export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT\=YES
    export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES\=YES
    export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS\=YES
    export HEADERMAP_INCLUDES_PROJECT_HEADERS\=YES
    export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES\=YES
    export HEADERMAP_USES_VFS\=NO
    export HEADER_SEARCH_PATHS\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/include\ \ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Private\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Private/blackbox-vision-react-native-mercadopago-px\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/DoubleConversion\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBLazyVector\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBReactNativeSpec\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCT-Folly\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTRequired\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTTypeSafety\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-Core\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-RCTBlob\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-RCTText\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-callinvoker\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-cxxreact\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-jsi\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-jsiexecutor\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-jsinspector\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-perflogger\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-runtimeexecutor\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/ReactCommon\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/Yoga\"\ \"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/glog\"
    export HIDE_BITCODE_SYMBOLS\=YES
    export HOME\=/Users/fcrizul
    export ICONV\=/usr/bin/iconv
    export INFOPLIST_EXPAND_BUILD_SETTINGS\=YES
    export INFOPLIST_OUTPUT_FORMAT\=binary
    export INFOPLIST_PREPROCESS\=NO
    export INLINE_PRIVATE_FRAMEWORKS\=NO
    export INSTALLHDRS_COPY_PHASE\=NO
    export INSTALLHDRS_SCRIPT_PHASE\=NO
    export INSTALL_DIR\=/tmp/Pods.dst/usr/local/lib
    export INSTALL_GROUP\=staff
    export INSTALL_MODE_FLAG\=u+w,go-w,a+rX
    export INSTALL_OWNER\=fcrizul
    export INSTALL_PATH\=/usr/local/lib
    export INSTALL_ROOT\=/tmp/Pods.dst
    export IPHONEOS_DEPLOYMENT_TARGET\=10.0
    export JAVAC_DEFAULT_FLAGS\=-J-Xms64m\ -J-XX:NewSize\=4M\ -J-Dfile.encoding\=UTF8
    export JAVA_APP_STUB\=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
    export JAVA_ARCHIVE_CLASSES\=YES
    export JAVA_ARCHIVE_TYPE\=JAR
    export JAVA_COMPILER\=/usr/bin/javac
    export JAVA_FRAMEWORK_RESOURCES_DIRS\=Resources
    export JAVA_JAR_FLAGS\=cv
    export JAVA_SOURCE_SUBDIR\=.
    export JAVA_USE_DEPENDENCIES\=YES
    export JAVA_ZIP_FLAGS\=-urg
    export JIKES_DEFAULT_FLAGS\=+E\ +OLDCSO
    export KEEP_PRIVATE_EXTERNS\=NO
    export LD_DEPENDENCY_INFO_FILE\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/undefined_arch/blackbox-vision-react-native-mercadopago-px_dependency_info.dat
    export LD_GENERATE_MAP_FILE\=NO
    export LD_MAP_FILE_PATH\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/blackbox-vision-react-native-mercadopago-px-LinkMap-normal-undefined_arch.txt
    export LD_NO_PIE\=NO
    export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER\=YES
    export LEGACY_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
    export LEX\=lex
    export LIBRARY_DEXT_INSTALL_PATH\=/Library/DriverExtensions
    export LIBRARY_FLAG_NOSPACE\=YES
    export LIBRARY_FLAG_PREFIX\=-l
    export LIBRARY_KEXT_INSTALL_PATH\=/Library/Extensions
    export LIBRARY_SEARCH_PATHS\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px\ 
    export LINKER_DISPLAYS_MANGLED_NAMES\=NO
    export LINK_FILE_LIST_normal_x86_64\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox-vision-react-native-mercadopago-px.LinkFileList
    export LINK_WITH_STANDARD_LIBRARIES\=YES
    export LLVM_TARGET_TRIPLE_OS_VERSION\=ios10.0
    export LLVM_TARGET_TRIPLE_SUFFIX\=-simulator
    export LLVM_TARGET_TRIPLE_VENDOR\=apple
    export LOCALIZATION_EXPORT_SUPPORTED\=YES
    export LOCALIZED_STRING_MACRO_NAMES\=NSLocalizedString\ CFCopyLocalizedString
    export LOCALIZED_STRING_SWIFTUI_SUPPORT\=YES
    export LOCAL_ADMIN_APPS_DIR\=/Applications/Utilities
    export LOCAL_APPS_DIR\=/Applications
    export LOCAL_DEVELOPER_DIR\=/Library/Developer
    export LOCAL_LIBRARY_DIR\=/Library
    export LOCROOT\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    export LOCSYMROOT\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    export MACH_O_TYPE\=staticlib
    export MAC_OS_X_PRODUCT_BUILD_VERSION\=20D75
    export MAC_OS_X_VERSION_ACTUAL\=110201
    export MAC_OS_X_VERSION_MAJOR\=110000
    export MAC_OS_X_VERSION_MINOR\=110200
    export METAL_LIBRARY_FILE_BASE\=default
    export METAL_LIBRARY_OUTPUT_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/
    export MODULEMAP_FILE\=Headers/Public/blackbox_vision_react_native_mercadopago_px/blackbox-vision-react-native-mercadopago-px.modulemap
    export MODULE_CACHE_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
    export MTL_ENABLE_DEBUG_INFO\=INCLUDE_SOURCE
    export MTL_FAST_MATH\=YES
    export NATIVE_ARCH\=x86_64
    export NATIVE_ARCH_32_BIT\=i386
    export NATIVE_ARCH_64_BIT\=x86_64
    export NATIVE_ARCH_ACTUAL\=x86_64
    export NO_COMMON\=YES
    export OBJC_ABI_VERSION\=2
    export OBJECT_FILE_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects
    export OBJECT_FILE_DIR_normal\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal
    export OBJROOT\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex
    export ONLY_ACTIVE_ARCH\=YES
    export OS\=MACOS
    export OSAC\=/usr/bin/osacompile
    export OTHER_CFLAGS\=\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/AndesUI/AndesUI.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLBusinessComponents/MLBusinessComponents.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardDrawer/MLCardDrawer.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardForm/MLCardForm.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MercadoPagoSDK/MercadoPagoSDK.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBReactNativeSpec/FBReactNativeSpec.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FXBlurView/FXBlurView.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/JRSwizzle/JRSwizzle.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/MLUI/MLUI.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTAnimation/React-RCTAnimation.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTBlob/React-RCTBlob.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTImage/React-RCTImage.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTLinking/React-RCTLinking.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTNetwork/React-RCTNetwork.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTSettings/React-RCTSettings.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTText/React-RCTText.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTVibration/React-RCTVibration.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React/React-Core.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/ReactCommon/ReactCommon.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/cxxreact/React-cxxreact.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/folly/RCT-Folly.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsi/React-jsi.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsinspector/React-jsinspector.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsireact/React-jsiexecutor.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/reactperflogger/React-perflogger.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/yoga/Yoga.modulemap\"
    export OTHER_CPLUSPLUSFLAGS\=\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/AndesUI/AndesUI.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLBusinessComponents/MLBusinessComponents.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardDrawer/MLCardDrawer.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardForm/MLCardForm.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MercadoPagoSDK/MercadoPagoSDK.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBReactNativeSpec/FBReactNativeSpec.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FXBlurView/FXBlurView.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/JRSwizzle/JRSwizzle.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/MLUI/MLUI.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTAnimation/React-RCTAnimation.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTBlob/React-RCTBlob.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTImage/React-RCTImage.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTLinking/React-RCTLinking.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTNetwork/React-RCTNetwork.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTSettings/React-RCTSettings.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTText/React-RCTText.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTVibration/React-RCTVibration.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React/React-Core.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/ReactCommon/ReactCommon.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/cxxreact/React-cxxreact.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/folly/RCT-Folly.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsi/React-jsi.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsinspector/React-jsinspector.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsireact/React-jsiexecutor.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/reactperflogger/React-perflogger.modulemap\"\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/yoga/Yoga.modulemap\"
    export OTHER_SWIFT_FLAGS\=\ -D\ COCOAPODS\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/AndesUI/AndesUI.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLBusinessComponents/MLBusinessComponents.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardDrawer/MLCardDrawer.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardForm/MLCardForm.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MercadoPagoSDK/MercadoPagoSDK.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBReactNativeSpec/FBReactNativeSpec.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FXBlurView/FXBlurView.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/JRSwizzle/JRSwizzle.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/MLUI/MLUI.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTAnimation/React-RCTAnimation.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTBlob/React-RCTBlob.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTImage/React-RCTImage.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTLinking/React-RCTLinking.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTNetwork/React-RCTNetwork.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTSettings/React-RCTSettings.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTText/React-RCTText.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTVibration/React-RCTVibration.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React/React-Core.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/ReactCommon/ReactCommon.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/cxxreact/React-cxxreact.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/folly/RCT-Folly.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsi/React-jsi.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsinspector/React-jsinspector.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsireact/React-jsiexecutor.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/reactperflogger/React-perflogger.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/yoga/Yoga.modulemap\"\ -import-underlying-module\ -Xcc\ -fmodule-map-file\=\"/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/blackbox_vision_react_native_mercadopago_px/blackbox-vision-react-native-mercadopago-px.modulemap\"
    export PACKAGE_TYPE\=com.apple.package-type.static-library
    export PASCAL_STRINGS\=YES
    export PATH\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/var/folders/rh/3r6w7yvs2xd8z48183yz6_7r0000gn/T/yarn--1620655842267-0.4365704470884142:/Users/fcrizul/Documents/temp/ExampleReactNative/node_modules/.bin:/Users/fcrizul/.config/yarn/link/node_modules/.bin:/Users/fcrizul/.nvm/versions/node/v12.21.0/libexec/lib/node_modules/npm/bin/node-gyp-bin:/Users/fcrizul/.nvm/versions/node/v12.21.0/lib/node_modules/npm/bin/node-gyp-bin:/Users/fcrizul/.nvm/versions/node/v12.21.0/bin/node_modules/npm/bin/node-gyp-bin:/Users/fcrizul/.nvm/versions/node/v12.21.0/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Apple/usr/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/fcrizul/.nvm/versions/node/v10.15.3/bin:/Users/fcrizul/flutter-sdk/bin
    export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES\=/usr/include\ /usr/local/include\ /System/Library/Frameworks\ /System/Library/PrivateFrameworks\ /Applications/Xcode.app/Contents/Developer/Headers\ /Applications/Xcode.app/Contents/Developer/SDKs\ /Applications/Xcode.app/Contents/Developer/Platforms
    export PER_ARCH_OBJECT_FILE_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/undefined_arch
    export PER_VARIANT_OBJECT_FILE_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal
    export PKGINFO_FILE_PATH\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/PkgInfo
    export PLATFORM_DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
    export PLATFORM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
    export PLATFORM_DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library
    export PLATFORM_DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
    export PLATFORM_DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
    export PLATFORM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
    export PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
    export PLATFORM_DISPLAY_NAME\=iOS\ Simulator
    export PLATFORM_FAMILY_NAME\=iOS
    export PLATFORM_NAME\=iphonesimulator
    export PLATFORM_PREFERRED_ARCH\=x86_64
    export PLATFORM_PRODUCT_BUILD_VERSION\=18E182
    export PLIST_FILE_OUTPUT_FORMAT\=binary
    export PODS_BUILD_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products
    export PODS_CONFIGURATION_BUILD_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator
    export PODS_ROOT\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    export PODS_TARGET_SRCROOT\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/../../node_modules/@blackbox-vision/react-native-mercadopago-px
    export PODS_XCFRAMEWORKS_BUILD_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/XCFrameworkIntermediates
    export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR\=YES
    export PRECOMP_DESTINATION_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/PrefixHeaders
    export PRESERVE_DEAD_CODE_INITS_AND_TERMS\=NO
    export PRODUCT_BUNDLE_IDENTIFIER\=org.cocoapods.blackbox-vision-react-native-mercadopago-px
    export PRODUCT_MODULE_NAME\=blackbox_vision_react_native_mercadopago_px
    export PRODUCT_NAME\=blackbox-vision-react-native-mercadopago-px
    export PRODUCT_SETTINGS_PATH\=
    export PRODUCT_TYPE\=com.apple.product-type.library.static
    export PROFILING_CODE\=NO
    export PROJECT\=Pods
    export PROJECT_DERIVED_FILE_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/DerivedSources
    export PROJECT_DIR\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    export PROJECT_FILE_PATH\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Pods.xcodeproj
    export PROJECT_NAME\=Pods
    export PROJECT_TEMP_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build
    export PROJECT_TEMP_ROOT\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex
    export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS\=YES
    export REMOVE_CVS_FROM_RESOURCES\=YES
    export REMOVE_GIT_FROM_RESOURCES\=YES
    export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES\=YES
    export REMOVE_HG_FROM_RESOURCES\=YES
    export REMOVE_SVN_FROM_RESOURCES\=YES
    export REZ_COLLECTOR_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/ResourceManagerResources
    export REZ_EXECUTABLE\=YES
    export REZ_OBJECTS_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/ResourceManagerResources/Objects
    export REZ_SEARCH_PATHS\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px\ 
    export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES\=NO
    export SCRIPT_INPUT_FILE_0\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/DerivedSources/blackbox_vision_react_native_mercadopago_px-Swift.h
    export SCRIPT_INPUT_FILE_1\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/blackbox_vision_react_native_mercadopago_px/blackbox-vision-react-native-mercadopago-px.modulemap
    export SCRIPT_INPUT_FILE_2\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/blackbox_vision_react_native_mercadopago_px/blackbox-vision-react-native-mercadopago-px-umbrella.h
    export SCRIPT_INPUT_FILE_COUNT\=3
    export SCRIPT_INPUT_FILE_LIST_COUNT\=0
    export SCRIPT_OUTPUT_FILE_0\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/blackbox_vision_react_native_mercadopago_px.modulemap
    export SCRIPT_OUTPUT_FILE_1\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/blackbox-vision-react-native-mercadopago-px-umbrella.h
    export SCRIPT_OUTPUT_FILE_2\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/Swift\ Compatibility\ Header/blackbox_vision_react_native_mercadopago_px-Swift.h
    export SCRIPT_OUTPUT_FILE_COUNT\=3
    export SCRIPT_OUTPUT_FILE_LIST_COUNT\=0
    export SDKROOT\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk
    export SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk
    export SDK_DIR_iphonesimulator\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk
    export SDK_DIR_iphonesimulator14_5\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk
    export SDK_NAME\=iphonesimulator14.5
    export SDK_NAMES\=iphonesimulator14.5
    export SDK_PRODUCT_BUILD_VERSION\=18E182
    export SDK_VERSION\=14.5
    export SDK_VERSION_ACTUAL\=140500
    export SDK_VERSION_MAJOR\=140000
    export SDK_VERSION_MINOR\=140500
    export SED\=/usr/bin/sed
    export SEPARATE_STRIP\=NO
    export SEPARATE_SYMBOL_EDIT\=NO
    export SET_DIR_MODE_OWNER_GROUP\=YES
    export SET_FILE_MODE_OWNER_GROUP\=NO
    export SHALLOW_BUNDLE\=NO
    export SHARED_DERIVED_FILE_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/DerivedSources
    export SHARED_PRECOMPS_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/PrecompiledHeaders
    export SKIP_INSTALL\=YES
    export SOURCE_ROOT\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    export SRCROOT\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    export STRINGS_FILE_INFOPLIST_RENAME\=YES
    export STRINGS_FILE_OUTPUT_ENCODING\=binary
    export STRIP_BITCODE_FROM_COPIED_FILES\=NO
    export STRIP_INSTALLED_PRODUCT\=NO
    export STRIP_STYLE\=debugging
    export STRIP_SWIFT_SYMBOLS\=YES
    export SUPPORTED_DEVICE_FAMILIES\=1,2
    export SUPPORTED_PLATFORMS\=iphoneos\ iphonesimulator
    export SUPPORTS_TEXT_BASED_API\=NO
    export SWIFT_ACTIVE_COMPILATION_CONDITIONS\=DEBUG\ 
    export SWIFT_INCLUDE_PATHS\=\ \"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/AndesUI\"\ \"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLBusinessComponents\"\ \"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardDrawer\"\ \"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardForm\"\ \"/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MercadoPagoSDK\"
    export SWIFT_OPTIMIZATION_LEVEL\=-Onone
    export SWIFT_PLATFORM_TARGET_PREFIX\=ios
    export SWIFT_RESPONSE_FILE_PATH_normal_x86_64\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Objects-normal/x86_64/blackbox-vision-react-native-mercadopago-px.SwiftFileList
    export SWIFT_VERSION\=4.2
    export SYMROOT\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products
    export SYSTEM_ADMIN_APPS_DIR\=/Applications/Utilities
    export SYSTEM_APPS_DIR\=/Applications
    export SYSTEM_CORE_SERVICES_DIR\=/System/Library/CoreServices
    export SYSTEM_DEMOS_DIR\=/Applications/Extras
    export SYSTEM_DEVELOPER_APPS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications
    export SYSTEM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin
    export SYSTEM_DEVELOPER_DEMOS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built\ Examples
    export SYSTEM_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
    export SYSTEM_DEVELOPER_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library
    export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Graphics\ Tools
    export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Java\ Tools
    export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Performance\ Tools
    export SYSTEM_DEVELOPER_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes
    export SYSTEM_DEVELOPER_TOOLS\=/Applications/Xcode.app/Contents/Developer/Tools
    export SYSTEM_DEVELOPER_TOOLS_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/documentation/DeveloperTools
    export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes/DeveloperTools
    export SYSTEM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr
    export SYSTEM_DEVELOPER_UTILITIES_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
    export SYSTEM_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions
    export SYSTEM_DOCUMENTATION_DIR\=/Library/Documentation
    export SYSTEM_KEXT_INSTALL_PATH\=/System/Library/Extensions
    export SYSTEM_LIBRARY_DIR\=/System/Library
    export TAPI_VERIFY_MODE\=ErrorsOnly
    export TARGETED_DEVICE_FAMILY\=1,2
    export TARGETNAME\=blackbox-vision-react-native-mercadopago-px
    export TARGET_BUILD_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px
    export TARGET_DEVICE_IDENTIFIER\=408847DC-AD8F-409E-A65A-EA769BB62007
    export TARGET_DEVICE_MODEL\=iPhone13,2
    export TARGET_DEVICE_OS_VERSION\=14.5
    export TARGET_DEVICE_PLATFORM_NAME\=iphonesimulator
    export TARGET_NAME\=blackbox-vision-react-native-mercadopago-px
    export TARGET_TEMP_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build
    export TEMP_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build
    export TEMP_FILES_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build
    export TEMP_FILE_DIR\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build
    export TEMP_ROOT\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex
    export TEST_FRAMEWORK_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/Developer/Library/Frameworks
    export TEST_LIBRARY_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib
    export TOOLCHAINS\=com.apple.dt.toolchain.XcodeDefault
    export TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
    export TREAT_MISSING_BASELINES_AS_TEST_FAILURES\=NO
    export UID\=501
    export UNSTRIPPED_PRODUCT\=NO
    export USER\=fcrizul
    export USER_APPS_DIR\=/Users/fcrizul/Applications
    export USER_LIBRARY_DIR\=/Users/fcrizul/Library
    export USE_DYNAMIC_NO_PIC\=YES
    export USE_HEADERMAP\=YES
    export USE_HEADER_SYMLINKS\=NO
    export USE_LLVM_TARGET_TRIPLES\=YES
    export USE_LLVM_TARGET_TRIPLES_FOR_CLANG\=YES
    export USE_LLVM_TARGET_TRIPLES_FOR_LD\=YES
    export USE_LLVM_TARGET_TRIPLES_FOR_TAPI\=YES
    export USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES\=YES
    export VALIDATE_DEVELOPMENT_ASSET_PATHS\=YES_ERROR
    export VALIDATE_PRODUCT\=NO
    export VALIDATE_WORKSPACE\=YES_ERROR
    export VALID_ARCHS\=arm64\ arm64e\ i386\ x86_64
    export VERBOSE_PBXCP\=NO
    export VERSION_INFO_BUILDER\=fcrizul
    export VERSION_INFO_FILE\=blackbox-vision-react-native-mercadopago-px_vers.c
    export VERSION_INFO_STRING\=\"@\(\#\)PROGRAM:blackbox-vision-react-native-mercadopago-px\ \ PROJECT:Pods-\"
    export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES\=NO
    export XCODE_APP_SUPPORT_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Xcode
    export XCODE_PRODUCT_BUILD_VERSION\=12E262
    export XCODE_VERSION_ACTUAL\=1250
    export XCODE_VERSION_MAJOR\=1200
    export XCODE_VERSION_MINOR\=1250
    export XPCSERVICES_FOLDER_PATH\=/XPCServices
    export YACC\=yacc
    export arch\=undefined_arch
    export variant\=normal
    /bin/sh -c /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px.build/Script-6A7FF1C070D4F4C9668B45432067EEEB.sh

WriteAuxiliaryFile /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/Pods-ExampleReactNative-project-headers.hmap (in target 'Pods-ExampleReactNative' from project 'Pods')
    cd /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    write-file /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/Pods-ExampleReactNative-project-headers.hmap

ProcessProductPackaging "" /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/ExampleReactNative.build/Debug-iphonesimulator/ExampleReactNative.build/ExampleReactNative.app-Simulated.xcent (in target 'ExampleReactNative' from project 'ExampleReactNative')
    cd /Users/fcrizul/Documents/temp/ExampleReactNative/ios
    
    Entitlements:
    
    {
    "application-identifier" = "8XX8C6NZ59.org.reactjs.native.example.ExampleReactNative";
    "keychain-access-groups" =     (
        "8XX8C6NZ59.org.reactjs.native.example.ExampleReactNative"
    );
}
    
    builtin-productPackagingUtility -entitlements -format xml -o /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/ExampleReactNative.build/Debug-iphonesimulator/ExampleReactNative.build/ExampleReactNative.app-Simulated.xcent

ProcessProductPackaging "" /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/ExampleReactNative.build/Debug-iphonesimulator/ExampleReactNative.build/ExampleReactNative.app.xcent (in target 'ExampleReactNative' from project 'ExampleReactNative')
    cd /Users/fcrizul/Documents/temp/ExampleReactNative/ios
    
    Entitlements:
    
    {
    "com.apple.security.get-task-allow" = 1;
}
    
    builtin-productPackagingUtility -entitlements -format xml -o /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/ExampleReactNative.build/Debug-iphonesimulator/ExampleReactNative.build/ExampleReactNative.app.xcent

CompileC /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/Objects-normal/x86_64/Pods-ExampleReactNative-dummy.o /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Target\ Support\ Files/Pods-ExampleReactNative/Pods-ExampleReactNative-dummy.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Pods-ExampleReactNative' from project 'Pods')
    cd /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods
    export LANG\=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios10.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fmodules -fmodules-cache-path\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DFB_SONARKIT_ENABLED\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version\=2 -fobjc-legacy-dispatch -index-store-path /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Index/DataStore -iquote /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/Pods-ExampleReactNative-generated-files.hmap -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/Pods-ExampleReactNative-own-target-headers.hmap -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/Pods-ExampleReactNative-all-non-framework-target-headers.hmap -ivfsoverlay /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/all-product-headers.yaml -iquote /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/Pods-ExampleReactNative-project-headers.hmap -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/include -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/CocoaAsyncSocket -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/DoubleConversion -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBLazyVector -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FXBlurView -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/Flipper -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/Flipper-DoubleConversion -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/Flipper-Folly -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/Flipper-Glog -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/Flipper-PeerTalk -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/Flipper-RSocket -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FlipperKit -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/JRSwizzle -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/MLUI -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/MercadoPagoSDK -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCT-Folly -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTRequired -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-Core -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-RCTBlob -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-RCTText -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-callinvoker -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-cxxreact -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-jsi -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-jsinspector -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-perflogger -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React-runtimeexecutor -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/ReactCommon -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/Yoga -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/YogaKit -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/blackbox-vision-react-native-mercadopago-px -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/glog -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/libevent -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/boost-for-react-native -I/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Private/React-Core -I/include -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/DerivedSources-normal/x86_64 -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/DerivedSources/x86_64 -I/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/DerivedSources -F/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator -F/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/OpenSSL-Universal/Frameworks -F/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/XCFrameworkIntermediates/OpenSSL -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/AndesUI/AndesUI.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLBusinessComponents/MLBusinessComponents.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardDrawer/MLCardDrawer.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MLCardForm/MLCardForm.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/MercadoPagoSDK/MercadoPagoSDK.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/YogaKit/YogaKit.modulemap -fmodule-map-file\=/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Products/Debug-iphonesimulator/blackbox-vision-react-native-mercadopago-px/blackbox_vision_react_native_mercadopago_px.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/CocoaAsyncSocket/CocoaAsyncSocket.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/CoreModules/React-CoreModules.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/DoubleConversion/Flipper-DoubleConversion.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FBReactNativeSpec/FBReactNativeSpec.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FXBlurView/FXBlurView.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/Flipper/Flipper.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/FlipperKit/FlipperKit.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/JRSwizzle/JRSwizzle.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/MLUI/MLUI.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTAnimation/React-RCTAnimation.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTBlob/React-RCTBlob.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTImage/React-RCTImage.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTLinking/React-RCTLinking.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTNetwork/React-RCTNetwork.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTSettings/React-RCTSettings.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTText/React-RCTText.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RCTVibration/React-RCTVibration.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/RSocket/Flipper-RSocket.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/ReactCommon/ReactCommon.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/cxxreact/React-cxxreact.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/folly/Flipper-Folly.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/folly/RCT-Folly.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/glog/Flipper-Glog.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsi/React-jsi.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsinspector/React-jsinspector.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/jsireact/React-jsiexecutor.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/libevent/libevent.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/peertalk/Flipper-PeerTalk.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/reactperflogger/React-perflogger.modulemap -fmodule-map-file\=/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/yoga/Yoga.modulemap -MMD -MT dependencies -MF /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/Objects-normal/x86_64/Pods-ExampleReactNative-dummy.d --serialize-diagnostics /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/Objects-normal/x86_64/Pods-ExampleReactNative-dummy.dia -c /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Target\ Support\ Files/Pods-ExampleReactNative/Pods-ExampleReactNative-dummy.m -o /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/Objects-normal/x86_64/Pods-ExampleReactNative-dummy.o
/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/folly/RCT-Folly.modulemap:1:8: error: redefinition of module 'folly'
module folly {
       ^
/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Headers/Public/folly/Flipper-Folly.modulemap:1:8: note: previously defined here
module folly {
       ^
1 error generated.

/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.5.99. (in target 'boost-for-react-native' from project 'Pods')
/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.5.99. (in target 'Flipper-Glog' from project 'Pods')
/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 4.3, but the range of supported deployment target versions is 9.0 to 14.5.99. (in target 'JRSwizzle' from project 'Pods')
/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.4, but the range of supported deployment target versions is 9.0 to 14.5.99. (in target 'Flipper-PeerTalk' from project 'Pods')
/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.5.99. (in target 'Flipper-DoubleConversion' from project 'Pods')
/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 4.3, but the range of supported deployment target versions is 9.0 to 14.5.99. (in target 'FXBlurView' from project 'Pods')
note: Removed stale file '/Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Script-EDAC4FDA3FFBF99C34924C4DE5B6E901.sh'

/Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.5.99. (in target 'YogaKit' from project 'Pods')

** BUILD FAILED **


The following build commands failed:
        CompileC /Users/fcrizul/Library/Developer/Xcode/DerivedData/ExampleReactNative-dswpgujvuevickdiihqwnwwghsyw/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-ExampleReactNative.build/Objects-normal/x86_64/Pods-ExampleReactNative-dummy.o /Users/fcrizul/Documents/temp/ExampleReactNative/ios/Pods/Target\ Support\ Files/Pods-ExampleReactNative/Pods-ExampleReactNative-dummy.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)

error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
fcrizul@Franciscos-MacBook-Pro ios % pod install                  
Auto-linking React Native module for target `ExampleReactNative`: blackbox-vision-react-native-mercadopago-px
Analyzing dependencies
Downloading dependencies
Generating Pods project
Integrating client project
Pod installation complete! There are 50 dependencies from the Podfile and 49 total pods installed.
fcrizul@Franciscos-MacBook-Pro ios % yarn run react-native run-ios

Null is not an object

Hola.
Lo instalé con yarn add y tengo mismo código del ejemplo de su página, pero aún así me tira el siguiente error

image

Paso a mostrar foto de los componentes que estoy usando:
image
image
El access token es uno generado para tests. Si pueden ayudarme les agradezco.

Issue ejected Expo ejected App

Describe the bug
When I trying to do the IOS build on a ejected Expo ejected App, I am getting this error

Undefined symbols for architecture x86_64:
  "Foundation.NSNotFound.getter : Swift.Int", referenced from:
      MercadoPagoSDK.FSPagerView.index(for: MercadoPagoSDK.FSPagerViewCell) -> Swift.Int in libMercadoPagoSDK.a(FSPagerView.o)
  "Foundation.URLRequest.httpMethod.getter : Swift.String?", referenced from:
      static MLCardForm.NetworkLayer.request<A where A: Swift.Decodable, A: Swift.Encodable>(router: MLCardForm.MLCardFormApiRouter, completion: (Swift.Result<A, Swift.Error>) -> ()) -> () in libMLCardForm.a(NetworkLayer.o)
      MercadoPagoSDK.URLEncoding.encode(_: MercadoPagoSDK.URLRequestConvertible, with: [Swift.String : Any]?) throws -> Foundation.URLRequest in libMercadoPagoSDK.a(ParameterEncoding.o)
      MercadoPagoSDK.Request.description.getter : Swift.String in libMercadoPagoSDK.a(Request.o)
      MercadoPagoSDK.Request.cURLRepresentation() -> Swift.String in libMercadoPagoSDK.a(Request.o)
      MercadoPagoSDK.DataResponse.debugDescription.getter : Swift.String in libMercadoPagoSDK.a(Response.o)
      MercadoPagoSDK.DownloadResponse.debugDescription.getter : Swift.String in libMercadoPagoSDK.a(Response.o)
  "Foundation.URLRequest.httpMethod.setter : Swift.String?", referenced from:
      static MLCardForm.NetworkLayer.request<A where A: Swift.Decodable, A: Swift.Encodable>(router: MLCardForm.MLCardFormApiRouter, completion: (Swift.Result<A, Swift.Error>) -> ()) -> () in libMLCardForm.a(NetworkLayer.o)
      MercadoPagoSDK.MercadoPagoService.request(uri: Swift.String, params: Swift.String?, body: Foundation.Data?, method: MercadoPagoSDK.HTTPMethod, headers: [Swift.String : Swift.String]?, cache: Swift.Bool, success: (Foundation.Data) -> (), failure: (__C.NSError) -> ()?) -> () in libMercadoPagoSDK.a(MercadoPagoService.o)
      (extension in MercadoPagoSDK):Foundation.URLRequest.init(url: MercadoPagoSDK.URLConvertible, method: MercadoPagoSDK.HTTPMethod, headers: [Swift.String : Swift.String]?) throws -> Foundation.URLRequest in libMercadoPagoSDK.a(Alamofire.o)
  "Foundation.URLRequest.cachePolicy.setter : __C.NSURLRequestCachePolicy", referenced from:
      MercadoPagoSDK.MercadoPagoService.request(uri: Swift.String, params: Swift.String?, body: Foundation.Data?, method: MercadoPagoSDK.HTTPMethod, headers: [Swift.String : Swift.String]?, cache: Swift.Bool, success: (Foundation.Data) -> (), failure: (__C.NSError) -> ()?) -> () in libMercadoPagoSDK.a(MercadoPagoService.o)
  "Foundation.URLRequest.description.getter : Swift.String", referenced from:
      static MercadoPagoSDK.MercadoPagoService.debugPrint(response: MercadoPagoSDK.DataResponse<Foundation.Data>?) -> () in libMercadoPagoSDK.a(MercadoPagoService.o)
  "Foundation.URLRequest.timeoutInterval.setter : Swift.Double", referenced from:
      MercadoPagoSDK.MercadoPagoService.request(uri: Swift.String, params: Swift.String?, body: Foundation.Data?, method: MercadoPagoSDK.HTTPMethod, headers: [Swift.String : Swift.String]?, cache: Swift.Bool, success: (Foundation.Data) -> (), failure: (__C.NSError) -> ()?) -> () in libMercadoPagoSDK.a(MercadoPagoService.o)  

To Reproduce
Steps to reproduce the behavior:

  1. I made the README > Library Setup section
  2. I did Troubleshooting > It doesn't work with Expo ejected App (in fact I didn’t anything because this steps are on the Library Setup section )
  3. react-native run-ios

Smartphone (please complete the following information):

  • Device: iPhone 11
  • OS: 14.4

Additional context
this is my AppDelegate.m

/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

#import "AppDelegate.h"

#import <React/RCTBundleURLProvider.h>
#import <React/RCTRootView.h>

#import <UMCore/UMModuleRegistry.h>
#import <UMReactNativeAdapter/UMNativeModulesProxy.h>
#import <UMReactNativeAdapter/UMModuleRegistryAdapter.h>

@interface AppDelegate ()

@property (nonatomic, strong) NSDictionary *launchOptions;

@end

@implementation AppDelegate

@synthesize window = _window;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
  self.moduleRegistryAdapter = [[UMModuleRegistryAdapter alloc] initWithModuleRegistryProvider:[[UMModuleRegistryProvider alloc] init]];
  self.launchOptions = launchOptions;

  self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
#ifdef DEBUG
  [self initializeReactNativeApp];
#else
  EXUpdatesAppController *controller = [EXUpdatesAppController sharedInstance];
  controller.delegate = self;
  [controller startAndShowLaunchScreen:self.window];
#endif

  [super application:application didFinishLaunchingWithOptions:launchOptions];

  return YES;
}

- (RCTBridge *)initializeReactNativeApp
{
  RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:self.launchOptions];
  RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:@"main" initialProperties:nil];
  rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];

  UIViewController *rootViewController = [UIViewController new];
  rootViewController.view = rootView;

   UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:rootViewController];

  [navController setToolbarHidden:YES animated:YES];
  [navController setNavigationBarHidden:YES];

  self.window.rootViewController = navController;
  [self.window makeKeyAndVisible];

  return bridge;
}

- (NSArray<id<RCTBridgeModule>> *)extraModulesForBridge:(RCTBridge *)bridge
{
  NSArray<id<RCTBridgeModule>> *extraModules = [_moduleRegistryAdapter extraModulesForBridge:bridge];
  // You can inject any extra modules that you would like here, more information at:
  // https://facebook.github.io/react-native/docs/native-modules-ios.html#dependency-injection
  return extraModules;
}

- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge {
#ifdef DEBUG
  return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
#else
  return [[EXUpdatesAppController sharedInstance] launchAssetUrl];
#endif
}

- (void)appController:(EXUpdatesAppController *)appController didStartWithSuccess:(BOOL)success
{
  appController.bridge = [self initializeReactNativeApp];
}

 - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<NSString *, id> *) options {
  return [self.authorizationFlowManagerDelegate resumeExternalUserAgentFlowWithURL:url];
 }

@end

and my Podfile

platform :ios, '10.0'
install! 'cocoapods', :disable_input_output_paths => true

require_relative '../node_modules/react-native-unimodules/cocoapods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

target 'cmappointmentsfed' do
  rnPrefix = "../node_modules/react-native"

  # React Native and its dependencies
  pod 'FBLazyVector', :path => "#{rnPrefix}/Libraries/FBLazyVector"
  pod 'FBReactNativeSpec', :path => "#{rnPrefix}/Libraries/FBReactNativeSpec"
  pod 'RCTRequired', :path => "#{rnPrefix}/Libraries/RCTRequired"
  pod 'RCTTypeSafety', :path => "#{rnPrefix}/Libraries/TypeSafety"
  pod 'React', :path => "#{rnPrefix}/"
  pod 'React-Core', :path => "#{rnPrefix}/"
  pod 'React-CoreModules', :path => "#{rnPrefix}/React/CoreModules"
  pod 'React-RCTActionSheet', :path => "#{rnPrefix}/Libraries/ActionSheetIOS"
  pod 'React-RCTAnimation', :path => "#{rnPrefix}/Libraries/NativeAnimation"
  pod 'React-RCTBlob', :path => "#{rnPrefix}/Libraries/Blob"
  pod 'React-RCTImage', :path => "#{rnPrefix}/Libraries/Image"
  pod 'React-RCTLinking', :path => "#{rnPrefix}/Libraries/LinkingIOS"
  pod 'React-RCTNetwork', :path => "#{rnPrefix}/Libraries/Network"
  pod 'React-RCTSettings', :path => "#{rnPrefix}/Libraries/Settings"
  pod 'React-RCTText', :path => "#{rnPrefix}/Libraries/Text"
  pod 'React-RCTVibration', :path => "#{rnPrefix}/Libraries/Vibration"
  pod 'React-Core/RCTWebSocket', :path => "#{rnPrefix}/"
  pod 'React-Core/DevSupport', :path => "#{rnPrefix}/"
  pod 'React-cxxreact', :path => "#{rnPrefix}/ReactCommon/cxxreact"
  pod 'React-jsi', :path => "#{rnPrefix}/ReactCommon/jsi"
  pod 'React-jsiexecutor', :path => "#{rnPrefix}/ReactCommon/jsiexecutor"
  pod 'React-jsinspector', :path => "#{rnPrefix}/ReactCommon/jsinspector"
  pod 'React-callinvoker', :path => "#{rnPrefix}/ReactCommon/callinvoker"
  pod 'ReactCommon/turbomodule/core', :path => "#{rnPrefix}/ReactCommon"
  pod 'Yoga', :path => "#{rnPrefix}/ReactCommon/yoga"
  pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec', :modular_headers => false
  pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec', :modular_headers => false
  pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec', :modular_headers => false

  # Other native modules

  # Automatically detect installed unimodules
  use_unimodules!

  # react-native-cli autolinking
  use_native_modules!
  use_modular_headers!
end

iOS 14.4 Header Styling problem after Payment

Describe the bug
After complete a payment and going back to the app, header appear with a weird bar on top (overlapping I think)
Problems seems like is with iPhone 14

To Reproduce
Steps to reproduce the behavior:

  1. Check your App header/statusbar styling
  2. Enter on MP flow.
  3. Complete a payment
  4. Go Back to the app with the cross or continue button.
  5. Check your App header/statusbar styling should be wrong

Expected behavior
App header or statusbar styling should no change after complete a MP flow.

Screenshots
ios

Smartphone (please complete the following information):
iPhone 12 - 14.4 -> Wrong styling
iPhone 8 Plus - 14.4 -> Wrong styling
iPhone 8 Plus - 13.6 -> Correct styling

Additional context
Project example to test

https://github.com/iabadie-dataart/awesomeproj-mp

Dependencies
"@blackbox-vision/react-native-mercadopago-px": "^0.7.2",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.5",
"react": "17.0.1",
"react-native": "0.64.2",
"react-native-config": "^1.4.2",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^2.2.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.4.0"

Error in MercadoPagoCheckout.createPayment

** ERROR Payment checkout issue: [TypeError: Cannot read property 'createPayment' of null]*

I'm using one of the examples to test the library, but it's not working, when I press to buy a sneaker, it returns the preferenceId, but I get this error above.
I'm basically using all the code from the tennis example.

Screenshots

import { Provider as PaperProvider } from 'react-native-paper';
import ProductCard from './components/ProductCard';
import StatusBar from './components/StatusBar';
import { Appbar } from 'react-native-paper';

import * as React from 'react';
import { Alert, FlatList, SafeAreaView } from 'react-native';
import MercadoPagoCheckout from '@blackbox-vision/react-native-mercadopago-px';

import { getProducts, getPreferenceId } from './mercadopago-service';
import { ArrowLeftBlue } from '@packages/atoms';
import { key } from './types';

export default function PaymentForm({ navigation }: any) {
  const products = getProducts();

  const startCheckout = async ({ title, description, amount }: any) => {
    try {
      console.log('Starting checkout process'); // Debugging output
      const preferenceId = await getPreferenceId('[email protected]', {
        title,
        description,
        quantity: 1,
        currency_id: 'ARS',
        unit_price: amount,
      });
      console.log('Generated preferenceId:', preferenceId); // Debugging output

      if (!preferenceId) {
        throw new Error('preferenceId is null or undefined');
      }

      const payment = await MercadoPagoCheckout.createPayment({
        publicKey: key,
        preferenceId,
      });

      if (payment.status === 'in_process') {
        Alert.alert(
          'Payment In Progress',
          'You will receive an email when the payment of the product is complete'
        );
      } else if (payment.status === 'rejected') {
        Alert.alert(
          'Payment Rejected',
          'Please retry payment. If error persists contact support'
        );
      } else {
        Alert.alert(
          'Payment succeed',
          'You will receive an email with the invoice of your product'
        );
      }
    } catch (err: any) {
      if (err.message.includes('cancel')) {
        Alert.alert(
          'Payment was cancelled',
          'You can keep checking out our products'
        );
      } else {
        Alert.alert(
          'Payment checkout issue',
          'Please retry payment. If error persists contact support'
        );
        console.error('Payment checkout issue:', err); // Log the error for debugging
      }
    }
  };

  return (
    <PaperProvider>
      <StatusBar />
      <SafeAreaView style={{ flex: 1 }}>
        <Appbar style={{ gap: 40, paddingLeft: 20 }}>
          <ArrowLeftBlue onPress={() => navigation.goBack()} />
          <Appbar.Content title="Products" />
        </Appbar>
        <FlatList
          data={products}
          keyExtractor={(item) => `${item.id}`}
          renderItem={({ item }) => (
            <ProductCard {...item} onPress={startCheckout} />
          )}
        />
      </SafeAreaView>
    </PaperProvider>
  );
}

Dependencies
{
"name": "app-merchant",
"version": "1.0.0",
"main": "index.js",
"prettier": {
"singleQuote": true
},
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web"
},
"dependencies": {
"@blackbox-vision/react-native-mercadopago-px": "^0.8.0",
"@mercadopago/sdk-react": "^0.0.19",
"@packages/atoms": "",
"@packages/constants": "
",
"@packages/context": "",
"@packages/molecules": "
",
"@packages/organisms": "",
"@packages/templates": "
",
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-native-community/datetimepicker": "8.0.1",
"@react-native-masked-view/masked-view": "^0.3.1",
"@react-native-picker/picker": "2.7.5",
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/native": "^6.1.17",
"@react-navigation/stack": "^6.3.29",
"@supabase/supabase-js": "^2.43.4",
"@types/mercadopago": "^1.5.11",
"@types/mercadopago-sdk-js": "*",
"axios": "^1.7.2",
"base64-arraybuffer": "^1.0.2",
"expo": "~51.0.11",
"expo-camera": "~15.0.10",
"expo-dev-client": "~4.0.15",
"expo-device": "~6.0.2",
"expo-image-picker": "~15.0.5",
"expo-notifications": "~0.28.7",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.6",
"expo-web-browser": "^13.0.3",
"jotai": "^2.8.3",
"lottie-react-native": "6.7.0",
"metro-resolver": "^0.80.9",
"react": "18.2.0",
"react-native": "0.74.2",
"react-native-config": "^1.5.1",
"react-native-gesture-handler": "^2.16.2",
"react-native-paper": "^5.12.3",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "^3.31.1",
"react-native-svg": "15.2.0",
"react-native-svg-transformer": "^1.4.0",
"react-native-url-polyfill": "^2.0.0",
"react-native-uuid": "^2.0.2",
"socket.io-client": "^4.7.5"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/mercadopago-sdk-js": "^2.0.15",
"@types/react": "~18.2.45",
"typescript": "~5.3.3"
},
"private": true
}

[Feature] - Add support for Expo Config Plugins

Motivation

Our main goal is to provide the Best DX for using our library, currently iOS side is the most difficult part to config, where you need to run a set of steps in order to build and get our library properly configured.

The idea is to implement Expo Config Plugins to support those using Expo with a better DX, the counterpart of this is that only projects using SDK >= 41 will be able to get auto config. Those projects using SDK < 41 will have to eject if they are managed or start via bare-workflow.

android-px murio

Creo que esto ya no funciona :( los programadores de mercadopago han deshabilitado el repositorio de android-px.
esta ultima semana tuve inconvenientes con los pagos.

Error on pod install

Hello guys. There is a bug when try run pod install because the MercadoPago repository (https://github.com/mercadopago/px-ios) is forbidden

This is the error its returns

[!] Error installing MercadoPagoSDK
[!] /usr/bin/git clone https://github.com/mercadopago/px-ios.git /var/folders/v0/4s51z20s4s35w7qtm1zpvkdc0000gn/T/d20230508-83782-pvr7ki --template= --single-branch --depth 1 --branch 4.32.4

Cloning into '/var/folders/v0/4s51z20s4s35w7qtm1zpvkdc0000gn/T/d20230508-83782-pvr7ki'...
remote: Repository not found.
fatal: repository 'https://github.com/mercadopago/px-ios.git/' not found

IOS installation problems

Describe the bug
Use of 'min' refers to instance method rather than global function 'min' in module 'Swift' FOLDER LMBUSSINESCOMPONENT)

To Reproduce
Steps to reproduce the behavior:

  1. Good Make all the previous configurations as shown in the repository.
  2. when running pod install everything is correct., but then it throws me an error when I give it in react-native run-ios

ERROR:--->The iOS Simulator deployment target is set to 7.0, but the range of supported deployment target versions for this platform is 8.0 to 12.2.99

I could solve this error by modifying the podfile:
Captura de Pantalla 2020-09-25 a la(s) 22 42 27

but then when I rerun the react-native run-ios command I got a second error

error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening Braindtic.xcworkspace.
Captura de Pantalla 2020-09-25 a la(s) 22 48 01

I solved that problem by entering xcode and compiling the program from there. the problem is that this works with the example from the repository. but not when I create a new project.

The error when I create the new project from scratch is the following
Captura de Pantalla 2020-09-25 a la(s) 22 48 54
Captura de Pantalla 2020-09-25 a la(s) 22 49 20
Rute error.

Captura de Pantalla 2020-09-25 a la(s) 22 54 06

Using: XCODE 12.0
React native 0.63.2

Checkout failing on every payment result

Describe the bug
I'm having this problem. When you press "pagar", it says "procesando pago" and after that, the "pagar" button goes unavailable, and an empty red square slides up for a second, no text within. After that I can't pay again, I have to go back to my app.

EDIT:
I'm using the example code that you provide. I have created a Mercado Pago test user and using it as a customer, while using my sandbox credentials to test the integration. It could be misconfiguration, as i'm testing in Android and couldn't find the installation process, like the IOS manual installation in your docs. I used automatic link but would be great to check if it's all linked like it should.

Screenshots
Screenshot_20200801-124833
Screenshot_20200801-124836

Smartphone

  • Device: [Motorola Moto G Play]
  • OS: [Anrdoid 7.1.1]

[Bug] - Kotlin issue when trying to compile the app

How are you I have a problem running the package. and my question is if i need to install kotlin. when running npx react-native run-android the error is the following:

Task :blackbox-vision_react-native-mercadopago-px:compileDebugKotlin FAILED

Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.2/userguide/command_line_interface.html#sec:command_line_warnings
11 actionable tasks: 2 executed, 9 up-to-date

Card payment gets rejected everytime

Describe the bug
I've implemented the library as it's explained in the docs here. Copied exactly the same code and replaced the access token and the public key with my MP dev credentials. Whenever I am trying to make a payment by credit or debit card, its's rejected as it's shown in the screenshot below. I used a real card info.

Whereas, if the payment is made in cash, the status is successful.

Screenshots
WhatsApp Image 2021-08-27 at 15 03 10

Smartphone:

  • Device: [Nokia 5.1]
  • OS: [Android 9]

Thanks beforehand, any help would be appreciate.

[Feature] - Support for Checkout customization

Motivation

  • Enable users to customize checkout UI colors.
  • Provide an easier way to customize.

Current Limitations

On Android the current API for styling is static, that said, we can't expose to the Javascript module a way to pass custom colors for checkout. We've open an issue on Android PX repository, see issue here.

Draft APIs

We've in mind the following APIs:

Simpler Customization

It matches with the following documentation.

const payment = await MercadoPagoCheckout.createPayment({
    publicKey: Env.MP_PUBLIC_KEY,
    preferenceId: `your_preference_id`,
    themeOptions: { 
        primaryColor: `#your_color`
    }
});

Advanced Customization

It matches with the following documentation.

const payment = await MercadoPagoCheckout.createPayment({
    publicKey: Env.MP_PUBLIC_KEY,
    preferenceId: `your_preference_id`,
    themeOptions: { 
        primaryColor: `#your_color`, 
        highlightBackgroundColor: `#your_color`, 
        navigationBarStyle: {
            backgroundColor: `#your_color`, 
            tintColor: `#your_color`, 
        },
        loadingStyle: {
            backgroundColor: `#your_color`, 
            tintColor: `#your_color`, 
        },
        fontsStyle: {
             default: `your_font_name`,
             light: `your_light_font_name`,
             semiBold: `your_semibold_font_name`
        }
    }
});

Broken styles in the application when installing the package

When I install the package in its version 0.6.2 or 0.6.1 the styles are broken in my application, the background of some components is placed in gray, the compomente Alert, the letters are placed very small, the icons are exchanged.

Previously this did not happen, the package was installed correctly and worked perfectly. I assume it is another package in my package.json that was upgraded to a more recent version and this produces a conflict of styles.

Here's my package.json

"dependencies": {
"@blackbox-vision/react-native-mercadopago-px": "^0.6.1",
"@react-native-community/async-storage": "^1.6.3",
"@react-native-community/datetimepicker": "^2.1.0",
"@react-native-community/geolocation": "^2.0.2",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/toolbar-android": "0.1.0-rc.2",
"@react-navigation/drawer": "^5.9.0",
"@react-navigation/native": "^5.8.6",
"@react-navigation/stack": "^5.9.0",
"axios": "^0.19.0",
"js-base64": "^2.5.1",
"laravel-echo": "^1.6.1",
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-app-intro-slider": "^3.0.0",
"react-native-awesome-alerts": "^1.3.3",
"react-native-calendars": "^1.217.0",
"react-native-device-info": "^5.4.0",
"react-native-fbsdk": "^1.1.1",
"react-native-gesture-handler": "^1.8.0",
"react-native-gifted-chat": "^0.13.0",
"react-native-google-places-autocomplete": "^1.8.0",
"react-native-google-signin": "^2.1.1",
"react-native-image-picker": "^2.3.4",
"react-native-linear-gradient": "^2.5.6",
"react-native-maps": "0.26.1",
"react-native-onboarding-swiper": "^1.1.4",
"react-native-onesignal": "^3.6.1",
"react-native-paper": "^3.10.1",
"react-native-ratings": "^7.2.0",
"react-native-reanimated": "^1.13.1",
"react-native-responsive-screen": "^1.3.0",
"react-native-safe-area-context": "^3.1.8",
"react-native-screens": "^2.13.0",
"react-native-simple-radio-button": "^2.7.4",
"react-native-snap-carousel": "^3.9.1",
"react-native-swiper-flatlist": "^2.0.3",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^4.0.10",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-promise-middleware": "^6.1.2",
"redux-thunk": "^2.3.0",
"socket.io-client": "^2.3.0",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/runtime": "^7.12.1",
"@react-native-community/eslint-config": "0.0.5",
"babel-jest": "^24.9.0",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.57.0",
"react-native-dotenv": "^0.2.0",
"react-test-renderer": "16.9.0",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"remote-redux-devtools": "^0.5.16"
},

These are the captures of the error in my application

Screenshot_2020-11-08-09-39-05-064_com virtualapp
Screenshot_2020-11-08-09-39-23-724_com virtualapp
Screenshot_2020-11-08-09-51-25-236_com virtualapp

Valor email de Payer no puede ser cambiado

Describe the bug
Cuando se está construyendo el preference, el valor "Email" del "Payer" tiene que ser siempre "[email protected]" si se utiliza otro, da error al momento de hacer el pago (barra roja en el footer). Lo mismo ocurre en producción y en sandbox.

To Reproduce
Crear un preference con un Email de Payer diferente a "[email protected]"

Expected behavior
Debería poder aceptar el correo real del comprador.

Screenshots
image

Y si es diference a ese:
image

Smartphone (please complete the following information):

  • Device: One Plus 3
  • OS: Android
  • Version: 9

Additional context
Igualmente, en mercadopago el pago se registra con un correo que no hace referencia al usuario que realmente lo hizo, lo que dificulta encontrar los pagos a nivel administrativo.

image

Update MercadoPago Android SDK

Describe the bug

Hello guys, I'm having a problem when uploading my application to the playstore..

It says that the app contains the SDK com.mercadopago.android.px:services 4.45.0, which does not comply with the new PlayStore policies on data security.

That's why they ask to update the SDK to 4.53.2. There is time until October 25, otherwise we must uninstall the application library, because the updates will be rejected.

Screenshots

image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.