After you have completed the common prerequisites you will need the following:
- Android Studio Ladybug or newer
Assuming you have Android Studio and other prerequisites installed, you can build and run the app by following these steps:
- Create an application at https://portal.ditto.live/. Make note of the app ID and online playground token.
- Copy the
.env.template
file at the top level of thequickstart
repo to.env
and add your app ID and online playground token. - Launch Android Studio and open the
quickstart/android
directory. - In Android Studio, select a connected Android device, or create and launch an Android emulator and select it as the destination, then choose the Run > Run 'app' menu item.
The app will build and run on the selected device or emulator. You can add, edit, and delete tasks in the app.
If you run the app on additional devices or emulators, the data will be synced between them.
At the bottom of app/build.gradle.kts
, you will see this line that causes
Android Studio to automatically download the Ditto SDK from Maven Central and
add it to the project:
implementation("live.ditto:ditto:4.9.2")
To use a newer version of the SDK, change the version number in this line.