You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+35-1Lines changed: 35 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,41 @@ Follow the steps on the [page](https://help.branch.io/developers-hub/docs/ios-ad
68
68
69
69
**Note**: Code implementation in Swift is not necessary. The plugin already implements the code, requiring only configuration on the Dashboard.
70
70
71
+
#### Disable NativeLink™ Deferred Deep Linking
72
+
If you want to disable NativeLink™ Deferred Deep Linking, follow the instructions below:
73
+
74
+
1. Navigate to **ios/Runner/Info.plist** file.
75
+
2. Add the following in `<dict>` chapter:
76
+
77
+
```xml
78
+
<key>branch_disable_nativelink</key>
79
+
<true/>
80
+
```
81
+
82
+
### Change Flutter Deep link flag (Android / iOS)
83
+
84
+
**Flutter version 3.27** has a [_breaking change_](https://docs.google.com/document/d/1TUhaEhNdi2BUgKWQFEbOzJgmUAlLJwIAhnFfZraKgQs/edit?tab=t.0) that alters the behavior of the Deep link default flag.
85
+
86
+
You must manually set the value to **FALSE** in the project, according to the instructions below.
87
+
88
+
#### iOS
89
+
90
+
1. Navigate to **ios/Runner/Info.plist** file.
91
+
2. Add the following in `<dict>` chapter:
92
+
93
+
```xml
94
+
<key>FlutterDeepLinkingEnabled</key>
95
+
<false/>
96
+
```
97
+
#### Android
98
+
99
+
1. Navigate to **android/app/src/main/AndroidManifest.xml** file.
100
+
2. Add the following metadata tag and intent filter inside the tag with `.MainActivity`
0 commit comments