Fixing error: Building with plugins requires symlink support. Please enable Developer Mode in your system settings. In Flutter build.

Fixing error: Building with plugins requires symlink support. Please enable Developer Mode in your system settings. In Flutter build.

Tiempo de lectura: < 1 minuto If you encounter the following error message when using the command: flutter build apk or the command: flutter build appbundle Returns only due to lack of support for symbolic links (symlink) on your system. This problem can arise on operating systems that do not have developer support enabled or when Flutter cannot create symbolic links … Read more

Add Ad Consent Message for European Users — AdMob GDPR with Flutter

Add Ad Consent Message for European Users — AdMob GDPR with Flutter

Tiempo de lectura: 2 minutos Today we are going to learn how to implement the mandatory consent message from Google AdMob, which will be requested from European users by the GDPR or GPDR law or Data Protection who want to view the ads of the APP with AdMob. We are going to use the official AdMob package for Flutter (https://developers.google.com/admob/flutter/eu-consent?hl=en-419) … Read more

Configuring Node HTTP Request to Get, Read and Edit Files in Microsoft 360 with n8n

Configuring Node HTTP Request to Get, Read and Edit Files in Microsoft 360 with n8n

Tiempo de lectura: 2 minutos We will today see how we can get data from Excel in Microsoft 360 using n8n. First, we will create an app and credentials from https://portal.azure.com/. Login to your Microsoft account. Search: “App registrations” > click on “New registration” We add the application name and select: Accounts in any organizational directory (any Microsoft Entra multi-tenant … Read more

Recovering a MySQL or MariaDB database without a backup by accessing the mysql folder or directory

Recovering a MySQL or MariaDB database without a backup by accessing the mysql folder or directory

Tiempo de lectura: 2 minutos Today we are going to learn how we can recover a database for which we don’t have a .sql backup copy, but we do have access to its MySQL folder or directory. This can happen when the operating system doesn’t boot up, but we still have access to the hard drive. The first thing we … Read more

Adding GDPR European Ad Consent Message with React Native Google Mobile Ads (ADMOB) using Expo

Adding GDPR European Ad Consent Message with React Native Google Mobile Ads (ADMOB) using Expo

Tiempo de lectura: 2 minutos Today we are going to learn how we can add the mandatory ad consent message to comply with GDPR. The first thing we need to do is to have our message set up: https://devcodelight.com/mensaje-consentimiento-conforme-rgpd-para-admob/ NOTE: I am using version 12.2.0 of react-native-google-mobile-ads at least (https://github.com/invertase/react-native-google-mobile-ads) Once configured, let’s go to android/app/proguard-rules.pro and add: -keep class … Read more

Implementing Google Consent for GDPR with React Native

Implementing Google Consent for GDPR with React Native

Tiempo de lectura: < 1 minuto Today we are going to learn how we can implement the GDPR consent message with React Native. Lets install the following library (https://www.npmjs.com/package/@ulangi/react-native-ad-consent) npm install @ulangi/react-native-ad-consent –save <p.Now let’s add this key in info.plist of iOS: <p.Now we open AndroidManifest.xml in case of Android. And add: And now we create our component called consentAdmob.ts To … Read more

Failed to connect with the project in React Native

Failed to connect with the project in React Native

Tiempo de lectura: 2 minutos I tried to run an application developed in React Native on an Android device, and I encountered the following error. To solve it, I went to the network and Internet settings of my computer, after clicking on ‘Connection status’ as shown in the following image. We are now going to click where we are connected … Read more

Connect a React Native Application to a WebSocket

Connect a React Native Application to a WebSocket

Tiempo de lectura: < 1 minuto Today we will learn how to connect our React Native application to a WebSocket using the react-native-websocket library Setting up React Native Application npm install –save react-native-websocket Make sure to replace ws://localhost:8000/ws/1 with the URL of your FastAPI server. npx react-native run-android or npx react-native run-ios Visit http://localhost:3000 in your browser and you will see … Read more

Connect a React Application to a WebSocket Server

Tiempo de lectura: < 1 minuto Today we're going to learn how to connect our web application developed with React to a WebSocket. Configuration of the React Application npm install –save react-websocket Make sure to replace ws://localhost:8000/ws/1 with the URL of your FastAPI server. npm start Visit http://localhost:3000 in your browser, and you'll see the React application. You can type messages, … Read more