ble_peripheral.podspec
1 # 2 # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html. 3 # Run `pod lib lint ble_peripheral.podspec` to validate before publishing. 4 # 5 Pod::Spec.new do |s| 6 s.name = 'ble_peripheral' 7 s.version = '0.0.1' 8 s.summary = 'A new Flutter plugin project.' 9 s.description = <<-DESC 10 A new Flutter plugin project. 11 DESC 12 s.homepage = 'http://example.com' 13 s.license = { :file => '../LICENSE' } 14 s.author = { 'Your Company' => 'email@example.com' } 15 s.source = { :path => '.' } 16 s.source_files = 'Classes/**/*' 17 s.ios.dependency 'Flutter' 18 s.osx.dependency 'FlutterMacOS' 19 s.ios.deployment_target = '11.0' 20 s.osx.deployment_target = '10.14' 21 22 # Flutter.framework does not contain a i386 slice. 23 s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' } 24 s.swift_version = '5.0' 25 end