amap_location.podspec 1.0 KB

1234567891011121314151617181920212223242526
  1. #
  2. # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
  3. # Run `pod lib lint amap_location.podspec' to validate before publishing.
  4. #
  5. Pod::Spec.new do |s|
  6. s.name = 'amap_location'
  7. s.version = '0.0.1'
  8. s.summary = 'Flutter高德定位插件'
  9. s.description = <<-DESC
  10. Flutter高德定位插件
  11. DESC
  12. s.homepage = 'https://github.com/Spicely/amap_location_muka'
  13. s.license = { :file => '../LICENSE' }
  14. s.author = { 'Spicely' => 'Spicely@outlook.com' }
  15. s.source = { :path => '.' }
  16. s.source_files = 'Classes/**/*'
  17. s.public_header_files = 'Classes/**/*.h'
  18. s.static_framework = true
  19. s.dependency 'Flutter'
  20. s.dependency 'AMapLocation'
  21. s.platform = :ios, '8.0'
  22. # Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
  23. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
  24. s.swift_version = '5.0'
  25. end