Reputation: 21
I use
react-native-vector-icons
and when I run app on emulator everything is ok but after the export with
expo build:android -t apk
and install on real phone all icons got hidden and not showing
Upvotes: 0
Views: 294
Reputation: 564
In order to fix this you have to publish with "Managed" workflow instead of "Bare":
expo publish --target managed
Upvotes: 1
Reputation: 185
this you try? react-native link react-native-vector-icons
Upvotes: 0