flutter_plugin_mipush.podspec 1.1 KB

123456789101112131415161718192021222324252627
  1. #
  2. # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
  3. # Run `pod lib lint flutter_plugin_mipush.podspec` to validate before publishing.
  4. #
  5. Pod::Spec.new do |s|
  6. s.name = 'flutter_plugin_mipush'
  7. s.version = '0.0.1'
  8. s.summary = 'A new Flutter project.'
  9. s.description = <<-DESC
  10. A new Flutter 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.dependency 'Flutter'
  18. s.platform = :ios, '8.0'
  19. # Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
  20. # s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
  21. s.frameworks = 'MobileCoreServices','SystemConfiguration','UserNotifications','CFNetwork','CoreTelephony'
  22. s.libraries = 'resolv','xml2','z'
  23. s.vendored_libraries = 'Classes/libMiPushSDK.a'
  24. s.static_framework = true
  25. s.ios.deployment_target = '9.0'
  26. end