Follow the instructions for setting up the development environment for building Windows Phone 10 applications.
Add a productid GUID to application build.yml . For example:
uwp: productid: caa0300f-1021-40aa-bb98-27c5547616fa
When you use the `rhodes app` command to generate an application, a productid is generated automatically |
Install Rhodes gem
If it is the first time, you building uwp application, you may need to install all MSVS dependencies, needed by an application. To do that, from power shell go to the directory ‘
Run application simulator:
$rake run:uwp
You may use your computer keyboard with Windows Phone 10 emulator. By default it is disabled, but you can enable it pressing **PgUp** key. While it is enabled a device rotation simulation is not supported. To rotate device you need to disable keyboard support pressing **PgDown** key. Look [MSDN page](https://docs.microsoft.com/en-us/windows/uwp/debug-test-perf/test-with-the-emulator) for much more details on this topic. |
load application to device:
$rake run:uwp:device
See log in application folder : rholog.txt
When running on device you may need to disconnect USB cable from device to see log |
rhodes\platform\uwp\rhodes.sln
in VS 2015 or VS Express 2015 for Windows Phone with version 10.0.14393.You will need to provide a name and icon for the application that the user will see on the device. You can also customize the loading screen that is shown while your application is launching. Refer to the Application Icon and Splash Screen guide for detailed information.
Update your application’s configuration files to make sure developer / debug / profile options are turned off.
The below values can be used as a guide for rhoconfig.txt
, skip any setting which is not already present.
MinSeverity = 3 LogToOutput = 0 net_trace = 0 log_skip_post = 0
The below values can be used as a guide for build.yml
, skip any setting which is not already present.
profiler: 0
Once your build.yml
is set up, you can run:
$ rake device:uwp:production
The compiled application .APPX file will be located in <your project folder>\bin\target\uwp
and all dependencies you may need are in ‘
To deploy application .APPX file to UWP device:
Application Deployment
Application key is placed here: ‘
Quote from Installing developer packages on Windows RT
Click Next. Tap OK to confirm the UAC dialog. In the next screen of the Certificate Import Wizard, change the selected option to Place all certificates in the following store. Tap the Browse button. In the Select Certificate Store pop-up window, scroll down and select Trusted People, and then tap OK. Tap the Next button; a new screen appears. Tap the Finish button. A confirmation dialog should appear; if so, click OK.
Publishing your application on Windows Phone Store is a simple two step process:
First create your app info. This includes information like pricing, application category (business, entertainment, etc.)
Next upload and describe your APPX. This includes details like the application description, icon and screenshots etc.
Refer to the official docs for all details about publishing to the Windows Phone Store.