reduxkotlin / redux-kotlin

Redux implementation for Kotlin (supports multiplatform JVM, native, JS, WASM)
https://reduxkotlin.org
MIT License
426 stars 32 forks source link

Empty artifact in maven central (?) #8

Closed dudududi closed 4 years ago

dudududi commented 5 years ago

Hi,

I have tried to download and use your library in my test multiplatform project. I have added your dependency in my build.gradle.kts like follow:

    sourceSets {
        commonMain {
            dependencies {
                api("org.jetbrains.kotlin:kotlin-stdlib-common")
                api("org.reduxkotlin:redux-kotlin:0.2.4")
            }
        }
   }

However, I am still unable to use it on in my code - references to APIs functions cannot be found. Any ideas?

patjackson52 commented 5 years ago

Sorry for the delayed response. Is this still an issue? You may need to enable gradle meta-data by putting enableFeaturePreview('GRADLE_METADATA') in your settings.gradle

patjackson52 commented 4 years ago

Closed due to unable to reproduce.