Skip to content

Commit

Permalink
fix: autoVerify=true is now given.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrunet committed Feb 26, 2024
1 parent 9b94395 commit f82d8b0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion packages/katana_cli/lib/action/app/deeplink.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,12 @@ class AppDeeplinkCliAction extends CliCommand with CliActionMixin {
activity.first.children.add(
XmlElement(
XmlName("intent-filter"),
[],
[
XmlAttribute(
XmlName("android:autoVerify"),
"true",
),
],
[
XmlElement(
XmlName("action"),
Expand Down
7 changes: 6 additions & 1 deletion packages/katana_cli/lib/action/firebase/dynamic_links.dart
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,12 @@ class FirebaseDynamicLinksCliAction extends CliCommand with CliActionMixin {
activity.first.children.add(
XmlElement(
XmlName("intent-filter"),
[],
[
XmlAttribute(
XmlName("android:autoVerify"),
"true",
),
],
[
XmlElement(
XmlName("action"),
Expand Down

0 comments on commit f82d8b0

Please sign in to comment.