- Install the .NET 9 SDK from https://dotnet.microsoft.com/en-us/download/dotnet/9.0
- Install the .NET MAUI workload by running
dotnet workload install maui. - If you want to build and test the MAUI app for iOS, install Xcode from the Mac App Store.
- If you want to build and test the MAUI app for Android, install Android Studio, or install the Android SDK, Java JDK, and Android emulator.
-
- Create an application at https://portal.ditto.live. Make note of the app ID and online playground token
- Copy the
.env.samplefile at the top level of the quickstart repo to.envand add your app ID and online playground token.
cd DittoMauiTasksApp
dotnet restoreThese commands will build and run the app on the default iOS target:
dotnet build -t:Run -f net9.0-iosThese commands will build and run the app on the default Android target:
dotnet build -t:Run -f net9.0-androiddotnet build -t:Run -f net9.0-maccatalyst dotnet build -t:Run -f net9.0-windows10.0.19041.0 Other platforms not supported at this time.