Do you guys have an explicit list of supported tar...
# arrow
j
Do you guys have an explicit list of supported targets for KMM? I’m running in this issue right now :
Could not find io.arrow-kt:arrow-core-iosx64:unspecified
s
Hey @jean, Here is the list with published platforms. https://github.com/arrow-kt/arrow/blob/main/arrow-libs/gradle/subproject-mpp.gradle#L19
iosX64()
is supported by Arrow. The MPP publishing is not so straight forward though. Can you try
1.0.1-SNAPSHOT
and to see if that resolves? You’ll need to add this to Gradle too to try it.
Copy code
allprojects {
    repositories {
        ...
        maven(url = "<https://oss.sonatype.org/content/repositories/snapshots/>")
    }
j
That seems to fix it indeed 🙂
s
Thank you for reporting back @jean! I’ll keep you posted if we can fix this issue on maven 👍
j
glad to help by trying it out!