Skip to content

Headers and SPM linking for /System/Library/PrivateFrameworks/ProtocolBuffer.framework

License

Notifications You must be signed in to change notification settings

PrivateFrameworks/MediaRemote

Repository files navigation

MediaRemote

Installation

Using Swift Package Manager

Add the following to your dependencies in Package.swift:

.package(url: "https://github.com/PrivateFrameworks/MediaRemote", .upToNextMinor(from: "0.1.0")),

And then add PrivateMediaRemote as a dependency to your target:

    .target(
        name: "Home",
        dependencies: [
            // ...
            .product(name: "PrivateMediaRemote", package: "MediaRemote"),
        ]
    ),

To link /System/Library/PrivateFrameworks/MediaRemote.framework add MediaRemote to your target dependencies:

    .target(
        name: "Home",
        dependencies: [
            // ...
            .product(name: "PrivateMediaRemote", package: "MediaRemote"),
            .product(name: "MediaRemote", package: "MediaRemote"),
        ]
    ),