Icon showing asian character rather than correct character
See original GitHub issueBefore filling out an issue, be sure to check the version of react-native-elements you are using and the docs for that version over here.
Explain what you did I created an icon element and used it in my component.
Expected behaviour Icon should show correctly
Describe the bug Ok, so I’m only seeing this in production, but when I create an Icon like so:
<Icon
name='x'
type='feather'
size={30}
color='black'
containerStyle={{ alignSelf: 'flex-start' }}
/>
a few users have been reporting that they’re seeing the icon character below. This should just be a simple ‘x’. I’m not seeing on my phone, and so far I’ve only heard about it from Android users.
To Reproduce I have no way to reproduce this… Not sure how to see what’s happening in production.
Possible Solution Can you suggest a possible fix that would address this issue?
Screenshots

Your Environment (please complete the following information):
| software | version |
|---|---|
| react-native-elements | 1.1.0 |
| react-native | .0.60.4 |
| npm or yarn | 6.5.0-next.0 |
Issue Analytics
- State:
- Created 4 years ago
- Reactions:3
- Comments:9

Top Related StackOverflow Question
I had this error with all icons after starting a new project with React-Native 0.61.1 and react-native-elements 1.2.5.
I discovered that to finish the installation of react-native-vector-icons for android you need to link it manually (react-native-vector-icons doc).
Modifying the file
android/app/build.gradleand adding the following line at the end solved the problem for me :We are expecting this issue while using Expo. Unfortunately we cannot manually link while using Expo. We did update certain dependencies recently and are now using:
Any updates on this? It is currently stopping us from updating our production app.