feat(macos): add Swift Package Manager support#71
Open
xia0pin9 wants to merge 1 commit into
Open
Conversation
Flutter migrates to Swift Package Manager (default in Flutter 3.44; the CocoaPods registry becomes read-only on 2026-12-02). hotkey_manager_macos was the only leanflutter desktop plugin still CocoaPods-only, blocking full CocoaPods removal in consuming apps. - Add macos/hotkey_manager_macos/Package.swift mirroring the official Flutter plugin-author template (FlutterFramework path dependency). - Declare the external HotKey dependency (soffes/HotKey >= 0.2.1) as an SPM package + product, replacing the transitive `pod 'HotKey'`. - Restructure sources into macos/hotkey_manager_macos/Classes/ per the SPM layout used by the sibling tray_manager / screen_retriever plugins. - Update the podspec source_files to the new path and bump the macOS deployment target to 10.15 (HotKey min + Flutter macOS baseline). The podspec is retained so CocoaPods builds keep working (non-breaking).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Flutter migrates to Swift Package Manager (default in Flutter 3.44; the CocoaPods registry becomes read-only on 2026-12-02). hotkey_manager_macos was the only leanflutter desktop plugin still CocoaPods-only, blocking full CocoaPods removal in consuming apps.
pod 'HotKey'.