Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Como crear un build development usando Expo EAS con React Native

Tiempo de lectura: < 1 minuto

Os voy a enseñar como crear una build de development usando EAS en React Native.

Esta build nos sirve para poder ejecutar el proyecto si contiene código nativo, directamente sobre nuestro dispositivo e incluso realizar pruebas de depuración sobre la build.

Primero tenemos que generar una build de desarrollo.

Instalamos expo-dev-client

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm install expo-dev-client --save
npm install expo-dev-client --save
npm install expo-dev-client --save 

Instalamos EAS siguiendo este tutorial: Generar un APK con eas en Expo React Native

Vamos al archivo eas.json y añadimos esta configuración dentro de build

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
"android": {
"buildType": "apk"
}
},
"build": { "development": { "developmentClient": true, "distribution": "internal", "android": { "buildType": "apk" } },
"build": {
    "development": {
      "developmentClient": true,
      "distribution": "internal",
      "android": {
        "buildType": "apk"
      }
    },

Con esto indicamos que añadimos developmentClient, distribución interna y en este caso, queremos generar un APK para Android y evitar que genere un aab que no permitiría instalarse.

Ahora creamos el build nativo de depuración, en este caso para Android:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
eas build --profile development --platform android
eas build --profile development --platform android
eas build --profile development --platform android

Sí queremos generar en iOS:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
eas build --profile development --platform ios
eas build --profile development --platform ios
eas build --profile development --platform ios

Sí queremos generar ios/android a la vez:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
eas build --profile development --platform all
eas build --profile development --platform all
eas build --profile development --platform all

Una vez generado, tenemos que instalar este APK en caso de Android.

Al abrir el APK nos aparecerá el cliente de depuración:

Y ahora, para ejecutar nuestros cambios sobre esta build, tendremos que iniciar el servidor con este comando:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
expo start --dev-client
expo start --dev-client
expo start --dev-client

1

13 comentarios en «Como crear un build development usando Expo EAS con React Native»

Deja un comentario