-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathlibrary.podspec
More file actions
21 lines (16 loc) · 667 Bytes
/
library.podspec
File metadata and controls
21 lines (16 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "library"
s.version = "1.0"
s.summary = "ImagePickerKMP Swift Extensions"
s.homepage = "https://github.com/ismoy/imagepickerkmp"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Ismoy" => "ismoy@example.com" }
s.platform = :ios, "11.0"
s.ios.deployment_target = "11.0"
s.source = { :path => "." }
s.source_files = "library/src/iosMain/swift/**/*.{swift,h,m}"
s.frameworks = 'Foundation', 'UIKit', 'ImageIO', 'CoreLocation', 'CoreFoundation'
s.swift_version = '5.0'
# Dependencias del framework Kotlin
s.dependency 'imagepickerkmp'
end