Skip to content

Commit

Permalink
Add Swift Package Manager support 📦
Browse files Browse the repository at this point in the history
  • Loading branch information
magauran committed Oct 5, 2019
1 parent 97c3bc6 commit dd9168e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// swift-tools-version:5.1

import PackageDescription

let package = Package(
name: "SmileToUnlock",
platforms: [
.iOS(.v11),
],
products: [
.library(name: "SmileToUnlock", targets: ["SmileToUnlock"]),
],
dependencies: [],
targets: [
.target(name: "SmileToUnlock", dependencies: [], path: "SmileToUnlock")
]
)

0 comments on commit dd9168e

Please sign in to comment.