Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit b17c0c6

Browse files
Add a podspec for FlutterMacOS.framework (#9062)
Based on the iOS Flutter.podspec. This will be used for plugin management via CocoaPods, as on iOS. Part of flutter/flutter#32718
1 parent 82ccba3 commit b17c0c6

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

ci/licenses_golden/licenses_flutter

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -743,6 +743,7 @@ FILE: ../../../flutter/shell/platform/darwin/ios/ios_surface_software.h
743743
FILE: ../../../flutter/shell/platform/darwin/ios/ios_surface_software.mm
744744
FILE: ../../../flutter/shell/platform/darwin/ios/platform_view_ios.h
745745
FILE: ../../../flutter/shell/platform/darwin/ios/platform_view_ios.mm
746+
FILE: ../../../flutter/shell/platform/darwin/macos/framework/FlutterMacOS.podspec
746747
FILE: ../../../flutter/shell/platform/darwin/macos/framework/Headers/FLEOpenGLContextHandling.h
747748
FILE: ../../../flutter/shell/platform/darwin/macos/framework/Headers/FLEPlugin.h
748749
FILE: ../../../flutter/shell/platform/darwin/macos/framework/Headers/FLEPluginRegistrar.h
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#
2+
# NOTE: This podspec is NOT to be published. It is only used as a local source!
3+
#
4+
5+
Pod::Spec.new do |s|
6+
s.name = 'FlutterMacOS'
7+
s.version = '1.0.0'
8+
s.summary = 'High-performance, high-fidelity cross-platform apps.'
9+
s.description = <<-DESC
10+
Flutter is Google's portable UI toolkit for building beautiful, natively-compiled applications for mobile, web, and desktop from a single codebase.
11+
DESC
12+
s.homepage = 'https://flutter.dev'
13+
s.license = { :type => 'MIT' }
14+
s.author = { 'Flutter Dev Team' => '[email protected]' }
15+
s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s }
16+
# TODO: Decide what value should be here. See #33200.
17+
s.osx.deployment_target = '10.13'
18+
s.vendored_frameworks = 'FlutterMacOS.framework'
19+
end

0 commit comments

Comments
 (0)