I have upgrade to RC3 everything works well, just splashscreen and icons are using default cordova images instead of my customer icons
I also tried
$ ionic resources
but it’s display old images, in RC2 it’s working fine.
I have upgrade to RC3 everything works well, just splashscreen and icons are using default cordova images instead of my customer icons
I also tried
$ ionic resources
but it’s display old images, in RC2 it’s working fine.
Have a look at this: Can't get custom icons & splash screen to work in Android
I had the same issue and it was coping the resources to a wrong folder. To fix this I did:
ionic platform rm android
ionic platform add android@latest
ionic resources
ionic build android
If you have cordova version 6.4.0 they messed up android.
You should try to reinstall the platform android.
rm -rf ./patforms ./plugins
ionic platforms add android@6.1.0 ios
ionic state restore --plugins
Yes, it’s not working in 6.4.0
Then check the file platform.json
, if you have Android 6.0 it’s because of that, you should try :
ionic platforms add android@6.1.0 --save
Thanks for your answer but still it’s not working
ionic platforms add android@6.1.0 --save
ionic info
Your system information:
ordova CLI: 6.4.0
Ionic Framework Version: 2.0.0-rc.3
Ionic CLI Version: 2.1.13
Ionic App Lib Version: 2.1.7
Ionic App Scripts Version: 0.0.45
ios-deploy version: Not installed
ios-sim version: Not installed
OS: Windows 10
Node Version: v6.9.1
Xcode version: Not installed
cordova platform version android
Installed platforms:
android 6.1.0
ios 4.3.0
still it’s shows default icon
I just remove and add android platform today and I got the same problem.
Oh I realized after build, “res” folder will be generated in the root folder.
I think this “res” folder is suppose to be placed inside platforms/android
This fix also worked for me:
ionic platform rm android
ionic platform add android@latest
ionic resources
ionic build android
It works!
Thank you so much
That worked for me as well!
even after trying the above solution, if the splash and the icon did not update. that is because i think the latest version of ionic creates 2 md5 files of the icon and the splash. which i guess is locking the updates.
I just deleted “icon.png.md5” and “splash.png.md5”.
then ran the following command : ionic cordova resources
then it updated the splash and the icon successfully.
might be helpful to someone out there cheers!!
@mikethetechy in your resource folder after deleteing that .md5 files …only 2 images png are remaining right ?