Skip to content

Commit

Permalink
fix: make package of mobileDeepLink optional
Browse files Browse the repository at this point in the history
  • Loading branch information
fur0ut0 committed Dec 9, 2024
1 parent 55993d1 commit 899e966
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ Start URI that may take users directly to the specific content in the app. Read
Name | Type | Required | Description | Example
--- | --- | --- | --- | ---
url | string | yes | The URL to start | theapp://login/
package | string | yes | The name of the package to start the URI with | 'com.mycompany'
package | string | no | The name of the package to start the URI with | 'com.mycompany'
waitForLaunch | boolean | no | If `false` then ADB won't wait for the started activity to return the control. `true` by default | false

### mobile: startLogsBroadcast
Expand Down
2 changes: 1 addition & 1 deletion lib/commands/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export interface DeepLinkOpts {
/**
* The name of the package to start the URI with.
*/
package: string;
package?: string;
/**
* If `false` then adb won't wait for the started activity to return the control.
* @defaultValue true
Expand Down

0 comments on commit 899e966

Please sign in to comment.