-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpgoapi.podspec
30 lines (22 loc) · 1.02 KB
/
pgoapi.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
Pod::Spec.new do |s|
s.name = "pgoapi"
s.version = "0.0.2"
s.summary = "A Pokèmon Go API written in swift."
s.description = <<-DESC
This is still a work in progress. The only working function at the moment is login via PTC, and downloading the following data:
player data, hatched eggs, inventory, badges, settings, & map objects.
DESC
s.homepage = "https://github.com/AgentFeeble/pgoapi"
s.license = "Apache"
s.author = "Rayman Rosevear"
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.source = { :git => "https://github.com/AgentFeeble/pgoapi.git", :tag => "#{s.version}" }
s.source_files = "pgoapi/Classes/**/*.{swift,h,c,mm}", "pgoapi/3rd Party/**/*.{h,c,cc}"
s.public_header_files = "pgoapi/Classes/**/*.h"
s.requires_arc = true
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
s.dependency "Alamofire", "~> 4.0.1"
s.dependency "Bolts-Swift", "~> 1.3.0"
s.dependency "ProtocolBuffers-Swift"
end