Skip to content

FYI, SwiftUI-Introspect 0.2.0 changed min iOS to 13, breaking builds #20

@ggrell

Description

@ggrell

FYI, wanted to let you know that projects including ScrollViewProxy will likely break now that https://github.com/siteline/SwiftUI-Introspect/releases/tag/0.2.0 has a minimum iOS 13, but this project has min iOS 11. Can either try and upgrade this project to use the latest introspect library, or update the Package.swift to only include the exact version "0.1.4".

Workaround:
If someone includes this package as a dependency, you must also include the correct SwiftUI-Introspect version before the iOS minimum changed, like this:

    dependencies: [
        ...
        .package(url: "https://github.com/Amzd/ScrollViewProxy", exact: "1.0.3"),
        .package(url: "https://github.com/siteline/SwiftUI-Introspect.git", exact: "0.1.4"),
        ...
    ]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions