-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBSSecureKit.podspec
More file actions
17 lines (17 loc) · 889 Bytes
/
BSSecureKit.podspec
File metadata and controls
17 lines (17 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |spec|
spec.name = "BSSecureKit"
spec.version = "1.1.0"
spec.summary = "A secure view component for iOS applications"
spec.description = <<-DESC
BSSecureKit provides secure view components for iOS applications.
It includes BSSecureView for UIKit and BSSecureViewRepresentable for SwiftUI.
DESC
spec.homepage = "https://github.com/Bangs00/BSSecureKit"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "BangsS00" => "gustn9634@gmail.com" }
spec.platform = :ios, "13.0"
spec.source = { :git => "https://github.com/Bangs00/BSSecureKit.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/*.swift"
spec.resource = "Sources/PrivacyInfo.xcprivacy"
spec.swift_version = "5.0"
end