Skip to content

Commit

Permalink
Merge pull request #34 from basvankuijck/master
Browse files Browse the repository at this point in the history
Swift Package Manager
  • Loading branch information
rushisangani authored Sep 23, 2019
2 parents a092db1 + f557577 commit 01767a8
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
1 change: 0 additions & 1 deletion .swift-version

This file was deleted.

6 changes: 3 additions & 3 deletions BiometricAuthentication.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "BiometricAuthentication"
s.version = "3.0"
s.version = "3.1.1"

s.summary = "Use Apple FaceID or TouchID authentication in your app using BiometricAuthentication."

Expand All @@ -15,13 +15,13 @@ s.screenshots = "https://raw.githubusercontent.com/rushisangani/BiometricAuthen
s.license = { :type => "MIT", :file => "LICENSE" }

s.author = { "Rushi Sangani" => "rushisangani@gmail.com" }
s.source = { :git => "https://github.com/rushisangani/BiometricAuthentication.git", :tag => s.version }
s.source = { :git => "https://github.com/rushisangani/BiometricAuthentication.git", :tag => "v#{s.version}" }

s.ios.deployment_target = '8.0'
s.source_files = "BiometricAuthentication/**/*.swift"

s.requires_arc = true
s.pod_target_xcconfig = { "SWIFT_VERSION" => "5.0" }
s.swift_version = "5.0"

end

23 changes: 23 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// swift-tools-version:5.1
import PackageDescription

let package = Package(
name: "BiometricAuthentication",
platforms: [
.iOS(.v8),
],
products: [
.library(name: "BiometricAuthentication", targets: ["BiometricAuthentication"])
],
dependencies: [
],
targets: [
.target(
name: "BiometricAuthentication",
dependencies: [
],
path: "BiometricAuthentication"
)
],
swiftLanguageVersions: [ .v5 ]
)

0 comments on commit 01767a8

Please sign in to comment.