Djuro
06/22/2023, 7:37 PMcommon/build.gradle.kts there is no iosMain by creating generated. Did anyone else face a similar issue?Djuro
06/22/2023, 7:40 PMCannot add a KotlinSourceSet with name 'iosMain' as a KotlinSourceSet with that name already exists.Jeff Lockhart
06/22/2023, 7:52 PMiosMain by getting instead.
The new KMP source set hierarchy APIs will create intermediate source sets automatically, without the need to use by creating and manually connect them with a bunch of dependsOn() calls. It's a much cleaner concise API that replaces target shortcuts.Djuro
06/22/2023, 8:11 PM