1
1
mirror of https://github.com/VKCOM/vk-ios-sdk.git synced 2024-09-19 03:07:21 +03:00
vk-ios-sdk/VK-ios-sdk.podspec

18 lines
737 B
Plaintext
Raw Normal View History

2013-12-24 21:06:27 +04:00
Pod::Spec.new do |s|
s.name = "VK-ios-sdk"
s.version = "1.5.0"
2013-12-24 21:06:27 +04:00
s.summary = "Library for working with VK."
2015-08-25 13:18:59 +03:00
s.homepage = "https://github.com/VKCOM/vk-ios-sdk"
2013-12-24 21:06:27 +04:00
s.license = 'MIT'
s.author = { "Roman Truba" => "dreddkr@gmail.com" }
s.platform = :ios, '8.0'
2013-12-24 21:06:27 +04:00
s.source = { :git => "https://github.com/VKCOM/vk-ios-sdk.git", :tag => s.version.to_s }
2015-08-25 13:18:59 +03:00
s.source_files = 'library/source/**/*.{h,m}'
s.public_header_files = 'library/source/**/*.h'
2016-06-28 01:47:00 +03:00
s.resource_bundles = {
'VKSdkResources' => ['library/Resources/SdkAssetCatalog.xcassets','library/Resources/*.lproj']
}
s.frameworks = 'Foundation','UIKit','SafariServices','CoreGraphics','Security'
2013-12-24 21:06:27 +04:00
s.requires_arc = true
2015-09-13 22:31:07 +03:00
end