When I upload my PhoneGap project to PhoneGap Build, install and launch the app, the wrong index.html file is being used. The config file has:
<content src="index.html" />
In my project, the www files look like:
fr/index.html
images/*
res/*
scripts/*
styles/*
index.html
What happens is that it chooses the fr/index.html file and seems to use the fr folder as the root as none of the custom icons and splash screens work. It adds the PhoneGap ones.
If I remove the wrong index.html file, it works. The reason I have two like that is all files in the root folder can be accessed in the different language folder. So index.html is the main English and fr/index.html is the French version of the same page and so on.
Is there a way to make sure it targets the root index.html (www/index.html)?