1add this in '/app/build.gradle'
2
3apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
11-npm install --save react-native-vector-icons
22-Edit android/app/build.gradle : (add below code)
3 apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
43-Edit android/settings.gradle : (add below codes)
5 + include ':react-native-vector-icons'
6 + project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')
74-Edit android/app/build.gradle : (add below code to dependencies)
8 dependencies {
9 ...
10 compile project(':react-native-vector-icons')
11}
125-import fontawesome to App.js :
13import FontAwesome5 from 'react-native-vector-icons/FontAwesome5';
1import Icon from 'react-native-vector-icons/FontAwesome';
2const myIcon = <Icon name="rocket" size={30} color="#900" />;
1In 'android/app/build.gradle' (not in android/build.gradle),
2
3apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
4
5Then,
6react-native link react-native-vector-icons
7react-native run-android
8react-native start