Contents

skiptools/skip-fuse

SkipFuse helps fuse the Swift and Android worlds for [Skip Fuse](https://skip.dev/docs/modes/#fuse) modules and apps. It is an umbrella framework that vends cross-platform functionality. For example, SkipFuse:

Setup

To include this framework in your project, add the following dependency to your Package.swift file:

let package = Package(
    name: "my-package",
    products: [
        .library(name: "MyProduct", targets: ["MyTarget"]),
    ],
    dependencies: [
        .package(url: "https://source.skip.dev/skip-fuse.git", from: "1.0.0"),
    ],
    targets: [
        .target(name: "MyTarget", dependencies: [
            .product(name: "SkipFuse", package: "skip-fuse")
        ])
    ]
)

License

This software is licensed under the Mozilla Public License 2.0.

Package Metadata

Repository: skiptools/skip-fuse

Default branch: main

README: README.md