Skip to content

Commit dffddf0

Browse files
authored
Refactor BuildIOSFrameworkCommand with common darwin baseclass (#105194)
1 parent 8dbc388 commit dffddf0

File tree

3 files changed

+211
-99
lines changed

3 files changed

+211
-99
lines changed

packages/flutter_tools/bin/podhelper.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,9 @@ def flutter_install_ios_engine_pod(ios_application_path = nil)
177177
Pod::Spec.new do |s|
178178
s.name = 'Flutter'
179179
s.version = '1.0.0'
180-
s.summary = 'High-performance, high-fidelity mobile apps.'
181-
s.homepage = 'https://flutter.io'
182-
s.license = { :type => 'MIT' }
180+
s.summary = 'A UI toolkit for beautiful and fast apps.'
181+
s.homepage = 'https://flutter.dev'
182+
s.license = { :type => 'BSD' }
183183
s.author = { 'Flutter Dev Team' => '[email protected]' }
184184
s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s }
185185
s.ios.deployment_target = '11.0'
@@ -215,9 +215,9 @@ def flutter_install_macos_engine_pod(mac_application_path = nil)
215215
Pod::Spec.new do |s|
216216
s.name = 'FlutterMacOS'
217217
s.version = '1.0.0'
218-
s.summary = 'High-performance, high-fidelity mobile apps.'
219-
s.homepage = 'https://flutter.io'
220-
s.license = { :type => 'MIT' }
218+
s.summary = 'A UI toolkit for beautiful and fast apps.'
219+
s.homepage = 'https://flutter.dev'
220+
s.license = { :type => 'BSD' }
221221
s.author = { 'Flutter Dev Team' => '[email protected]' }
222222
s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s }
223223
s.osx.deployment_target = '10.11'

0 commit comments

Comments
 (0)