Subscribe

Ionic Resources

✍️

Generating the Icons and Splash Screen.

3 Jul, 2020 · 2 min read

Another great thing that Ionic comes with out of the box is the ability to generate resources. Meaning we can super easily create a splash screen and app icon. We don’t have to create every size possible for the billions of devices sizes we have nowadays.

Make sure your project is prepared for Cordova, run the following command: ionic cordova prepare

Ionic Preparing the Assets

Let’s start by preparing the assets.

For the App icon, we can prepare an image that is at least 1024x1024px. The source for the splash screen must be at least 2732x2732px.

They must be places in the following folder:

  • Icon - resources/icon.png - (min 1024x1024px)
  • Splash - resources/splash.png - (min 2732x2732px)

For the best results, the splash screen’s art should fit inside a square that’s 1200x1200px within the bigger one.

Ionic has this PSD splash template.

Platform Specific Resources

We can also generate platform-specific images, for instance, if your Android icon is different from the IOS one.

For this we add a second layer of folder;

  • Icon - resources/{platform}/icon.png
  • Splash - resources/{platform}/splash.png

Where {platform} can we ios or android.

Ionic Generate Resources

To create the actual resources, run the following command in the root of the project.

ionic cordova resources

This command will update your config.xml with the newly generated resources.

We can also generate only iOS resources:

ionic cordova resources ios

Or, just the android ones:

ionic cordova resources android

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next 📖

How to solve App Tracking Transparency app store rejection in Ionic

4 Aug, 2021 · 4 min read

How to solve App Tracking Transparency app store rejection in Ionic

Ionic tab bar circle middle button

19 May, 2021 · 2 min read

Ionic tab bar circle middle button

Join 2099 devs and subscribe to my newsletter