Fix error Attribute meta-data#com.google.android.gms.ads.DELAY_APP_MEASUREMENT_INIT@value with react-native-google-mobile-ads library in React Native and Expo

Tiempo de lectura: < 1 minuto [stderr] [stderr] Task :react-native-screens:parseDebugLocalResources Task :react-native-share:compileDebugLibraryResources Task :react-native-safe-area-context:generateDebugRFile Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0. You can use ‘–warning-mode all’ to show the individual deprecation warnings and determine if they come from your own scripts or plugins. See https://docs.gradle.org/7.5.1/userguide/command_line_interface.html#sec:command_line_warnings Execution optimizations have been disabled for 1 invalid unit(s) … Read more

Unit Testing in Java with JUnit 4

Unit Testing in Java with JUnit 4

Tiempo de lectura: 2 minutos Reading time: 3 minutes Today, I’m going to show you how you can implement JUnit tests in Java with a simple example. The first thing you need to do is to start a Java project and create an example class called Multiplication: Now let’s create a simple function for multiplication: public class Multiplication { } … Read more

Create a Docker Compose container with Apache + PHP + MySQL (XAMPP with Docker)

Create a Docker Compose container with Apache + PHP + MySQL (XAMPP with Docker)

Tiempo de lectura: 3 minutos Reading time: 3 minutes Continuing with the series of Docker Compose tutorials, based on the previous tutorial “Associate a Docker file to have a custom image (Apache + PHP + Python) within Docker Compose”, we will now create a XAMPP or LAMPP service that includes Apache2, PHP, and MySQL. This will be achieved by leveraging … Read more

How to create a symbolic link under htdocs to run our applications from the development environment we want on Windows.

How to create a symbolic link under htdocs to run our applications from the development environment we want on Windows.

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute Good morning, in this post I am going to explain how to create a symbolic link under HTDOCS and be able to run our applications from our development environment, without having to constantly access HTDOCS to run it. The first thing we need to have installed is the XAMPP server ... Read more

How to Install and Use GitBash (Windows) for GITLAB and Other GIT Services

How to Install and Use GitBash (Windows) for GITLAB and Other GIT Services

Tiempo de lectura: 2 minutos Reading time: 2 minutes How to Install and Use GitBash (Windows) for GITLAB and Other GIT Services Photo by Lukas on Pexels What is Git Bash? It is an application for Microsoft Windows environments that offers an emulation layer for a Git command-line experience. Also valid on Linux and MacOS. You can install it on GITBASH. A Git … Read more

How to Make Money with a Mobile App?

How to Make Money with a Mobile App?

Tiempo de lectura: 2 minutos Reading time: < 1 minute Today I’m going to show you different ways to monetize a mobile app, even by offering your application for free to users. There are several ways to monetize a mobile app, including: Advertising: Advertising is a common way to monetize mobile apps. You can display ads within your app and ... Read more

The Million Dollar Question: What’s Better to Use, React Native or Flutter?

The Million Dollar Question: What’s Better to Use, React Native or Flutter?

Tiempo de lectura: 3 minutos Reading time: 3 minutes React Native and Flutter are two popular mobile development frameworks that allow developers to create iOS and Android applications using a single codebase. Both options have their own advantages and disadvantages, so it’s important to evaluate which one is the best choice for each project. React Native is a framework created … Read more

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

Add 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 beforehand, a project created in Visual Studio Code, and Python installed. Here are the following helpful links: Install Ubuntu on Windows Create a project in Visual Studio through commands in Ubuntu Install Python3 First, I install XAMPP for Linux. sudo chmod +x xampp-linux-x64-8.1.12-0-installer.run ... Read more