Android resources are a bit of trouble since they have rules around their naming. We can automatically fix filenames during the conversion, but this could result in either naming collisions (ie: if you have cat.png and Cat.png and we sanitize the casing of the second for you, there's a collision - same with removing bad characters, etc). It's also confusing since if you have Cat.png you'd need to refer to your image as cat.png in your source code.
For now I think the best approach is to catch these poor naming practices early and error on them, forcing the user to correct them.
Android resources are a bit of trouble since they have rules around their naming. We can automatically fix filenames during the conversion, but this could result in either naming collisions (ie: if you have
cat.png
andCat.png
and we sanitize the casing of the second for you, there's a collision - same with removing bad characters, etc). It's also confusing since if you haveCat.png
you'd need to refer to your image ascat.png
in your source code.For now I think the best approach is to catch these poor naming practices early and error on them, forcing the user to correct them.