Last active
December 23, 2015 17:29
-
-
Save mbazaliy/6669596 to your computer and use it in GitHub Desktop.
Crashlytics podspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = "Crashlytics" | |
s.version = "2.1.2" | |
s.summary = "A lightweight crash reporting solution" | |
s.homepage = "http://try.crashlytics.com/" | |
s.license = { | |
:type => 'Commercial', | |
:text => <<-LICENSE | |
© 2012-2013 Crashlytics. | |
LICENSE | |
} | |
s.author = { "Max Bazaliy" => "[email protected]" } | |
s.source = { | |
:git => "[email protected]:bpoplauschi/CrashlyticsFramework.git", | |
:tag => s.version.to_s | |
} | |
s.platform = :ios, '6.0' | |
s.source_files = 'Crashlytics.framework/Versions/A/Headers/Crashlytics.h' | |
s.preserve_paths = 'Crashlytics.framework/*' | |
s.frameworks = 'Crashlytics' | |
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Crashlytics"' } | |
s.requires_arc = false | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment