Android Filepath Issue

@philspitler===

This is the fileSeparator standard issue (and i have already put answers for it in the “old” forum); till your images are in the data folder at the first level loadImage() works but if you are using subfolders it fires this error ; in order to get rid of it you have to use android AssetManager and list your subfolders (or folders/subfolders…): it will return an array of all the files inside them and so you can get your image using loadImage(myarray[i]). Of course i suppose that your images are not in the external sd card but in your app!