PinCodeInputView icon indicating copy to clipboard operation
PinCodeInputView copied to clipboard

Swift Package Manager support

Open akshitzaveri opened this issue 3 years ago • 1 comments

akshitzaveri avatar Jun 09 '21 10:06 akshitzaveri

@shima11 Can you add it from our fork ? -> https://github.com/geneva/PinCodeInputView/blob/master/Package.swift

// swift-tools-version: 5.7
import PackageDescription

let package = Package(
    name: "PinCodeInputView",
    platforms: [
        .iOS(.v11)
    ],
    products: [
        .library(
            name: "PinCodeInputView",
            targets: ["PinCodeInputView"]
        )
    ],
    targets: [
        .target(
            name: "PinCodeInputView",
            path: "PinCodeInputView",
            exclude: [
                "PinCodeInputView/Info.plist",
                "PinCodeInputView/PinCodeInputView.h"
            ]
        )
    ]
)

m1entus avatar Nov 23 '22 17:11 m1entus