-
Notifications
You must be signed in to change notification settings - Fork 0
/
FanFindSDK.podspec
30 lines (19 loc) · 1.01 KB
/
FanFindSDK.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 |spec|
spec.name = "FanFindSDK"
spec.version = "2.1.12-next"
spec.summary = "FanFind is a tool for helping fands find each other anonymously in real time."
spec.description = <<-DESC
This cocoapods library helps you easily integrate the FanFind API in your application.
DESC
spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
spec.homepage = "https://www.turnoutt.com"
spec.license = "MIT"
spec.author = { "Chris Woolum" => "[email protected]" }
spec.source_files = "FanFindSDK/**/*.{swift}"
spec.resources = "FanFindSDK/**/*.{png,jpeg,jpg,storyboard,xib,xcassets}"
spec.ios.deployment_target = "12.1"
spec.swift_versions = ['5.0', '5.1', '5.2', '5.3']
spec.source = { :git => "https://github.com/Turnoutt/FanFind-iOS.git",
:tag => "#{spec.version}" }
end