-
Notifications
You must be signed in to change notification settings - Fork 15
/
Geoloqi-iPhone-SDK.podspec
35 lines (28 loc) · 1.13 KB
/
Geoloqi-iPhone-SDK.podspec
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
Pod::Spec.new do |s|
s.name = "Geoloqi-iPhone-SDK"
s.version = "15.231"
s.summary = "Sample iPhone app using the Geoloqi iPhone SDK"
s.description = <<-DESC
The Esri Geotrigger Service replaced the The Geoloqi API which is now offline.
The new Geotrigger SDK can be found here: https://cocoapods.org/pods/GeotriggerSDK
Please see https://developers.arcgis.com/en/features/geotrigger-service/ for more info.
DESC
s.homepage = "http://developers.geoloqi.com/ios/"
s.license = {:type => "Commercial", :file => "APPCELERATOR_LICENSE" }
s.author = { "Geoloqi" => "[email protected]" }
s.platform = :ios, "5.0"
s.source = {
:git => "https://github.com/geoloqi/Geoloqi-iPhone-SDK.git",
:tag => "15.231"
}
s.source_files = "GeoloqiSDK/*"
s.frameworks = "CoreLocation", "MessageUI"
s.libraries = "sqlite3", "Geoloqi-$(CONFIGURATION)"
s.requires_arc = false
s.xcconfig = {
"LIBRARY_SEARCH_PATHS" => "$(PODS_ROOT)/Geoloqi-iPhone-SDK/GeoloqiSDK" ,
"OTHER_LDFLAGS" => "-ObjC"
}
#s.dependency "JSONKit", "~> 1.4"
s.deprecated = true
end