Unverified Commit 57a565c7 authored by Tim Sneath's avatar Tim Sneath Committed by GitHub

Clean up podspec template (#84662)

parent f2dcbbea
...@@ -272,14 +272,14 @@ class BuildIOSFrameworkCommand extends BuildSubCommand { ...@@ -272,14 +272,14 @@ class BuildIOSFrameworkCommand extends BuildSubCommand {
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'Flutter' s.name = 'Flutter'
s.version = '${gitTagVersion.x}.${gitTagVersion.y}.$minorHotfixVersion' # ${_flutterVersion.frameworkVersion} s.version = '${gitTagVersion.x}.${gitTagVersion.y}.$minorHotfixVersion' # ${_flutterVersion.frameworkVersion}
s.summary = 'Flutter Engine Framework' s.summary = 'A UI toolkit for beautiful and fast apps.'
s.description = <<-DESC s.description = <<-DESC
Flutter is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase. Flutter is Google's UI toolkit for building beautiful, fast apps for mobile, web, desktop, and embedded devices from a single codebase.
This pod vends the iOS Flutter engine framework. It is compatible with application frameworks created with this version of the engine and tools. This pod vends the iOS Flutter engine framework. It is compatible with application frameworks created with this version of the engine and tools.
The pod version matches Flutter version major.minor.(patch * 100) + hotfix. The pod version matches Flutter version major.minor.(patch * 100) + hotfix.
DESC DESC
s.homepage = 'https://flutter.dev' s.homepage = 'https://flutter.dev'
s.license = { :type => 'MIT', :text => <<-LICENSE s.license = { :type => 'BSD', :text => <<-LICENSE
$licenseSource $licenseSource
LICENSE LICENSE
} }
......
...@@ -5,14 +5,16 @@ ...@@ -5,14 +5,16 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'Flutter' s.name = 'Flutter'
s.version = '1.0.0' s.version = '1.0.0'
s.summary = 'High-performance, high-fidelity mobile apps.' s.summary = 'A UI toolkit for beautiful and fast apps.'
s.description = <<-DESC s.description = <<-DESC
Flutter provides an easy and productive way to build and deploy high-performance mobile apps for Android and iOS. Flutter is Google's UI toolkit for building beautiful, fast apps for mobile, web, desktop, and embedded devices from a single codebase.
This pod vends the iOS Flutter engine framework. It is compatible with application frameworks created with this version of the engine and tools.
DESC DESC
s.homepage = 'https://flutter.io' s.homepage = 'https://flutter.dev'
s.license = { :type => 'MIT' } s.license = 'BSD'
s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s } s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s }
s.documentation_url = 'https://flutter.dev/docs'
s.ios.deployment_target = '8.0' s.ios.deployment_target = '8.0'
s.vendored_frameworks = 'Flutter.xcframework' s.vendored_frameworks = 'Flutter.xcframework'
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment