Skip to content

Commit a95bd51

Browse files
committed
Update refdocs and address review comments
1 parent 043b512 commit a95bd51

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

docs-devsite/auth.actioncodesettings.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export interface ActionCodeSettings
3333

3434
Sets the Android package name.
3535

36-
This will try to open the link in an android app if it is installed. If `installApp` is passed, it specifies whether to install the Android app if the device supports it and the app is not already installed. If this field is provided without a `packageName`<!-- -->, an error is thrown explaining that the `packageName` must be provided in conjunction with this field. If `minimumVersion` is specified, and an older version of the app is installed, the user is taken to the Play Store to upgrade the app.
36+
This will try to open the link in an Android app if it is installed.
3737

3838
<b>Signature:</b>
3939

@@ -78,8 +78,6 @@ Sets the iOS bundle ID.
7878

7979
This will try to open the link in an iOS app if it is installed.
8080

81-
App installation is not supported for iOS.
82-
8381
<b>Signature:</b>
8482

8583
```typescript

packages/auth/src/model/public_types.ts

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -462,12 +462,7 @@ export interface ActionCodeSettings {
462462
* Sets the Android package name.
463463
*
464464
* @remarks
465-
* This will try to open the link in an android app if it is
466-
* installed. If `installApp` is passed, it specifies whether to install the Android app if the
467-
* device supports it and the app is not already installed. If this field is provided without
468-
* a `packageName`, an error is thrown explaining that the `packageName` must be provided in
469-
* conjunction with this field. If `minimumVersion` is specified, and an older version of the
470-
* app is installed, the user is taken to the Play Store to upgrade the app.
465+
* This will try to open the link in an Android app if it is installed.
471466
*/
472467
android?: {
473468
installApp?: boolean;
@@ -490,8 +485,6 @@ export interface ActionCodeSettings {
490485
*
491486
* @remarks
492487
* This will try to open the link in an iOS app if it is installed.
493-
*
494-
* App installation is not supported for iOS.
495488
*/
496489
iOS?: {
497490
bundleId: string;
@@ -522,7 +515,8 @@ export interface ActionCodeSettings {
522515
* The optional custom Firebase Hosting domain to use when the link is to be opened via
523516
* a specified mobile app. The domain must be configured in Firebase Hosting and owned
524517
* by the project. This cannot be a default Hosting domain (`web.app` or `firebaseapp.com`).
525-
* @defaultValue The default Hosting domain will be used (for example, `example.firebaseapp.com`)
518+
*
519+
* @defaultValue The default Hosting domain will be used (for example, `example.firebaseapp.com`).
526520
*/
527521
linkDomain?: string;
528522
}

packages/auth/test/integration/flows/hosting_link.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @license
3-
* Copyright 2023 Google LLC
3+
* Copyright 2025 Google LLC
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)