reactive_ble_mobile.podspec 900 B

12345678910111213141516171819202122
  1. Pod::Spec.new do |s|
  2. s.name = 'reactive_ble_mobile'
  3. s.version = '0.0.1'
  4. s.summary = 'Bluetooth Low Energy (BLE) Flutter plug-in'
  5. s.description = <<-DESC
  6. Bluetooth Low Energy (BLE) Flutter plug-in
  7. DESC
  8. s.homepage = 'https://github.com/PhilipsHue/flutter_reactive_ble'
  9. s.license = { :file => '../LICENSE' }
  10. s.author = { 'Your Company' => 'email@example.com' }
  11. s.source = { :path => '.' }
  12. s.source_files = 'Classes/**/*'
  13. s.public_header_files = 'Classes/**/*.h'
  14. s.dependency 'Flutter'
  15. s.dependency 'Protobuf', '~> 3.5'
  16. s.dependency 'SwiftProtobuf', '~> 1.0'
  17. s.ios.deployment_target = '11.0'
  18. s.osx.deployment_target = '10.13'
  19. s.pod_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1' }
  20. s.swift_version = '4.2'
  21. end