Bump flutter_fgbg to ^0.8.0 for Swift Package Manager support - #216
Open
MarcinusX wants to merge 2 commits into
Open
Bump flutter_fgbg to ^0.8.0 for Swift Package Manager support#216MarcinusX wants to merge 2 commits into
MarcinusX wants to merge 2 commits into
Conversation
…s-kotlin The core plugin declared namespace 'com.segment.analytics', which is also the manifest package of com.segment.analytics.kotlin:android. When both end up in an app's dependency graph (e.g. via an SDK that embeds analytics-kotlin), AGP 9 fails the build with a duplicate-namespace manifest-merger error. Rename to com.segment.analytics.flutter and drop the deprecated manifest package= attribute. Dart API and Kotlin source packages are unchanged. Fixes segmentio#214 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
flutter_fgbg 0.8.0 ships an SPM manifest (ios/flutter_fgbg/Package.swift); 0.7.1 was the last CocoaPods-only transitive dependency of the core plugin, which forced host apps building with SPM back onto CocoaPods for it.
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_fgbg 0.8.0 (released 2026-03-30) adds a Swift Package Manager manifest (
ios/flutter_fgbg/Package.swift) with no API changes — its changelog entry is just "Swift package manager migration".Since #202/#203 added SPM support to the core plugin,
flutter_fgbg0.7.1 is the only transitive dependency ofsegment_analyticsthat still lacks a Swift package, so host apps building with Flutter's SPM integration still fall back to CocoaPods for it. Bumping the constraint to^0.8.0removes that last CocoaPods requirement.