Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions flutter_custom_tabs/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version: 2.5.0
homepage: https://github.com/droibit/flutter_custom_tabs
repository: https://github.com/droibit/flutter_custom_tabs/tree/main/flutter_custom_tabs
issue_tracker: https://github.com/droibit/flutter_custom_tabs/issues
publish_to: 'none'
Comment thread
droibit marked this conversation as resolved.

environment:
sdk: ^3.6.0
Expand All @@ -12,10 +13,18 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_custom_tabs_platform_interface: ^2.4.0
flutter_custom_tabs_android: ^2.4.0
flutter_custom_tabs_ios: ^2.5.0
flutter_custom_tabs_web: ^2.4.0
# flutter_custom_tabs_platform_interface: ^2.4.0
flutter_custom_tabs_platform_interface:
path: ../flutter_custom_tabs_platform_interface
# flutter_custom_tabs_android: ^2.4.0
flutter_custom_tabs_android:
path: ../flutter_custom_tabs_android
# flutter_custom_tabs_ios: ^2.5.0
flutter_custom_tabs_ios:
path: ../flutter_custom_tabs_ios
# flutter_custom_tabs_web: ^2.4.0
flutter_custom_tabs_web:
path: ../flutter_custom_tabs_web
Comment thread
droibit marked this conversation as resolved.
meta: ^1.10.0

dev_dependencies:
Expand Down
5 changes: 4 additions & 1 deletion flutter_custom_tabs_android/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version: 2.4.0
homepage: https://github.com/droibit/flutter_custom_tabs
repository: https://github.com/droibit/flutter_custom_tabs/tree/main/flutter_custom_tabs_android
issue_tracker: https://github.com/droibit/flutter_custom_tabs/issues
publish_to: 'none'

Copilot AI Feb 12, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Setting publish_to: 'none' makes this package non-publishable and will break the release workflow for the Android implementation package.

Suggested change
publish_to: 'none'

Copilot uses AI. Check for mistakes.

environment:
sdk: ^3.6.0
Expand All @@ -21,7 +22,9 @@ flutter:
dependencies:
flutter:
sdk: flutter
flutter_custom_tabs_platform_interface: ^2.4.0
# flutter_custom_tabs_platform_interface: ^2.4.0
flutter_custom_tabs_platform_interface:
path: ../flutter_custom_tabs_platform_interface
Comment thread
droibit marked this conversation as resolved.
meta: ^1.10.0

dev_dependencies:
Expand Down
5 changes: 4 additions & 1 deletion flutter_custom_tabs_ios/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version: 2.5.0
homepage: https://github.com/droibit/flutter_custom_tabs
repository: https://github.com/droibit/flutter_custom_tabs/tree/main/flutter_custom_tabs_ios
issue_tracker: https://github.com/droibit/flutter_custom_tabs/issues
publish_to: 'none'
Comment thread
droibit marked this conversation as resolved.

environment:
sdk: ^3.6.0
Expand All @@ -12,7 +13,9 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_custom_tabs_platform_interface: ^2.4.0
# flutter_custom_tabs_platform_interface: ^2.4.0
flutter_custom_tabs_platform_interface:
path: ../flutter_custom_tabs_platform_interface
Comment thread
droibit marked this conversation as resolved.
meta: ^1.10.0

dev_dependencies:
Expand Down
1 change: 1 addition & 0 deletions flutter_custom_tabs_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version: 2.4.0
homepage: https://github.com/droibit/flutter_custom_tabs
repository: https://github.com/droibit/flutter_custom_tabs/tree/main/flutter_custom_tabs_platform_interface
issue_tracker: https://github.com/droibit/flutter_custom_tabs/issues
publish_to: 'none'

Copilot AI Feb 12, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Setting publish_to: 'none' makes this package non-publishable and will break the publish/release process. Since flutter_custom_tabs_platform_interface is the contract package that other packages depend on via pub, this should remain publishable.

Suggested change
publish_to: 'none'

Copilot uses AI. Check for mistakes.

environment:
sdk: ^3.6.0
Expand Down
5 changes: 4 additions & 1 deletion flutter_custom_tabs_web/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version: 2.4.0
homepage: https://github.com/droibit/flutter_custom_tabs
repository: https://github.com/droibit/flutter_custom_tabs/tree/main/flutter_custom_tabs_web
issue_tracker: https://github.com/droibit/flutter_custom_tabs/issues
publish_to: 'none'
Comment thread
droibit marked this conversation as resolved.

environment:
sdk: ^3.6.0
Expand All @@ -22,7 +23,9 @@ dependencies:
sdk: flutter
flutter_web_plugins:
sdk: flutter
flutter_custom_tabs_platform_interface: ^2.4.0
# flutter_custom_tabs_platform_interface: ^2.4.0
flutter_custom_tabs_platform_interface:
path: ../flutter_custom_tabs_platform_interface
Comment on lines +26 to +28

Copilot AI Feb 12, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using a path: dependency in dependencies prevents publishing (pub rejects path deps) and will break consumers resolving this package from pub.dev. Keep the version constraint here and, for local workspace development, use dependency_overrides (or a pubspec_overrides.yaml) to point to the local path instead.

Suggested change
# flutter_custom_tabs_platform_interface: ^2.4.0
flutter_custom_tabs_platform_interface:
path: ../flutter_custom_tabs_platform_interface
flutter_custom_tabs_platform_interface: ^2.4.0

Copilot uses AI. Check for mistakes.
meta: ^1.10.0
url_launcher_web: ^2.3.3
url_launcher_platform_interface: ^2.2.0
Expand Down
Loading