Ripple can not find config.xml after updating cordova project to visual studio 2015

I followed the instructions at the end of this video, and the project really builds and seems to work in a ripple. https://www.youtube.com/watch?v=n44ynSECDCY

However, in the console there is 404 finding config.xml, which is at the root of the project in 2015. If I make a copy of the config.xml file and place it in the www directory, I will no longer receive a ruffled error.

Obviously, I don't need to have config.xml in two different places, so some way needs to be fixed. Any help would be appreciated.

EDIT: It looks like this is happening in the new 2015 project as well

+5
source share
1 answer

I'm just making a copy of config.xml too.

as suggested here, you can add a Post Build task to copy the config.xml file:

<Copy SourceFiles="config.xml" DestinationFolder="www" ContinueOnError="false" /> 

https://social.msdn.microsoft.com/Forums/vstudio/en-US/c289c125-a7cf-409a-a126-85743a811058/vs-2015-cordova-app-configxml?forum=ToolsForApacheCordova

0
source

All Articles