Permission uses-permission android:name=’android.permission.SYSTEM_ALERT_WINDOW’ when uploading an app with Expo in React Native

Permission uses-permission android:name=’android.permission.SYSTEM_ALERT_WINDOW’ when uploading an app with Expo in React Native

Tiempo de lectura: 2 minutos Reading time: < 1 minutes When uploading an app that uses Expo, you need to be cautious with this permission: <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> Expo automatically adds this permission to enable the development version. If you are uploading the app to Google Play and you don’t use this permission, it’s better to remove it. This permission allows … Read more

Internationalization of Flutter Application Using .json Files

Internationalization of Flutter Application Using .json Files

Tiempo de lectura: 3 minutos Reading time: 3 minutes Internationalizing a flutter application is easy by following the following steps as I show below: First, we need to add the necessary dependencies in the pubspec.yaml file: flutter_localizations: sdk: flutter flutter_cupertino_localizations: ^1.0.1 Next, we create the directory structure with the .json files From the root of our project, we create a … Read more

Install Eas-update (Expo updates) in React Native using Expo

Install Eas-update (Expo updates) in React Native using Expo

Tiempo de lectura: < 1 minuto Reading time: < 1 minute Today, I’m going to show you how to install EAS Updates, which will allow you to update apps remotely (even those published on the Store). Remember to release updates only for small bug fixes and not major changes or new features in your apps, as you risk violating app publishing … Read more

HTML Tables + JavaScript

HTML Tables + JavaScript

Tiempo de lectura: 2 minutos Reading time: 2 minutes To create a simple table from an array of objects, follow the steps below: First, create a file with the .html extension, where you’ll create a div with an associated ID to display the table with the data of the elements. The ID for the table within the HTML will be … Read more

LISTAS HTML + JavaScript

LISTAS HTML + JavaScript

Tiempo de lectura: 5 minutos Reading time: 2 minutes To create a simple list from an array of objects, you need to follow the steps below: First, create a file with the .html extension, where we’ll create a div with an associated ID that will display the list of elements. The ID for the list, in this case, will be … Read more

Fix error ‘Error: Cookie not in this host’s domain. Cookie: developer-mdn.apple.com Request: developer.apple.com’ in Expo React Native

Fix error ‘Error: Cookie not in this host’s domain. Cookie: developer-mdn.apple.com Request: developer.apple.com’ in Expo React Native

Tiempo de lectura: < 1 minuto Reading time: < 1 minutes Today I’m going to show you how to fix the error “Error: Cookie not in this host’s domain. Cookie: developer-mdn.apple.com Request: developer.apple.com” when generating a build with React Native. To fix it, you’ll need to update eas-cli: sudo npm install -g eas-cli (do not include the Reading time). Return it ... Read more

Node.js vs PHP: Comparing Two Titans for Backend Server Application Development

Node.js vs PHP: Comparing Two Titans for Backend Server Application Development

Tiempo de lectura: 3 minutos Reading time: 3 minutes The choice of programming language for the backend server is a crucial step in any web development project. Two of the most popular and widely used languages in this field are Node.js and PHP. In this article, we will compare the strengths of each and make a comparison to help you … Read more

Node.js vs FastAPI: Which One to Use for My Backend Server?

Node.js vs FastAPI: Which One to Use for My Backend Server?

Tiempo de lectura: 3 minutos Reading time: 3 minutes Node.js and FastAPI are two programming languages used in web and server application development. Both are highly popular and have their own advantages and disadvantages. Node.js is a JavaScript-based programming language used to develop scalable server and network applications. It was developed by Ryan Dahl in 2009 and has gained widespread … Read more