[share] Fix pod lint warnings (#2689)
diff --git a/packages/share/CHANGELOG.md b/packages/share/CHANGELOG.md index e8369b3..dcbb27a 100644 --- a/packages/share/CHANGELOG.md +++ b/packages/share/CHANGELOG.md
@@ -2,6 +2,7 @@ * Remove Android dependencies fallback. * Require Flutter SDK 1.12.13+hotfix.5 or greater. +* Fix CocoaPods podspec lint warnings. ## 0.6.3+8
diff --git a/packages/share/ios/share.podspec b/packages/share/ios/share.podspec index 9c3684c..73d6030 100644 --- a/packages/share/ios/share.podspec +++ b/packages/share/ios/share.podspec
@@ -3,15 +3,17 @@ # Pod::Spec.new do |s| s.name = 'share' - s.version = '0.5.2' - s.summary = 'A Flutter plugin for sharing content from the Flutter app via the platform share sheet.' + s.version = '0.0.1' + s.summary = 'Flutter Share' s.description = <<-DESC -A Flutter plugin for sharing content from the Flutter app via the platform share sheet. +A Flutter plugin to share content from your Flutter app via the platform's share dialog. +Downloaded by pub (not CocoaPods). DESC - s.homepage = 'https://github.com/flutter/plugins/tree/master/packages/share' - s.license = { :file => '../LICENSE' } - s.author = { 'Flutter Team' => 'flutter-dev@googlegroups.com' } - s.source = { :path => '.' } + s.homepage = 'https://github.com/flutter/plugins' + s.license = { :type => 'BSD', :file => '../LICENSE' } + s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } + s.source = { :http => 'https://github.com/flutter/plugins/tree/master/packages/share' } + s.documentation_url = 'https://pub.dev/packages/share' s.source_files = 'Classes/**/*' s.public_header_files = 'Classes/**/*.h' s.dependency 'Flutter'