bendb
01/21/2022, 5:48 PMkotlin {
...
ios {
binaries.framework()
}
}
I get a strange dependency-resolution failure: Could not find :kotlin-native-prebuilt-macos-x86_64:1.6.10
. I've already got the multiplatform plugin applied, the build has been working, etc. Is there perhaps some obvious dependency I'm missing? If not, any suggestions on how I could debug this?bendb
01/21/2022, 8:26 PMdependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
}
Evidently, the MPP plugin configures extra repositories on the project; this line ^^^ suppressed those repositories. Changing it to PREFER_PROJECT
unblocks this particular issue.