@@ -7,7 +7,7 @@ apply plugin: 'kotlin-multiplatform'
77archivesBaseName = ' reselect'
88
99group ' org.reduxkotlin'
10- version ' 0.2.9 '
10+ version ' 0.4.0 '
1111
1212kotlin {
1313 jvm()
@@ -20,48 +20,12 @@ kotlin {
2020 }
2121 }
2222 }
23- // -module-name args are needed to prevent circular deps bug on native platforms
24- iosArm64(" ios" ) {
25- compilations. main. extraOpts. addAll([" -module-name" , " reselect" ])
26- }
27-
28- iosX64(" iosSim" ) {
29- compilations. main. extraOpts. addAll([" -module-name" , " reselect" ])
30- }
31- macosX64(" macos" ) {
32- compilations. main. extraOpts. addAll([" -module-name" , " reselect" ])
33- }
34-
35- mingwX64(" win" ) {
36- compilations. main. extraOpts. addAll([" -module-name" , " reselect" ])
37- }
38-
39- wasm32(" wasm" ) {
40- compilations. main. extraOpts. addAll([" -module-name" , " reselect" ])
41- }
42-
43- linuxArm32Hfp(" linArm32" ) {
44- compilations. main. extraOpts. addAll([" -module-name" , " reselect" ])
45- }
46-
47- linuxMips32(" linMips32" ) {
48- compilations. main. extraOpts. addAll([" -module-name" , " reselect" ])
49- }
50-
51- linuxMipsel32(" linMipsel32" ) {
52- compilations. main. extraOpts. addAll([" -module-name" , " reselect" ])
53- }
54-
55- linuxX64(" lin64" ) {
56- compilations. main. extraOpts. addAll([" -module-name" , " reselect" ])
57- }
58-
5923
6024 sourceSets {
6125 commonMain {
6226 dependencies {
6327 implementation kotlin(" stdlib-common" )
64- implementation " org.reduxkotlin:redux-kotlin:0.2.6 "
28+ implementation " org.reduxkotlin:redux-kotlin:0.4.0 "
6529 }
6630 }
6731 commonTest {
0 commit comments