How to upgrade to fontawesome5 pro version for expo react native project - react-native

I am using free version of fontawesome 5 from #expo/vector-icons. How can I include(use) my downloaded font awesome pro icons in expo project. Shall I create custom fonts using https://docs.expo.io/guides/icons/#createiconset or Is there any way to upgrade to fontawesome pro version?

I am running into the same issue. There is an open issue regarding this on github. It seems that pro icons are not officially supported.
https://github.com/expo/vector-icons/issues/91

Related

How to use 2 version of npm package in a React Native App?

In my React Native App, I'm using the React Native Track Player package with version: `"react-native-track-player": "1.1.4". This version has a bug on iOS which mentioned in this link: App freezes when buffering a new track
I've upgraded to higher version, but unfortunately, they are not compatible with my "react-native-video": "^4.4.5", I can not build app on Android, just the track-player: 1.1.4 work with it.
So I think I need to implement something like 2 version of "react-native-track-player", on Android is: "1.1.4" and iOS is "1.1.8". Is there anyway to do that ?

#react-native-community/segmented-control fails on iOS. How can I get over this issue?

I'm trying to create an app with React Native and Expo (latest versions). I want to use this package, but I get into trouble when I am testing the component on iOs. The package is recommended by react-native official documentation. The main example from git is working perfectly on Android, but on iOS "View config not found for name RNC Segmented Control".
I've created a snack that also reproduces the error here: https://snack.expo.io/#ivy.mihai/94f0cf
The issue was actually caused by the SDK version that I had used. I've updated the SDK version and it worked on both platforms.

Upgraded to React Native 0.60.5, but my ios folder doesn't have Podfile

I recently upgraded my react native project from 0.59 to 0.60.5, however I wasn't using pods from the earlier version. How do I generate the Podfile for 0.60.5 to apply the new update?
You should use this resource. In the embedded link, I have selected your previous version of React Native and the new version you're upgrading to. I hope this helps you.

How to fix Play Store error about 64 bit binaries when publishing app built Expo / React Native?

I am deploying an app built with React Native and Expo to Play Store and the following error appears:
This release is not compliant with the Play 64-bit requirement.
The following APKs or App Bundles are available to 64-bit devices, but they have only 32-bit native code: 1. From 1 de agosto de 2019 all releases must be compliant with the Play 64-bit requirement.Include 64-bit native code in addition to 32-bit native code in your app. Use the Android App Bundle publishing format to automatically ensure that each device architecture receives just the native code it needs.
My Expo version is 27.0.1
Regarding this post https://github.com/facebook/react-native/issues/2814 react-native v0.59 is 64bit compliant (https://facebook.github.io/react-native/blog/2019/03/12/releasing-react-native-059)
and Expo 27 support react-native v0.55.
I'm not an expert with Expo, but can you manually upgrade react-native to v0.59 ? or maybe wait a new version of Expo ?
On July 16th 2019 they stated in 64-Bit Support and Android App Bundles:
We want to let you know that you can now build 64-bit support-enabled .apks that also make use of Android App Bundles (AABs) with SDK33 projects and, of course, with SDK34 upon its release. (Since SDK33 is the first Expo SDK version that uses React Native 0.59, the React Native version that allows for 64-bit support, prior versions of the SDK can’t be updated.)
These updates help us support your new submissions to the Google Play store, which will need to have 64-bit support starting August 1st. Your existing apps won’t need to upgrade to include 64-bit until you need to submit your next app update (though SDK33 has a lot of other fun things you might enjoy!).
Ensure you are running the latest version of expo-cli by running yarn global add expo-cli or npm install -g expo-cli.
Currently, there is no way to fix this. But the Expo Team promised ...
... to add this feature [64-bit binaries] before the deadline.
see here: https://forums.expo.io/t/does-expo-package-64-bit-version/18947

How to navigate from one page to another in UWP using react native?

I am new to react native with UWP, I installed react native windows and initialized a new project. The project contains the IOS, Android and windows folder. In the windows folder, it has a visual studio solution. When I run the App it opened me to a welcome screen. Now I want to create 2 page in UWP and navigate from one to another. I searched for it but I couldn't find any docs or tutorials. If someone knows where to find a tutorial on this plz help me.
I have tried to Develop the react-native app for Android,iOS and windows UWP also. I tried with react-navigation versions 3x and 4x. But its not working, because of react-native-gesture-handler. So i downgrade my react-navigation version as 2.18.3 in react-native version 0.59.10. Now its working fine for me. For react-navigation below 3x no need react-native-gesture-handler.
https://facebook.github.io/react-native/docs/navigation
You can use the same navigation provided by React-Native official docs. Or else you can use react-navigation package.