|
@@ -1,12 +1,13 @@
|
|
|
#
|
|
#
|
|
|
-# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
|
|
|
|
|
|
|
+# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
|
|
|
|
|
+# Run `pod lib lint dubbing_lib.podspec' to validate before publishing.
|
|
|
#
|
|
#
|
|
|
Pod::Spec.new do |s|
|
|
Pod::Spec.new do |s|
|
|
|
s.name = 'dubbing_lib'
|
|
s.name = 'dubbing_lib'
|
|
|
s.version = '0.0.1'
|
|
s.version = '0.0.1'
|
|
|
- s.summary = 'A new Flutter plugin for dubbing'
|
|
|
|
|
|
|
+ s.summary = 'A new Flutter plugin.'
|
|
|
s.description = <<-DESC
|
|
s.description = <<-DESC
|
|
|
-A new Flutter plugin for dubbing
|
|
|
|
|
|
|
+A new Flutter plugin.
|
|
|
DESC
|
|
DESC
|
|
|
s.homepage = 'http://example.com'
|
|
s.homepage = 'http://example.com'
|
|
|
s.license = { :file => '../LICENSE' }
|
|
s.license = { :file => '../LICENSE' }
|
|
@@ -15,7 +16,8 @@ A new Flutter plugin for dubbing
|
|
|
s.source_files = 'Classes/**/*'
|
|
s.source_files = 'Classes/**/*'
|
|
|
s.public_header_files = 'Classes/**/*.h'
|
|
s.public_header_files = 'Classes/**/*.h'
|
|
|
s.dependency 'Flutter'
|
|
s.dependency 'Flutter'
|
|
|
|
|
+ s.platform = :ios, '8.0'
|
|
|
|
|
|
|
|
- s.ios.deployment_target = '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' }
|
|
|
end
|
|
end
|
|
|
-
|
|
|