File tree Expand file tree Collapse file tree 5 files changed +10
-9
lines changed Expand file tree Collapse file tree 5 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 11buildscript {
22 repositories {
33 google()
4+ mavenCentral()
45 maven { url ' https://dl.bintray.com/jetbrains/kotlin-native-dependencies' }
56 maven { url " https://plugins.gradle.org/m2/" }
67 maven { url " https://oss.sonatype.org/content/repositories/snapshots" }
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ object Versions {
3434
3535 const val dokka_gradle_plugin: String = " 0.9.17" // available: "0.9.18"
3636
37- const val org_jetbrains_kotlin: String = " 1.3.72 "
37+ const val org_jetbrains_kotlin: String = " 1.4.0-rc "
3838
3939 const val spek: String = " 2.1.0-alpha.0.11+d97ef33"
4040 // available: "2.1.0-alpha.0.24+0fdeb6e"
@@ -43,9 +43,9 @@ object Versions {
4343
4444 const val recycler_view = " 1.0.0"
4545
46- const val coroutines = " 1.3.7 "
46+ const val coroutines = " 1.3.8-1.4.0-rc "
4747
48- const val atomicFu = " 0.14.2 "
48+ const val atomicFu = " 0.14.3-1.4.0-rc "
4949
5050 /* *
5151 *
Original file line number Diff line number Diff line change @@ -19,9 +19,11 @@ android.useAndroidX=true
1919android.enableJetifier =true
2020# Kotlin code style for this project: "official" or "obsolete":
2121kotlin.code.style =official
22+ kotlin.native.ignoreDisabledTargets =true
23+ kotlin.mpp.enableGranularSourceSetsMetadata =true
2224
2325GROUP =org.reduxkotlin
24- VERSION_NAME =0.5.3
26+ VERSION_NAME =0.5.3-1.4.0-rc
2527
2628POM_ARTIFACT_ID =reduxkotlin
2729POM_DESCRIPTION =Redux implementation for Kotlin. Mulitiplatform supported.
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ kotlin {
3232
3333 commonMain {
3434 dependencies {
35- implementation kotlin(" stdlib-common" )
35+ // api kotlin("stdlib-common")
3636 }
3737 }
3838 commonTest {
@@ -49,7 +49,7 @@ kotlin {
4949 jvmMain {
5050 kotlin. srcDir(' src/jvmMain/kotlin' )
5151 dependencies {
52- implementation kotlin(" stdlib" )
52+ // api kotlin("stdlib")
5353 }
5454 }
5555 jvmTest {
@@ -69,7 +69,7 @@ kotlin {
6969 jsMain {
7070 kotlin. srcDir(' src/jsMain/kotlin' )
7171 dependencies {
72- implementation kotlin(" stdlib-js" )
72+ api kotlin(" stdlib-js" )
7373 }
7474 compileKotlinJs {
7575 kotlinOptions. metaInfo = true
Original file line number Diff line number Diff line change @@ -18,5 +18,3 @@ include(
1818)
1919
2020rootProject. name = ' Redux-Kotlin'
21-
22- enableFeaturePreview(' GRADLE_METADATA' )
You can’t perform that action at this time.
0 commit comments