Creating a Sandbox Testing Account to Test In-App Purchases on iOS

Creating a Sandbox Testing Account to Test In-App Purchases on iOS

Tiempo de lectura: 2 minutos Reading time: 2 minutes When implementing in-app purchases on iOS, if you want to test the functionality of the purchases, you will need to create a testing account. The first thing we need to do is access our iOS developer account: https://developer.apple.com/ Once inside, go to Users and Access And choose Sandbox Testers https://appstoreconnect.apple.com/access/users/sandbox Click … 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

Adding phpMyAdmin to a Visual Studio Code project using Ubuntu console on Windows with WSL/WSL2 for FastAPI

Adding phpMyAdmin to a Visual Studio Code project using Ubuntu console on Windows with WSL/WSL2 for FastAPI

Tiempo de lectura: < 1 minuto Reading time: < 1 minute You must have Ubuntu installed on Windows, a project created in Visual Studio Code, and Python installed beforehand. Here are the following helpful links: Install Ubuntu on Windows Create project in Visual Studio using commands in Ubuntu Install Python3 First, I install XAMPP for Linux: sudo chmod +x xampp-linux-x64-8.1.12-0-installer.run sudo ... Read more

Installation and Configuration of Python and fastAPI for a Project in Visual Studio Code

Installation and Configuration of Python and fastAPI for a Project in Visual Studio Code

Tiempo de lectura: 2 minutos Reading time: 2 minutes You must have Ubuntu installed on Windows and a project created in Visual Studio Code beforehand. Here are the following helpful links: Install Ubuntu on Windows Create project in Visual Studio using commands in Ubuntu In the Visual Studio Code terminal, install Python3 as shown below: sudo apt install python3-pip To … Read more

Create a Project in Visual Studio Code Using Ubuntu Console on Windows with WSL/WSL2 to Use FastAPI.

Create a Project in Visual Studio Code Using Ubuntu Console on Windows with WSL/WSL2 to Use FastAPI.

Tiempo de lectura: 2 minutos Reading time: 2 minutes You must have previously installed Ubuntu on Windows, I’ll leave you the following helpful link: Install Ubuntu on Windows Once we have Ubuntu installed, I’m going to create a folder within home using commands where we will place our project. sudo mkdir proyectoDevCodeLight We modify the permissions to allow us to … 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