-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
I am having issues resolving the ios implementation of this lib.
No issues with common and android.
Important Code:
Project build Gradle
buildscript {
ext.kotlin_version = '1.3.41'
ext.kissme_version = "0.2.3"
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" }
maven { url "https://dl.bintray.com/netguru/maven/" }
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" }
maven { url "https://dl.bintray.com/netguru/maven/" }
maven { url "https://jitpack.io" }
}
}
Common Build Gradle
sourceSets {
commonMain.dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-common:$coroutines_version"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime-common:$serialization_version"
// Multiplatform Key value pair storage solution
implementation "com.netguru.kissme:kissme-common:$kissme_version"
}
androidMain.dependencies {
implementation "com.netguru.kissme:kissme-android:$kissme_version"
}
iOSMain.dependencies {
implementation "com.netguru.kissme:kissme-ios:$kissme_version"
}
}
I have double checked the bintray links : https://dl.bintray.com/netguru/maven/com/netguru/kissme/kissme-ios
and it all seems to be in order, but no matter what I do I can't seem to get the ios to resolve, and of course that means no build
Metadata
Metadata
Assignees
Labels
No labels
