My app bundle size is 19.7. I decided to remove unused icons of react-native vector icons.
So, I added following code in android/app/build.gradle
project.ext.vectoricons = [
iconFontNames: [ 'SimpleLineIcons.ttf'] // Name of the font files you want to copy
]
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
I placed it just before:
apply from: "../../node_modules/react-native/react.gradle"
Then I re-created the bundle. But the size is still 19.7 MB.
Also, I extracted the bundle and found that in asset folder there were react native vector icons which I don't use except 1 icon set.
Can I remove those files from bundle directly ?