From 1c160370b783235ea2a480d08b7fe1468896063e Mon Sep 17 00:00:00 2001 From: cecelaitano <69170503+cecelaitano@users.noreply.github.com> Date: Thu, 8 Apr 2021 10:48:26 -0700 Subject: [PATCH] Update 03_Adding_dependecies.md Adding the version for sqldelight plugin. Without this version the project give errors. Per gradle documentation: To apply a community plugin from the portal, the fully qualified plugin id must be used: plugins { id("com.jfrog.bintray") version "0.4.1" } https://docs.gradle.org/current/userguide/plugins.html --- .../03_Adding_dependecies.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Networking and Data Storage with Kotlin Multiplatfrom Mobile/03_Adding_dependecies.md b/Networking and Data Storage with Kotlin Multiplatfrom Mobile/03_Adding_dependecies.md index d4a1e71..4bb2a26 100644 --- a/Networking and Data Storage with Kotlin Multiplatfrom Mobile/03_Adding_dependecies.md +++ b/Networking and Data Storage with Kotlin Multiplatfrom Mobile/03_Adding_dependecies.md @@ -133,7 +133,7 @@ Add this line to the plugins block at the very beginning of the `build.gradle` f ```kotlin plugins { // ... - id("com.squareup.sqldelight") + id("com.squareup.sqldelight") version "1.4.4" } ```