-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCameraX.podspec
More file actions
53 lines (39 loc) · 1.61 KB
/
CameraX.podspec
File metadata and controls
53 lines (39 loc) · 1.61 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Pod::Spec.new do |spec|
spec.name = "CameraX"
spec.version = "1.4.1"
spec.summary = "CameraX is a camera Utility module"
spec.description = <<-DESC
This module contains the caomera utility
DESC
spec.homepage = "https://github.com/prashantLalShrestha/CameraX"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.authors = {
"Prashant Shrestha" => "prashantlurvs@gmail.com"
}
# spec.social_media_url = "https://twitter.com/Prashant Shrestha"
spec.ios.deployment_target = '11.0'
# spec.source = { :git => '' }
spec.source = {
:git => "https://github.com/prashantLalShrestha/CameraX.git", :tag => spec.version.to_s
}
spec.source_files = 'Sources/**/*.{swift}'
# spec.exclude_files = "CoreDeviceKit/Exclude"
spec.swift_version = "5.0"
# spec.public_header_files = "CoreDeviceKit/**/*.h"
# spec.resource = "icon.png"
# spec.resources = "Sources/DropDown/resources/*.{xib}"
# spec.resource_bundle = {
# "MaterialUIAssets" => "Sources/**/*.{xcassets}",
# # "MaterialUI" => "Sources/DropDown/resources/*.{xib}"
# }
# spec.preserve_paths = "FilesToSave", "MoreFilesToSave"
spec.frameworks = "UIKit", "Foundation"
# spec.library = "iconv"
# spec.libraries = "iconv", "xml2"
# spec.requires_arc = true
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# spec.dependency "MaterialComponents/Snackbar"
# spec.dependency "MaterialComponents/Tabs"
# spec.dependency "MaterialComponents/TextFields"
end