Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1.37 KB

README.md

File metadata and controls

41 lines (26 loc) · 1.37 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

Building and Running the App on iOS

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

cd DittoMauiTasksApp
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:

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

Other MAUI Platforms

Building the MAUI app for platforms other than iOS and Android is not supported by Ditto at this time.