ionic-app-icon-splash
Installation
SKILL.md
App Icon & Splash Generation
iOS and Android each need ~25 icon sizes and 4+ splash variants. @capacitor/assets generates all of them from one source PNG (icon) and one source PNG (splash) and copies them into the right native folders. Replace the default Capacitor icon before any store submission.
When to consult
- Source asset specs + generation command: generate.md
- iOS / Android specifics + light/dark splashes: platform-specifics.md
Hard rules
- ✅ Source icon: 1024×1024 PNG, no transparency, no rounded corners (iOS adds the mask).
- ✅ Source splash: 2732×2732 PNG, centered logo, solid background.
- ✅ Re-run
npx capacitor-assets generatewhenever the source PNG changes. - ✅ Run
npx cap syncafter generation so the new files end up in the native projects. - ❌ Don't hand-edit the generated files in
ios/App/App/Assets.xcassets/AppIcon.appiconset/orandroid/app/src/main/res/mipmap-*/— the next generation overwrites them. - ❌ Don't ship the default Capacitor compass icon. App Review notices.
Library
npm install --save-dev @capacitor/assets