Default app gets error when emulating ripples

I just downloaded the plug-in for building mashups with multiple devices for Visual Studio 2013. Before I create a new project, I installed everything needed (Android SDK, ant, git cli, etc.)

Now when I have created a blank application in Visual Studio and run it with ripple (galaxy nexus) I get an emulator and on the screen it says "Can not GET / index.html".

Is the address specified in the address bar localhost: 4400 / index.html? enableripple = cordova-3.0.0-NexusGalaxy.

Can anyone please help?

+3


source to share


5 answers


I had the same problem. It seems that sometimes VS2013 won't recompile the app after cleaning ...



I deleted my AndroidManifest.xml, did "Clean" then "Restore" manually and it worked.

+2


source


I deleted the "bld" folder in my solution file explorer. Then rebuild the solution and it should work again.



+1


source


Check the page name specified in the config.xml file. Config.Xml -> Common -> Start Page

0


source


I saw this error and had to use the full project path on the command line: ripple emulate --path c: \ project \ myhello \ platform \ android \ assets \ www

It worked after I used the full path. Hope this helps you from VS as well.

0


source


I had some missing files in my android folder. I'm not sure how this happened, but it fixed the problem.

Open a command prompt in your project folder and type:

cordova platform remove android
cordova platform add android

      

Then open VS 2015 and run Clean, then Repair.

0


source







All Articles