Skip to content

Commit

Permalink
[deep link] Flip flag deepLinkIosCheck value to true (#8394)
Browse files Browse the repository at this point in the history
* Flip flag deepLinkIosCheck value to `true`

* Update NEXT_RELEASE_NOTES.md

Update NEXT_RELEASE_NOTES.md

* Update feature_flags_test.dart

* update screenshot

* Update NEXT_RELEASE_NOTES.md
  • Loading branch information
hangyujin authored Oct 3, 2024
1 parent 85acf88 commit b5f07c0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/devtools_app/lib/src/shared/feature_flags.dart
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ abstract class FeatureFlags {
/// Flag to enable ios checks in deep link validation.
///
/// https://github.com/flutter/devtools/issues/7799
static bool deepLinkIosCheck = false;
static bool deepLinkIosCheck = true;

/// Flag to enable DevTools extensions.
///
Expand Down
4 changes: 3 additions & 1 deletion packages/devtools_app/release_notes/NEXT_RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ TODO: Remove this section if there are not any general updates.

## Deep links tool updates

TODO: Remove this section if there are not any general updates.
- Added support for validating iOS deep link settings. - [#8394](https://github.com/flutter/devtools/pull/8394)

![Deep link validator for iOS](images/deep_link_ios.png "DevTools Deep link validator Page")

## VS Code Sidebar updates

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ void main() {
expect(enableBeta, false);
expect(isExternalBuild, true);
expect(FeatureFlags.memorySaveLoad, false);
expect(FeatureFlags.deepLinkIosCheck, false);
expect(FeatureFlags.deepLinkIosCheck, true);
expect(FeatureFlags.loggingV2, false);
expect(FeatureFlags.dapDebugging, false);
expect(FeatureFlags.wasmOptInSetting, true);
Expand Down

0 comments on commit b5f07c0

Please sign in to comment.