kyubuns / AppIconChangerUnity

Change the app icon dynamically in Unity (iOS only)
MIT License
191 stars 28 forks source link

Fix Images.xcassets already exists error in manual mode #1

Closed mjkwak0184 closed 2 years ago

mjkwak0184 commented 2 years ago

When re-building games using "Append" build mode in Unity, build fails since Images.xcassets file already exists in the build folder when icon generation mode is set to manual. Had to delete Images.xcassets file every time I build; passing 'true' as a third argument in File.Copy to overwrite any existing app icons fixed my issue.

kyubuns commented 2 years ago

Excellent! Thanks for the PullRequest!