C#
You can integrate the Ditto SDK into C# projects to develop for platforms, including mobile apps for iOS and Android, desktop apps, Linux-enabled server systems, and more.
To install the C# SDK:
Confirm that you meet the minimum requirements. (Prerequisites)
Install the Ditto SDK. (Installing Dependencies)
Set up your app permissions. (Configuring Permissions)
Add Ditto to your app. (Initializing Ditto)
(Optional) Declare a foreground service (Android only). (Declaring a Foreground Service)
Prerequisites
Following are the minimum requirements that must be met before attempting to install Ditto:
Installing Dependencies
To use the Ditto SDK in your project, you’ll need to install the appropriate NuGet package.
If using a package manager other than NuGet, the official package manager for .NET, the command syntax to install Ditto may differ from the following snippet. For more information, see the official Nuget documentation > Ditto .NET
Configuring Permissions
To set up your environment for your target platform:
For apps targeting iOS; for example, MAUI, once you’ve added the Ditto package dependency, configure permissions and ensure your app continues syncing while running in the background, including when the end-user device is locked, by enabling background modes.
Open the Info.Plist
file for your project.
Add the following key-value pairs, and then, if desired, modify each string value:
Enable Bluetooth Background Modes:
For apps targeting iOS; for example, MAUI, once you’ve added the Ditto package dependency, configure permissions and ensure your app continues syncing while running in the background, including when the end-user device is locked, by enabling background modes.
Open the Info.Plist
file for your project.
Add the following key-value pairs, and then, if desired, modify each string value:
Enable Bluetooth Background Modes:
For apps targeting Android, once you’ve added the Ditto package dependency, configure the necessary permissions:
Open the AndroidManifest.xml
file typically located in the src/main/
directory of your project.
Add the necessary permissions to ensure your app has the permissions required by Ditto:
For instructions on how to modify the following configuration for permissions requests; for example, prevent your app from requesting unnecessary permissions on newer OS versions or ensure compatibility with both older and newer OS versions, see Customizing Permissions.
Customizing Permissions
To modify the behavior of permission requests for the Android target:
Add the following namespace attribute to the root <manifest>
tag of your AndroidManifest.xml
file:
To request permissions on all OS versions of Android:
To limit permissions request, use the following attributes as desired:
tools:targetApi
The tools:targetApi
attribute allows you to specify that a permission should only be requested on devices running a specified Android API level or higher.
By limiting permissions requests, you prevent errors that result from asking permissions on devices running older OS versions of Android.
android:maxSdkVersion
With the android:maxSdkVersion
attribute, you can customize to only initiate a permission request on devices running a specified Android API level or lower.
Setting to a specified API level or lower helps avoids unnecessary permissions requests on devices running newer OS versions of Android.
For apps targeting macOS via Mac Catalyst, once you’ve added the Ditto package dependency, you’ll need to request permission for Bluetooth and local networking access.
Open the Info.plist
file for your Mac Catalyst target.
Add the following key-value pairs to request access to Bluetooth and local networking:
Requesting Permissions at Runtime
In addition to being declared, some permissions need to be requested from the user at runtime. To ensure your app has the required permissions for sync, use the DittoSyncPermissions
helper class from the Ditto SDK.
This helper class simplifies the process of requesting end-user permissions at runtime with a single method call for all necessary permissions.
Ensure StartSync()
is invoked after permissions have been requested.
Initializing Ditto
Once you’ve installed the Ditto SDK, set the debug level you want Ditto to log messages for, create a new Ditto identity, and set up Ditto exception handling for data sync operations:
Declaring a Foreground Service (Android Only)
A foreground service allows your app to continue syncing data with Ditto while running in the background. A foreground service is not required to use Ditto, but without it your app will stop syncing whenever it is in the background.
To declare the foreground service, add the following to your AndroidManifest.xml
:
Make sure you customize the service metadata—it will be displayed to the user in the foreground service notification.
The foreground service will be automatically started and stopped on startSync()
and stopSync()
, respectively.
Next Steps
Learn how to build a task list app built on .NET and integrated with Ditto by going to the .NET MAUI or .NET TUI quickstart apps.