How to add icons to React Native app
I am making a React Native app. I would like to customize the app icon (meaning the icon that you click on to start the app). I have Googled this, but I keep finding different types of icons that refer to different things. How do I add these types of icons to the app?
iOS Icons Set AppIcon in Images.xcassets . Add 9 different size icons: 29pt 29pt*2 29pt*3 40pt*2 40pt*3 57pt 57pt*2 60pt*2 60pt*3 . Images.xcassets will look like this: Android Icons Put ic_launcher.png in folders [PrjDir]/android/app/src/main/res/mipmap-*/ . 72*72 ic_launcher.png in mipmap-hdpi . 48*48 ic_launcher.png in mipmap-mdpi . 96*96 ic_launcher.png in mipmap-xhdpi . 144*144 ic_launcher.png in mipmap-xxhdpi . 192*192 ic_launcher.png in mipmap-xxxhdpi .
I wrote a generator to automatically generate icons for your react native app from a single icon file: https://blog.bam.tech/developper-news/how-to-generate-your-react-native-app-icons-in-a-single-command-...