flutter_mercadopago.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 flutter_mercadopago.podspec' to validate before publishing.
  4. #
  5. Pod::Spec.new do |s|
  6. s.name = 'flutter_mercadopago'
  7. s.version = '0.0.1'
  8. s.summary = 'Plugin para realizar pagos con Mercado Pago'
  9. s.description = <<-DESC
  10. Plugin para realizar pagos con Mercado Pago
  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.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2' }
  17. s.source_files = 'Classes/**/*'
  18. s.dependency 'Flutter'
  19. s.dependency 'MercadoPagoSDK', '~> 4.0'
  20. s.platform = :ios, '9.0'
  21. # Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
  22. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
  23. s.swift_version = '5.0'
  24. end