Creating an app with Rider

Note

Make sure to setup your environment by following our instructions.

Creating an Uno Platform project is done using dotnet new by following these steps:

  1. In your terminal, navigate to the folder that will contains your new app.

  2. Create a new project:

    dotnet new unoapp --preset=blank -o MyApp
    

    You should now have a folder structure that looks like this:
    rider-folder-structure

Building and debugging your app

Set Android as your startup project. Run. run-android-rider

Note

Whether you're using a physical device or the emulator, the app will install but will not automatically open. You will have to manually open it.

Explore

Next, explore the Uno Platform App solution structure.

Troubleshoot Issues

You may encounter issues while developing your app. Please see Common Issues we have documented.

Next Steps

Now that you have built your first application, you can head to our tutorials on how to work on your Uno Platform app.