kpgalligan
10/15/2020, 1:51 PMbuildscript {
repositories {
google()
mavenCentral() //<-- This
jcenter()
}
dependencies {
classpath(Deps.android_gradle_plugin)
classpath(Deps.SqlDelight.gradle)
classpath(Deps.cocoapodsext)
classpath("org.jetbrains.kotlin:kotlin-serialization:${Versions.kotlin}")
classpath(kotlin("gradle-plugin", Versions.kotlin))
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build gradle files
}
}
Venkat , Bangalore , India
10/15/2020, 5:16 PMVenkat , Bangalore , India
10/15/2020, 5:17 PMplugins {
kotlin("native.cocoapods") version "1.4.10"
Venkat , Bangalore , India
10/15/2020, 5:17 PMVenkat , Bangalore , India
10/15/2020, 5:18 PMVenkat , Bangalore , India
10/15/2020, 5:19 PMVenkat , Bangalore , India
10/15/2020, 5:19 PMVenkat , Bangalore , India
10/15/2020, 5:19 PMVenkat , Bangalore , India
10/15/2020, 5:19 PMkpgalligan
10/15/2020, 5:24 PMkotlin("native.cocoapods") version "1.4.10"
That’s pointing at the JetBrains cocoapods plugin. We have a fork of that.Venkat , Bangalore , India
10/15/2020, 5:25 PMVenkat , Bangalore , India
10/15/2020, 5:25 PMplugins {
kotlin("multiplatform") version "1.4.10"
kotlin("plugin.serialization") version "1.4.10"
id("co.touchlab.native.cocoapods")
}
Venkat , Bangalore , India
10/15/2020, 5:26 PMVenkat , Bangalore , India
10/15/2020, 5:26 PMkpgalligan
10/15/2020, 5:27 PMVenkat , Bangalore , India
10/15/2020, 5:27 PMVenkat , Bangalore , India
10/15/2020, 5:27 PMVenkat , Bangalore , India
10/15/2020, 5:27 PMVenkat , Bangalore , India
10/15/2020, 5:28 PMcocoapods {
// Configure fields required by CocoaPods.
summary = " Shared KMP"
frameworkName = "shared"
setVersion("0.0.1")
pod("SQLCipher", "~> 4.0")
}
Venkat , Bangalore , India
10/15/2020, 5:28 PMimplementation("co.touchlab:sqliter:0.7.1") {
version {
strictly("0.7.1")
}
}
Venkat , Bangalore , India
10/15/2020, 5:28 PMVenkat , Bangalore , India
10/15/2020, 5:29 PMVenkat , Bangalore , India
10/15/2020, 5:29 PM