When I create a swift package, and then I use the simple line:
import Combine
I get the following error:
No such module 'Combine'
I've switched my scheme to Any iOS Device
I also set the platform in the Package.swift file
import PackageDescription
let package = Package(
name: "AsyncImageView",
platforms: [.iOS(.v8)],
products: [
It still does not accept Combine.
