Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion android-kotlin/QuickStartTasks/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -138,5 +138,6 @@ dependencies {
debugImplementation(libs.androidx.ui.test.manifest)

// Ditto SDK
implementation("live.ditto:ditto:4.10.0")
//implementation("live.ditto:ditto:4.10.0")
implementation("live.ditto:ditto:4.11.0")
}
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ class TasksApplication : Application() {
ditto.updateTransportConfig { config ->
// Set the Ditto Websocket URL
config.connect.websocketUrls.add(webSocketURL)

if (Build.VERSION.SDK_INT <= 27) {
// Temporary workaround to prevent crash on Android 8.1 and below
config.peerToPeer.wifiAware.enabled = false
}
}

// disable sync with v3 peers, required for DQL
Expand Down
Loading