Home
Documentation
Resources
Certifications
Community

Resources

Check for updates on our solutions and system performance, or request technical support.

Community

Get the latest news, ask others for help and share your knowledge.

Main Apps (local integration) - How to migrate to Mercado Pago ecosystem - Mercado Pago Developers

Intelligent search powered by OpenAI 

Main Apps (Local integration)

If you are currently using a local integration with Redelcom, the equivalent solution offered by Mercado Pago is Main Apps.

The Main Apps are business management applications that can be integrated with Point Smart, a SmartPOS payment device. These apps become the main interface, allowing the seller to use the reader to process payments integrated with Mercado Pago.

Prerequisites

To ensure a successful migration to Main Apps, you must meet the following prerequisites:

PrerequisiteDescription
Mercado Pago seller accountTo integrate with Mercado Pago, you need to have a seller account. If you don’t have one yet, visit the page to create it for free.
Application created in Your integrationsApplications are the different integrations contained in one or more stores. You can create an application for each solution you implement to keep everything organized and maintain control for easier management.

To integrate Main Apps, it is necessary to create an application and obtain the application_id, which must be sent in the manifest. For more information on this process, see the Integration Configuration section.

Refer to the documentation of the Developer dashboard to create your application.
Mercado Pago Point terminalTo integrate with Mercado Pago, you need to be provided with a Point device. To obtain it, contact your portfolio sales executive.
Mercado Pago applicationIn addition to the device, it is essential to have the Mercado Pago application to log in and manage the collections made. You can download it for both Android and iOS devices.

Integration configuration

Before starting your integration with Main Apps, it is necessary to send your application_id in the Android Manifest.

To do this, first obtain your application_id by accessing Your integrations and selecting your application. You will find it in the Application details section under the name "Application Number."

Then, copy and paste that number into the AndroidManifest.xml file, following the format value='application_id + L', as shown in the example below.

manifest

<meta-data
name='com.mercadolibre.android.sdk.CLIENT_ID'
value='XXXXXXXXXXXXXXXXL'>
</meta-data>

If you are also going to implement the OAuth flow to securely obtain information about the seller's account, you should add the following lines:

manifest

<meta-data
name='com.mercadolibre.android.sdk.OAUTH_ENABLED'
value='true'>
</meta-data>

Once you have completed this preliminary step, continue with the integration of Main Apps following the documentation.