Add In-App Purchases (iOS/Android) in React Native

Add In-App Purchases (iOS/Android) in React Native

Tiempo de lectura: 2 minutos Today I’m going to show you how to add in-app purchases (APPPurcharses) to your React Native application. The first thing we’re going to do is install the dependency we’re going to use to add this feature: react-native-iap npm install –save react-native-iap Once installed, we’re going to set up a component for purchases: import React, { … Read more

Generating Android/iOS Native Code Folders in React Native with Expo

Generating Android/iOS Native Code Folders in React Native with Expo

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute I’m going to show you how to generate the Android/iOS folders with Expo in React Native. To generate the folders that contain the native code, we need to specify the following. For Android: expo run:android For iOS: expo run:ios Remember, to generate the iOS folders, you need to have a ... Read more

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