Files
tencent_kit/ios/tencent_kit.podspec
2020-06-17 22:51:13 +08:00

29 lines
1.2 KiB
Dart

#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
# Run `pod lib lint tencent_kit.podspec' to validate before publishing.
#
Pod::Spec.new do |s|
s.name = 'tencent_kit'
s.version = '1.1.0'
s.summary = 'A powerful Flutter plugin allowing developers to share or authorize with natvie android & iOS Tencent SDKs.'
s.description = <<-DESC
A powerful Flutter plugin allowing developers to share or authorize with natvie android & iOS Tencent SDKs.
DESC
s.homepage = 'http://example.com'
s.license = { :file => '../LICENSE' }
s.author = { 'Your Company' => 'email@example.com' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.platform = :ios, '8.0'
s.subspec 'vendor' do |sp|
sp.vendored_frameworks = 'Libraries/*.framework'
sp.frameworks = 'SystemConfiguration', 'WebKit'
end
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
end