Fix URL in podspec
... | ... | @@ -8,20 +8,20 @@ Pod::Spec.new do |s| |
A fork of the v1 Dropbox SDK to add basic playback support on tvOS. | ||
DESC | ||
s.homepage = "https://github.com/fkuehne/VLC-Dropbox-v1-SDK" | ||
s.homepage = "https://code.videolan.org/fkuehne/VLC-Dropbox-v1-SDK" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.authors = { "2010-2014 Dropbox (Evenflow, Inc.)", "Felix Paul Kühne" => "fkuehne@videolan.org" } | ||
s.authors = { "2010-2014 Dropbox (Evenflow, Inc.)" => "api-support@dropbox.com", "Felix Paul Kühne" => "fkuehne@videolan.org" } | ||
s.ios.deployment_target = "7.0" | ||
s.tvos.deployment_target = "9.0" | ||
s.source = { :git => "https://github.com/fkuehne/VLC-Dropbox-v1-SDK.git", :tag => "#{s.version}" } | ||
s.source = { :git => "https://code.videolan.org/fkuehne/VLC-Dropbox-v1-SDK.git", :tag => "#{s.version}" } | ||
s.prefix_header_file = "DropboxSDK_Prefix.pch" | ||
s.source_files = "Classes/**/*.{h,m}" | ||
s.exclude_files = "Classes/DBKeychain-OSX.m", "Classes/DBRestClient+OSX.m", "Classes/DBAuthHelperOSX.m" | ||
s.source_files = "DropboxSDK/Classes/**/*.{h,m}" | ||
s.exclude_files = "DropboxSDK/Classes/DBKeychain-OSX.m", "DropboxSDK/Classes/DBRestClient+OSX.m", "DropboxSDK/Classes/DBAuthHelperOSX.m" | ||
s.frameworks = "Foundation", "UIKit" | ||
... | ... |
Please register or sign in to comment