123456789101112131415161718192021222324252627 |
- #
- # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
- # Run `pod lib lint flutter_plugin_mipush.podspec` to validate before publishing.
- #
- Pod::Spec.new do |s|
- s.name = 'flutter_plugin_mipush'
- s.version = '0.0.1'
- s.summary = 'A new Flutter project.'
- s.description = <<-DESC
- A new Flutter project.
- DESC
- s.homepage = 'http://example.com'
- s.license = { :file => '../LICENSE' }
- s.author = { 'Your Company' => 'email@example.com' }
- s.source = { :path => '.' }
- s.source_files = 'Classes/**/*'
- s.dependency 'Flutter'
- s.platform = :ios, '8.0'
- # Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
- # s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
- s.frameworks = 'MobileCoreServices','SystemConfiguration','UserNotifications','CFNetwork','CoreTelephony'
- s.libraries = 'resolv','xml2','z'
- s.vendored_libraries = 'Classes/libMiPushSDK.a'
- s.static_framework = true
- s.ios.deployment_target = '9.0'
- end
|