Skip to content

Commit e70bd14

Browse files
authored
[url_launcher] Fix pod lint warnings (flutter#2691)
1 parent 5c4b8de commit e70bd14

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

packages/url_launcher/url_launcher/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* Remove Android dependencies fallback.
44
* Require Flutter SDK 1.12.13+hotfix.5 or greater.
5+
* Fix CocoaPods podspec lint warnings.
56

67
## 5.4.4
78

packages/url_launcher/url_launcher/ios/url_launcher.podspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ Pod::Spec.new do |s|
99
A Flutter plugin for making the underlying platform (Android or iOS) launch a URL.
1010
DESC
1111
s.homepage = 'https://github.com/flutter/plugins/tree/master/packages/url_launcher'
12-
s.license = { :file => '../LICENSE' }
13-
s.author = { 'Flutter Team' => '[email protected]' }
14-
s.source = { :path => '.' }
12+
s.license = { :type => 'BSD', :file => '../LICENSE' }
13+
s.author = { 'Flutter Dev Team' => '[email protected]' }
14+
s.source = { :http => 'https://github.com/flutter/plugins/tree/master/packages/url_launcher' }
15+
s.documentation_url = 'https://pub.dev/packages/url_launcher'
1516
s.source_files = 'Classes/**/*'
1617
s.public_header_files = 'Classes/**/*.h'
1718
s.dependency 'Flutter'

packages/url_launcher/url_launcher_macos/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# 0.0.1+5
22

33
* Fixed the launchUniversalLinkIos method.
4+
* Fix CocoaPods podspec lint warnings.
45

56
# 0.0.1+4
67

packages/url_launcher/url_launcher_macos/macos/url_launcher_macos.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Pod::Spec.new do |s|
99
A macOS implementation of the url_launcher plugin.
1010
DESC
1111
s.homepage = 'https://github.com/flutter/plugins/tree/master/packages/url_launcher/url_launcher_macos'
12-
s.license = { :file => '../LICENSE' }
12+
s.license = { :type => 'BSD', :file => '../LICENSE' }
1313
s.author = { 'Flutter Team' => '[email protected]' }
14-
s.source = { :path => '.' }
14+
s.source = { :http => 'https://github.com/flutter/plugins/tree/master/packages/url_launcher/url_launcher_macos' }
1515
s.source_files = 'Classes/**/*'
1616
s.dependency 'FlutterMacOS'
1717

0 commit comments

Comments
 (0)