forked from LoveSwift/NSExceptionKt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNSExceptionKt.podspec
More file actions
27 lines (22 loc) · 1.09 KB
/
NSExceptionKt.podspec
File metadata and controls
27 lines (22 loc) · 1.09 KB
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
Pod::Spec.new do |spec|
spec.name = "NSExceptionKt"
spec.version = "1.0.0" # Adjust this to match your library version
spec.summary = "A library for handling NSExceptions in iOS"
spec.description = <<-DESC
NSExceptionKt is a library that provides utilities
for handling NSExceptions in iOS applications.
DESC
spec.homepage = "https://github.com/SuryakantRapido/NSExceptionKt"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Suryakant" => "suryakant@example.com" }
spec.source = { :git => "https://github.com/SuryakantRapido/NSExceptionKt.git", :tag => "1.0.0" }
spec.ios.deployment_target = "14.0"
# Source files
spec.source_files = "NSExceptionKt/**/*.{h,m}"
spec.exclude_files = "NSExceptionKt/Exclude"
# Frameworks and libraries dependencies
# spec.frameworks = 'UIKit'
# spec.libraries = 'c++'
# Optional: Specify dependencies if any
# spec.dependency "SomeDependency", "~> 1.0.0"
end