-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathBitByteData.podspec
29 lines (19 loc) · 922 Bytes
/
BitByteData.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Pod::Spec.new do |s|
s.name = "BitByteData"
s.version = "2.0.4"
s.summary = "Read and write bits and bytes in Swift."
s.description = "A Swift framework with classes for reading and writing bits and bytes."
s.homepage = "https://github.com/tsolomko/BitByteData"
s.documentation_url = "http://tsolomko.github.io/BitByteData"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Timofey Solomko" => "[email protected]" }
s.source = { :git => "https://github.com/tsolomko/BitByteData.git", :tag => "#{s.version}" }
s.ios.deployment_target = "14.0"
s.osx.deployment_target = "11.0"
s.tvos.deployment_target = "14.0"
s.watchos.deployment_target = "7.0"
# s.visionos.deployment_target = "1.0"
s.swift_versions = ["5"]
s.source_files = "Sources/*.swift"
s.resource_bundles = {"BitByteData" => ["Sources/PrivacyInfo.xcprivacy"]}
end