Create an app with Rider

Note

Make sure to setup your environment by following our instructions.

Important

As of Rider 2023.1, .NET 8 for mobile targets is not supported. To build and run mobile apps, use .NET 7 in your TargetFrameworks. See this JetBrains article for more details.

Create the App

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 -tfm net7.0 -o MyApp
    

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

Debug the 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 to understand how to navigate the projects of your new app.

Troubleshoot Issues

You may encounter issues while developing your app. Please see the troubleshooting section.

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.