-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNetworkConnection.podspec
More file actions
53 lines (34 loc) · 2.1 KB
/
NetworkConnection.podspec
File metadata and controls
53 lines (34 loc) · 2.1 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 = "NetworkConnection"
spec.version = "1.0.1"
spec.summary = "Network Connection manager Package"
spec.description = "NetworkManager is an iOS library for monitoring network connectivity status and quality. It allows you to easily detect when the device is connected or disconnected from the internet, as well as assess the quality of the connection."
spec.homepage = "https://github.com/Malsaeed276/NetworkConnectionManager"
spec.license = "MIT"
spec.author = { "Mohamed Elsaeed" => "mohamed.elsaeed276@gmail.com" }
spec.platform = :ios
spec.platform = :ios, "15.0"
spec.source = { :git => "https://github.com/Malsaeed276/NetworkConnectionManager.git", :tag => spec.version.to_s }
spec.source_files = "NetworkConnection/**/*.{swift}"
# spec.resource = "icon.png"
# spec.resources = "Sources/NetworkConnection/Resources/Localizable.xcstrings"
# spec.preserve_paths = "FilesToSave", "MoreFilesToSave"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Link your library with frameworks, or libraries. Libraries do not include
# the lib prefix of their name.
#
# spec.framework = "SomeFramework"
# spec.frameworks = "SomeFramework", "AnotherFramework"
# spec.library = "iconv"
# spec.libraries = "iconv", "xml2"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# If your library depends on compiler flags you can set them in the xcconfig hash
# where they will only apply to your library. If you depend on other Podspecs
# you can include multiple dependencies to ensure it works.
# spec.requires_arc = true
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# spec.dependency "JSONKit", "~> 1.4"
spec.swift_version = "5.0"
end