Creating a Picker for Android/iOS using React Native

Creating a Picker for Android/iOS using React Native

Tiempo de lectura: 2 minutos Reading Time: 2 minutes I’m going to show you how to create a picker component in Android/iOS using React Native. The first thing we need to do is import the react-native-picker-select library. To import this library, we need to execute these two commands (one for the library and one for the dependency): npm install react-native-picker-select … Read more

Creating a Development Build Using Expo EAS with React Native

Creating a Development Build Using Expo EAS with React Native

Tiempo de lectura: < 1 minuto Reading Time: < 1 minutes I’m going to show you how to create a development build using EAS in React Native. This build allows us to run the project with native code directly on our device and even perform debugging tests on the build. First, we need to generate a development build. Install expo-dev-client: npm ... Read more

Free Resources, Programs, and Licenses for Students

Free Resources, Programs, and Licenses for Students

Tiempo de lectura: 2 minutos Reading time: 2 minutes Today I bring you a very interesting post about software programs that you can get with a student account. Microsoft Office 365 free for students. The first set of programs you can get for free with your student account is the Microsoft Office 365 package. It is completely free for students. … Read more

Error in getSku when updating Google Play Billing to version 5

Error in getSku when updating Google Play Billing to version 5

Tiempo de lectura: < 1 minuto Reading time: < 1 minute When we update the Google Play Billing library to version 5: com.android.billingclient:billing:5.1.0 We may encounter the following issue: This is because now, to obtain the purchased product code, we no longer call the getSku() function. Instead, when iterating through the list of purchases, we need to call it in the ... Read more

JSON File Data Access (Simple)

JSON File Data Access (Simple)

Tiempo de lectura: 2 minutos Reading time: 2 minutes Good afternoon everyone, I’m going to provide you with a tutorial on how to access data: <!DOCTYPE html> <html> <body> <h2>First Example Accessing Data in JSON Format</h2> <p id=”miDiv”></p> <script> var texto = ‘[{“nombre”:”Laura Gonzalez”, “calle”:”Su casa en la montania portal 6″, “telefono”:877436700, “fecha”:”1998-07-25″},{“nombre”:”Pablo Perez”, “calle”:”Su casa en la playa bajo … Read more

Fixing Error: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. When Generating APK or Executing in Android.

Fixing Error: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. When Generating APK or Executing in Android.

Tiempo de lectura: < 1 minuto Reading time: < 1 minutes If you encounter the following error when generating or running your APK: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. You can solve it by adding the following: First, go to your build.gradle file. Scroll down to the dependencies ... Read more

Fixing INSTALL_PARSE_FAILED_MANIFEST_MALFORMED Error when Upgrading to targetSDKVersion 31 in Android

Fixing INSTALL_PARSE_FAILED_MANIFEST_MALFORMED Error when Upgrading to targetSDKVersion 31 in Android

Tiempo de lectura: < 1 minuto Reading time: < 1 minutes If changing the target version of Android to 31 gives us the following error: Installation did not succeed.The application could not be installed: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED Installation failed due to: 'INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: Failed parse during installPackageLI: /data/app/vmdl620487180.tmp/base.apk (at Binary XML file line #82): We need to do the following: Go to the AndroidManifest.xml ... Read more

Load a FlatList from the End to Display a Chat in React Native

Load a FlatList from the End to Display a Chat in React Native

Tiempo de lectura: < 1 minuto Reading time: < 1 minutes Today I’m going to show you how you can load a flatlist in reverse order to display a conversation (chat) using React Native. We are using the FlatList library that comes with the React Native package. import {FlatList} from 'react-native'; To display the items in reverse order (loaded from the ... Read more

Get location in React Native and Expo

Get location in React Native and Expo

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Today I’m going to show you how to obtain location using React Native and Expo: We’re going to use the library expo-location (https://docs.expo.dev/versions/latest/sdk/location/) First, let’s install it: expo install expo-location This library automatically adds the necessary permissions to the Android Manifest (required to use location): ACCESS_COARSE_LOCATION: for approximate device location ACCESS_FINE_LOCATION: … Read more