You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
#
|
|
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
|
|
#
|
|
Pod::Spec.new do |s|
|
|
s.name = 'tencent_live_fluttify'
|
|
s.version = '0.0.1'
|
|
s.summary = 'A `Tencent Live` flutter plugin, Powered by `Fluttify` engine.'
|
|
s.description = <<-DESC
|
|
A new flutter plugin project.
|
|
DESC
|
|
s.homepage = 'https://fluttify.com'
|
|
s.license = { :file => '../LICENSE' }
|
|
s.author = { 'yohom' => 'yohombao@qq.com' }
|
|
s.source = { :path => '.' }
|
|
s.source_files = 'Classes/**/*'
|
|
s.public_header_files = ['Classes/**/*.h', 'Vendors/*.h'] # 只接收顶层的.h文件, 防止framework下面的.h文件被包含
|
|
s.dependency 'Flutter'
|
|
s.dependency 'foundation_fluttify'
|
|
# flutter plugin dependency
|
|
|
|
# sdk dependency
|
|
s.dependency 'TXLiteAVSDK_Professional', '7.2.8927'
|
|
|
|
s.static_framework = true
|
|
s.ios.deployment_target = '8.0'
|
|
# include project framework
|
|
s.vendored_frameworks = 'Vendors/*.framework'
|
|
# include project .a
|
|
s.vendored_libraries = 'Vendors/*.a'
|
|
# ios system framework
|
|
s.frameworks = [
|
|
|
|
]
|
|
# ios system library
|
|
s.libraries = [
|
|
|
|
]
|
|
# resources
|
|
s.resources = 'Vendors/**/*.bundle'
|
|
# s.resource_bundles = {
|
|
# 'tencent_live_fluttify' => ['Vendors/*.framework/*.bundle']
|
|
# }
|
|
end
|
|
|