Publishing an App on the APP Store (iOS) with React Native

Publishing an App on the APP Store (iOS) with React Native

Tiempo de lectura: 3 minutos Reading time: 4 minutes Today I’m going to show you how to publish an app on the App Store (iOS). The first thing we need to do is create an iOS developer account ($99/year) https://developer.apple.com/account Once created and validated, we proceed to create the app. Go to Program resources and choose App Store Connect > … Read more

Add Google SignIn in React Native and Expo

Add Google SignIn in React Native and Expo

Tiempo de lectura: 2 minutos Reading time: 5 minutes Today, we are going to learn how to implement Google authentication in our React Native app. Once we have our initialized React Native project, we will use the library (https://docs.expo.dev/versions/latest/sdk/auth-session/). First of all, open app.json and add the fields “name” and “slug“: “expo”: { “name”: “App_name”, “slug”: “App_name”, And within app.json, … Read more

Replace All Screens in React Navigation

Replace All Screens in React Navigation

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute To replace all screens in React Navigation (@react-navigation/native-stack) and load a single screen, we need to add the following code: navigation.reset({ index: 0, routes: [{ name: 'Menu' }], }); First, we get the navigation hook from a native-stack and apply a reset. We specify the starting point (index: 0) and ... Read more

Publish an APP on the APP Store (iOS) with React Native

Publish an APP on the APP Store (iOS) with React Native

Tiempo de lectura: 3 minutos Reading time: 4 minutes Today I’m going to show you how to publish an app on the App Store (iOS). The first thing we need to do is create an iOS developer account ($99/year) https://developer.apple.com/account Once created and validated, we proceed to create the app. Go to Program resources and select App Store Connect > … Read more

Replacing all Screens in React Navigation

Replacing all Screens in React Navigation

Tiempo de lectura: < 1 minuto Reading time: < 1 minute To replace all screens of React Navigation (@react-navigation/native-stack) and load only one, we need to add the following code: navigation.reset({ index: 0, routes: [{ name: 'Menu' }], }); First, we obtain the navigation hook from a native-stack and apply a reset to it. We specify where we want to start ... Read more

Generar un Build Dev para iOS en React Native con Expo (EAS)

Generar un Build Dev para iOS en React Native con Expo (EAS)

Tiempo de lectura: 4 minutos Reading time: 2 minutes I’m going to show you how to generate a development build for iOS using EAS. First, we need to generate the project as indicated in this tutorial: How to create a development build using Expo EAS with React Native Now, when you reach the step of executing: eas build –profile development … Read more

Fixing error ‘requires setting the development team for each resource bundle target’ when generating dev build for iOS in React Native.

Fixing error ‘requires setting the development team for each resource bundle target’ when generating dev build for iOS in React Native.

Tiempo de lectura: < 1 minuto Reading time: < 1 minute When generating a development build for iOS in React Native, you may encounter the following error: Build failed: Starting from Xcode 14, resource bundles are signed by default, which requires setting the development team for each resource bundle target. To resolve this issue, downgrade to an older Xcode version using ... Read more