Skip to content

Commit 5e0ca16

Browse files
authored
Merge pull request #22 from p-x9/feature/support-cocoapods
support cocoapods
2 parents 5024e1e + 275719b commit 5e0ca16

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

TouchTracker.podspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Pod::Spec.new do |spec|
3+
4+
spec.name = "TouchTracker"
5+
spec.version = "0.2.1"
6+
spec.summary = "Show a mark at the touched point on the View of SwiftU and UIKit."
7+
8+
spec.homepage = "https://github.com/p-x9/TouchTracker"
9+
10+
spec.license = { :type => "MIT", :file => "LICENSE" }
11+
12+
spec.author = { "p-x9" => "p.x9.dev@gmail.com" }
13+
14+
spec.platform = :ios, "13.0"
15+
16+
spec.source = { :git => "https://github.com/p-x9/TouchTracker.git", :tag => "#{spec.version}" }
17+
18+
spec.source_files = "Sources/TouchTracker/**/*.{swift}"
19+
20+
spec.swift_version = '5.8'
21+
22+
end

0 commit comments

Comments
 (0)