Windows Phone 8 builds are done using Corona Cards and Visual Studio. You cannot build them directly out of Corona SDK like you can for iOS or Android. Please see:
CoronaCards for WP8 is a case where most of your app will be just like you have it for Corona SDK. However you don’t build from the Corona Simulator. Instead you have to install Visual Studio, go through a few steps to get it setup. Part of that setup involves writing a little C# language code that we provide you. That’s the “a little”.
After that, there are some things that CoronaCards for WP8 doesn’t support, like native.newTextField(), native.newMapView() AdMob ads, etc. If your app needs these, you will have to implement them yourself by writing C# (and .NET) code to accomplish those features we don’t support.
All of this is very well documented by reading the link I posted above.
I am trying to follow the steps but during creating a project, keep getting this error "Unspecified error (Exception from xxxx) - http://snag.gy/PNmfa.jpg
The step causing is when I click on File > New > Project, then I select installed > templates > visual basic > corona > coronacards App (windows phone silverlight). Enter name, location then click OK. It creates the game folder but then throws up that error.
I have tried installing iisexpress8 64bit on Windows 7 x64 but still same issue.
First, double check that the Visual Studio version that you have installed meets our minimum system requirements as documented via the link below. We currently only support the Visual Studio 2013 *editions*. And during the installation, make sure to check-on/include “Windows Phone” and “Silverlight” if those options are available (it defers between editions). You can’t build WP8 Silverlight apps without them. You can verify this by going to the “Uninstall Programs” window, selecting Visual Studio 2013 from the list, and then clicking “Modify”.
Once you’ve verified that your dev environment meets our min requirements, you should next verify that you can create a new WP8 project via one of Microsoft’s built-in project templates. Such as…
Once created, see if you can build and run it. This will verify that your Visual Studio development environment is set up correctly and that you don’t have a bad installation.
Right. You need to check on the “Silverlight Development Kit”.
This is needed because our CoronaCards project template creates a Silverlight WP8 app, not a universal app. Those 2 types of apps very different. A Silverlight app compiles to a *.xap file and uses Microsoft’s Silverlight UI framework. A universal app compiles to a *.appx file and uses the WinRT XAML component UI framework. They’re not compatible. At the moment, it’s recommended to make Silverlight apps because Windows Phone 8.0 devices do not support universal apps and there are still a lot of 8.0 devices in the market.
Windows Phone 8 builds are done using Corona Cards and Visual Studio. You cannot build them directly out of Corona SDK like you can for iOS or Android. Please see:
CoronaCards for WP8 is a case where most of your app will be just like you have it for Corona SDK. However you don’t build from the Corona Simulator. Instead you have to install Visual Studio, go through a few steps to get it setup. Part of that setup involves writing a little C# language code that we provide you. That’s the “a little”.
After that, there are some things that CoronaCards for WP8 doesn’t support, like native.newTextField(), native.newMapView() AdMob ads, etc. If your app needs these, you will have to implement them yourself by writing C# (and .NET) code to accomplish those features we don’t support.
All of this is very well documented by reading the link I posted above.
I am trying to follow the steps but during creating a project, keep getting this error "Unspecified error (Exception from xxxx) - http://snag.gy/PNmfa.jpg
The step causing is when I click on File > New > Project, then I select installed > templates > visual basic > corona > coronacards App (windows phone silverlight). Enter name, location then click OK. It creates the game folder but then throws up that error.
I have tried installing iisexpress8 64bit on Windows 7 x64 but still same issue.
First, double check that the Visual Studio version that you have installed meets our minimum system requirements as documented via the link below. We currently only support the Visual Studio 2013 *editions*. And during the installation, make sure to check-on/include “Windows Phone” and “Silverlight” if those options are available (it defers between editions). You can’t build WP8 Silverlight apps without them. You can verify this by going to the “Uninstall Programs” window, selecting Visual Studio 2013 from the list, and then clicking “Modify”.
Once you’ve verified that your dev environment meets our min requirements, you should next verify that you can create a new WP8 project via one of Microsoft’s built-in project templates. Such as…
Once created, see if you can build and run it. This will verify that your Visual Studio development environment is set up correctly and that you don’t have a bad installation.