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
* Deprecate `PhoneAuthProvider.MaxTimeoutMs`
This is a read-only valued used to set the upper bound for
`autoVerifyTimeOutMs`. However, the value was set too low.
Android SDK has increase the range to 30 to 120 seconds, while iOS
SDK does not have a way to override timeout.
This is a change to deprecate this public property so that
the underlying SDK can determine the range for timeout.
/// Maximum value of `autoVerifyTimeOutMs` in @ref VerifyPhoneNumber.
61
61
/// @ref VerifyPhoneNumber will automatically clamp values to this amount.
62
+
///
63
+
/// @deprecated This value is no longer used to clamp
64
+
/// `autoVerifyTimeOutMs` in @ref VerifyPhoneNumber. The range is
65
+
/// determined by the underlying SDK, ex. <a href="/docs/reference/android/com/google/firebase/auth/PhoneAuthOptions.Builder"><code>PhoneAuthOptions.Build</code> in Android SDK</a>
66
+
[System.Obsolete("PhoneAuthProvider.MaxTimeoutMs is deprecated. This value no longer affects PhoneAuthProvider.VerifyPhoneNumber()")]
Copy file name to clipboardExpand all lines: docs/readme.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -155,6 +155,11 @@ Support
155
155
156
156
Release Notes
157
157
-------------
158
+
### Upcoming
159
+
- Changes
160
+
- Auth (Android/iOS): Deprecate `PhoneAuthProvider.MaxTimeoutMs`. The actual
161
+
range is determined by the underlying SDK, ex. [PhoneAuthOptions.Builder in Android SDK](https://firebase.google.com/docs/reference/android/com/google/firebase/auth/PhoneAuthOptions.Builder).
162
+
158
163
### 9.6.0
159
164
- Changes
160
165
- General: Updated Firebase C++ SDK dependencies to v9.6.0.
0 commit comments