Adding Firebase PUSH Notifications for Android/iOS Using React Native and Expo

Adding Firebase PUSH Notifications for Android/iOS Using React Native and Expo

Tiempo de lectura: 5 minutos Reading time: 6 minutes Hello, today I’m going to show you how to add PUSH notifications to receive messages in your React Native projects using React Native Firebase Notifications. The first thing to do is to register the app in Firebase: Create a new project and add the iOS and Android APP. In the case … Read more

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

Create 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’ll need to create a testing account. The first thing we’re going 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 on … Read more

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

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

Send an Email or Make a Phone Call from Your React Native App

Send an Email or Make a Phone Call from Your React Native App

Tiempo de lectura: < 1 minuto Reading time: < 1 minute Today I’m going to show you how to send an email or make a phone call from React Native. To use this function, we’ll import the Linking library from React Native: https://reactnative.dev/docs/linking import { Linking } from "react-native"; To implement a phone call, we’ll use the same syntax as in ... Read more

Flutter Project in VSCode

Flutter Project in VSCode

Tiempo de lectura: 3 minutos Reading Time: 4 minutes Today I’m going to show you how to open a Flutter project in VSCode to work in this environment. First, let’s install the Flutter SDK on our PC: Go to the official website https://docs.flutter.dev/get-started/install/windows Choose the corresponding installation: Next, extract the flutter folder to the directory where you want to install … Read more

Play YouTube Videos without YouTube API (No API Key) in React Native

Play YouTube Videos without YouTube API (No API Key) in React Native

Tiempo de lectura: 2 minutos Reading time: 2 minutes I’m going to show you how we can play YouTube videos without using the YouTube library for React Native. This way, you won’t have to add an API Key to play videos. First of all, we need to create a Screen with a WebView. To do this, we first install WebView: … Read more