Skip to content

Commit

Permalink
Merge pull request #22 from p-x9/feature/support-cocoapods
Browse files Browse the repository at this point in the history
support cocoapods
  • Loading branch information
p-x9 authored May 14, 2023
2 parents 5024e1e + 275719b commit 5e0ca16
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions TouchTracker.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Pod::Spec.new do |spec|

spec.name = "TouchTracker"
spec.version = "0.2.1"
spec.summary = "Show a mark at the touched point on the View of SwiftU and UIKit."

spec.homepage = "https://github.com/p-x9/TouchTracker"

spec.license = { :type => "MIT", :file => "LICENSE" }

spec.author = { "p-x9" => "[email protected]" }

spec.platform = :ios, "13.0"

spec.source = { :git => "https://github.com/p-x9/TouchTracker.git", :tag => "#{spec.version}" }

spec.source_files = "Sources/TouchTracker/**/*.{swift}"

spec.swift_version = '5.8'

end

0 comments on commit 5e0ca16

Please sign in to comment.