You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Ditto C# .NET SDK API Reference](https://software.ditto.live/dotnet/Ditto/4.11.1/api-reference/)
19
+
-[Ditto C# .NET SDK API Reference](https://software.ditto.live/dotnet/Ditto/5.0.0/api-reference/)
17
20
### Restore Packages
18
21
19
22
```sh
@@ -29,6 +32,12 @@ These commands will build and run the app on the default iOS target:
29
32
dotnet build -t:Run -f net10.0-ios
30
33
```
31
34
35
+
If your installed Xcode is newer than the version the .NET iOS workload was published against, you'll see `error: This version of .NET for iOS (...) requires Xcode XX.X`. Bypass the check with:
DITTO_CLOUD_TASK_TITLE="<seeded-title>" dotnet run
93
+
```
94
+
95
+
### Android
96
+
97
+
The Debug APK uses Mono Fast Deployment by default, which only works when launched via `dotnet build -t:Run`. If you `adb install` the APK manually, build with assemblies embedded:
When multiple Android devices are connected (e.g., an emulator + an unauthorized physical device), point the test at a specific one with `APPIUM_UDID`:
57
108
109
+
```sh
110
+
cd UITests.Android
111
+
APPIUM_UDID="emulator-5554" \
112
+
DITTO_CLOUD_TASK_TITLE="<seeded-title>" dotnet run
0 commit comments