mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00

git-subtree-dir: submodules/HockeySDK-iOS git-subtree-mainline: 085acd26c4432939403765234266e3c1be0f3dd9 git-subtree-split: c7d0c7026303253e2ac576c02655691e5d314fe2
34 lines
1.7 KiB
Ruby
Vendored
34 lines
1.7 KiB
Ruby
Vendored
Pod::Spec.new do |s|
|
|
s.name = 'HockeySDK-Source'
|
|
s.version = '5.1.2'
|
|
|
|
s.summary = 'Collect live crash reports, get feedback from your users, distribute your betas, and analyze your test coverage with HockeyApp.'
|
|
s.description = <<-DESC
|
|
HockeyApp is a service to distribute beta apps, collect crash reports and
|
|
communicate with your app's users.
|
|
|
|
It improves the testing process dramatically and can be used for both beta
|
|
and App Store builds.
|
|
DESC
|
|
|
|
s.homepage = 'http://hockeyapp.net/'
|
|
s.documentation_url = "http://hockeyapp.net/help/sdk/ios/#{s.version}/"
|
|
|
|
s.license = 'MIT'
|
|
s.author = { 'Microsoft' => 'support@hockeyapp.net' }
|
|
s.source = { :git => 'https://github.com/bitstadium/HockeySDK-iOS.git', :tag => s.version.to_s }
|
|
|
|
s.platform = :ios, '8.0'
|
|
s.source_files = 'Classes'
|
|
s.requires_arc = true
|
|
|
|
s.frameworks = 'CoreGraphics', 'CoreTelephony', 'CoreText', 'MobileCoreServices', 'Photos', 'QuartzCore', 'QuickLook', 'Security', 'SystemConfiguration', 'UIKit'
|
|
s.libraries = 'c++', 'z'
|
|
s.vendored_frameworks = 'Vendor/CrashReporter.framework'
|
|
s.pod_target_xcconfig = {'GCC_PREPROCESSOR_DEFINITIONS' => %{$(inherited) BITHOCKEY_VERSION="@\\"#{s.version}\\"" BITHOCKEY_C_VERSION="\\"#{s.version}\\"" BITHOCKEY_BUILD="@\\"108\\"" BITHOCKEY_C_BUILD="\\"108\\""} }
|
|
s.resource_bundle = { 'HockeySDKResources' => ['Resources/*.png', 'Resources/*.lproj'] }
|
|
s.preserve_paths = 'Resources', 'Support'
|
|
s.private_header_files = 'Classes/*Private.h'
|
|
|
|
end
|