Showing
1 changed file
with
136 additions
and
0 deletions
HEAnalytics/1.0.3/HEAnalytics.podspec
0 → 100644
1 | +# | ||
2 | +# Be sure to run `pod spec lint HEAnalytics.podspec' to ensure this is a | ||
3 | +# valid spec and to remove all comments including this before submitting the spec. | ||
4 | +# | ||
5 | +# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html | ||
6 | +# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ | ||
7 | +# | ||
8 | + | ||
9 | +Pod::Spec.new do |spec| | ||
10 | + | ||
11 | + # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # | ||
12 | + # | ||
13 | + # These will help people to find your library, and whilst it | ||
14 | + # can feel like a chore to fill in it's definitely to your advantage. The | ||
15 | + # summary should be tweet-length, and the description more in depth. | ||
16 | + # | ||
17 | + | ||
18 | + spec.name = "HEAnalytics" | ||
19 | + spec.version = "1.0.3" | ||
20 | + spec.summary = "Event analytics for HideExpert VPN" | ||
21 | + | ||
22 | + # This description is used to generate tags and improve search results. | ||
23 | + # * Think: What does it do? Why did you write it? What is the focus? | ||
24 | + # * Try to keep it short, snappy and to the point. | ||
25 | + # * Write the description between the DESC delimiters below. | ||
26 | + # * Finally, don't worry about the indent, CocoaPods strips it! | ||
27 | + spec.description = "Event analytics for HideExpert VPN" | ||
28 | + | ||
29 | + spec.homepage = "https://git.4k.com.ua/kmi_4k/HEAnalytics" | ||
30 | + # spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif" | ||
31 | + | ||
32 | + | ||
33 | + # ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # | ||
34 | + # | ||
35 | + # Licensing your code is important. See https://choosealicense.com for more info. | ||
36 | + # CocoaPods will detect a license file if there is a named LICENSE* | ||
37 | + # Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'. | ||
38 | + # | ||
39 | + | ||
40 | + spec.license = "Framework is free only for 4K-SOFT team members" | ||
41 | + # spec.license = { :type => "MIT", :file => "LICENSE" } | ||
42 | + | ||
43 | + | ||
44 | + # ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # | ||
45 | + # | ||
46 | + # Specify the authors of the library, with email addresses. Email addresses | ||
47 | + # of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also | ||
48 | + # accepts just a name if you'd rather not provide an email address. | ||
49 | + # | ||
50 | + # Specify a social_media_url where others can refer to, for example a twitter | ||
51 | + # profile URL. | ||
52 | + # | ||
53 | + | ||
54 | + spec.author = { "Mihail Konoplitskyi" => "mihail.konoplitskyi@4k.com.ua" } | ||
55 | + # Or just: spec.author = "Mihail Konoplitskyi" | ||
56 | + # spec.authors = { "Mihail Konoplitskyi" => "mihail.konoplitskyi@4k.com.ua" } | ||
57 | + # spec.social_media_url = "https://twitter.com/Mihail Konoplitskyi" | ||
58 | + | ||
59 | + # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― # | ||
60 | + # | ||
61 | + # If this Pod runs only on iOS or OS X, then specify the platform and | ||
62 | + # the deployment target. You can optionally include the target after the platform. | ||
63 | + # | ||
64 | + | ||
65 | + spec.platform = :ios | ||
66 | + # spec.platform = :ios, "5.0" | ||
67 | + | ||
68 | + # When using multiple platforms | ||
69 | + spec.ios.deployment_target = "13.0" | ||
70 | + # spec.osx.deployment_target = "10.7" | ||
71 | + # spec.watchos.deployment_target = "2.0" | ||
72 | + # spec.tvos.deployment_target = "9.0" | ||
73 | + | ||
74 | + | ||
75 | + # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # | ||
76 | + # | ||
77 | + # Specify the location from where the source should be retrieved. | ||
78 | + # Supports git, hg, bzr, svn and HTTP. | ||
79 | + # | ||
80 | + | ||
81 | + spec.source = { :git => "https://git.4k.com.ua/kmi_4k/HEAnalytics.git", :tag => "#{spec.version}" } | ||
82 | + | ||
83 | + | ||
84 | + # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # | ||
85 | + # | ||
86 | + # CocoaPods is smart about how it includes source code. For source files | ||
87 | + # giving a folder will include any swift, h, m, mm, c & cpp files. | ||
88 | + # For header files it will include any header in the folder. | ||
89 | + # Not including the public_header_files will make all headers public. | ||
90 | + # | ||
91 | + | ||
92 | + spec.source_files = "Classes", "HEAnalytics/**/*.{swift}" | ||
93 | + spec.exclude_files = "Classes/Exclude" | ||
94 | + | ||
95 | + # spec.public_header_files = "Classes/**/*.h" | ||
96 | + | ||
97 | + | ||
98 | + # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # | ||
99 | + # | ||
100 | + # A list of resources included with the Pod. These are copied into the | ||
101 | + # target bundle with a build phase script. Anything else will be cleaned. | ||
102 | + # You can preserve files from being cleaned, please don't preserve | ||
103 | + # non-essential files like tests, examples and documentation. | ||
104 | + # | ||
105 | + | ||
106 | + # spec.resource = "icon.png" | ||
107 | + # spec.resources = "HEAnalytics/**/*.{png,jpeg,jpg,storyboard,xib,xcassets}" | ||
108 | + | ||
109 | + # spec.preserve_paths = "FilesToSave", "MoreFilesToSave" | ||
110 | + | ||
111 | + | ||
112 | + # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # | ||
113 | + # | ||
114 | + # Link your library with frameworks, or libraries. Libraries do not include | ||
115 | + # the lib prefix of their name. | ||
116 | + # | ||
117 | + | ||
118 | + # spec.framework = "SomeFramework" | ||
119 | + # spec.frameworks = "SomeFramework", "AnotherFramework" | ||
120 | + | ||
121 | + # spec.library = "iconv" | ||
122 | + # spec.libraries = "iconv", "xml2" | ||
123 | + | ||
124 | + | ||
125 | + # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # | ||
126 | + # | ||
127 | + # If your library depends on compiler flags you can set them in the xcconfig hash | ||
128 | + # where they will only apply to your library. If you depend on other Podspecs | ||
129 | + # you can include multiple dependencies to ensure it works. | ||
130 | + | ||
131 | + # spec.requires_arc = true | ||
132 | + | ||
133 | + # spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" } | ||
134 | + spec.dependency 'Alamofire', '~> 5.6.2' | ||
135 | + | ||
136 | +end |
Please
register
or
login
to post a comment