Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 1.54 KB

File metadata and controls

57 lines (36 loc) · 1.54 KB

Ditto .NET MAUI Quickstart Apps 🚀

Prerequisites

  1. Install the .NET 9 SDK from https://dotnet.microsoft.com/en-us/download/dotnet/9.0
  2. Install the .NET MAUI workload by running dotnet workload install maui.
  3. If you want to build and test the MAUI app for iOS, install Xcode from the Mac App Store.
  4. 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.
    1. Create an application at https://portal.ditto.live. Make note of the app ID and online playground token
  5. Copy the .env.sample file at the top level of the quickstart repo to .env and add your app ID and online playground token.

Documentation

Restore Packages

cd DittoMauiTasksApp
dotnet restore

Building and Running the App on iOS

These commands will build and run the app on the default iOS target:

dotnet build -t:Run -f net9.0-ios

Building and Running the App on Android

These commands will build and run the app on the default Android target:

dotnet build -t:Run -f net9.0-android

Building and Running the App on MacOS

dotnet build -t:Run -f net9.0-maccatalyst 

Building and Running the App on Windows

dotnet build -t:Run -f net9.0-windows10.0.19041.0 

Other MAUI Platforms

Other platforms not supported at this time.