Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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,9 @@ class TasksApplication : Application() {
ditto.updateTransportConfig { config ->
// Set the Ditto Websocket URL
config.connect.websocketUrls.add(webSocketURL)

// Temporary workaround to prevent crash
config.peerToPeer.wifiAware.enabled = false
}

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