flutter_boost.podspec 1.03 KB
Newer Older
Jidong Chen's avatar
init  
Jidong Chen committed
1 2 3 4 5 6 7 8 9 10 11
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
  s.name             = 'flutter_boost'
  s.version          = '0.0.1'
  s.summary          = 'A new Flutter plugin make flutter better to use!'
  s.description      = <<-DESC
A new Flutter plugin make flutter better to use!
                       DESC
  s.homepage         = 'http://example.com'
12
  s.license          = { :file => '../LICENSE.md' }
Jidong Chen's avatar
init  
Jidong Chen committed
13 14 15 16 17 18 19 20
  s.author           = { 'Alibaba Xianyu' => 'email@example.com' }
  s.source           = { :path => '.' }
  s.source_files = 'Classes/**/*.{h,m,mm}'
  
  s.public_header_files = 
    'Classes/Boost/FlutterBoost.h',
    'Classes/Boost/FlutterBoostPlugin.h',
    'Classes/Boost/FLBPlatform.h',
Jidong Chen's avatar
Jidong Chen committed
21 22
    'Classes/Boost/FLB2Platform.h',
    'Classes/Boost/FLBFlutterContainer.h',
Jidong Chen's avatar
init  
Jidong Chen committed
23
    'Classes/Boost/FLBFlutterAppDelegate.h',
Jidong Chen's avatar
Jidong Chen committed
24 25
    'Classes/1.0/FLBFlutterViewContainer.h',
    'Classes/1.5/FLB2FlutterViewContainer.h'
Jidong Chen's avatar
init  
Jidong Chen committed
26 27

  s.dependency 'Flutter'
28 29
  s.libraries = 'c++'

Jidong Chen's avatar
init  
Jidong Chen committed
30 31 32
  s.ios.deployment_target = '8.0'
end