Kissme icon indicating copy to clipboard operation
Kissme copied to clipboard

Unable to resolve kissme-ios

Open Soup-Flies opened this issue 6 years ago • 5 comments
trafficstars

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"
            
        }
    }

Screen Shot 2019-08-19 at 11 40 45 AM

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

Soup-Flies avatar Aug 19 '19 17:08 Soup-Flies

Hi guys, Same issue for me, any idea on how to resolve this?

Tbruni85 avatar Aug 21 '19 13:08 Tbruni85

I ran into this as well, all released versions are gone. See #54

RobVanGroenewoud avatar Oct 31 '19 13:10 RobVanGroenewoud

We were experiencing issues with our Bintray maven repo, and multiplatform publication. The version was updated to 0.2.5 recently. You can check the packages here https://dl.bintray.com/netguru/maven/com/netguru/kissme/

samiuelson avatar Oct 31 '19 14:10 samiuelson

Thanks for releasing v0.2.5, The bintray links are now correct. However there's still an issue with the ios part as described in #55

RobVanGroenewoud avatar Oct 31 '19 15:10 RobVanGroenewoud

Hi, we also are unable to include the ios lib for our build on macOs (for iOS target). I was also unable to publish/install 0.2.5 into mavenLocal.

Could you maybe update some dependencies (foremost Kotlin 1.3.60) and publish a new version of Kissme ? It is very useful for us and the API is nice.. would be a pitty to

clojj avatar Nov 27 '19 08:11 clojj