there has to be a better way of matching all apple...
# multiplatform
m
there has to be a better way of matching all apple targets?
Copy code
project.extensions.getByType<KotlinMultiplatformExtension>().sourceSets
            .matching {
                it.name.contains("ios")
                        || it.name.contains("macos")
                        || it.name.contains("watchos")
                        || it.name.contains("tvos")
            }.configureEach { ...