File tree 3 files changed +15
-12
lines changed 3 files changed +15
-12
lines changed Original file line number Diff line number Diff line change
1
+ # v4.1.1
2
+ - Improves some method documentation in headers.
3
+
1
4
# v4.1.0
2
5
- Allows the app to handle continue URL natively, e.g., from password reset
3
6
email.
Original file line number Diff line number Diff line change @@ -116,6 +116,18 @@ NS_ASSUME_NONNULL_BEGIN
116
116
*/
117
117
- (BOOL )signOutByForceWithUserID : (NSString *)userID error : (NSError *_Nullable *_Nullable)error ;
118
118
119
+ /* * @fn canHandleURL:
120
+ @brief Whether the specific URL is handled by @c FIRAuth .
121
+ @param url The URL received by the application delegate from any of the openURL method.
122
+ @return Whether or the URL is handled. YES means the URL is for Firebase Auth
123
+ so the caller should ignore the URL from further processing, and NO means the
124
+ the URL is for the app (or another libaray) so the caller should continue handling
125
+ this URL as usual.
126
+ @remarks If swizzling is disabled, URLs received by the application delegate must be forwarded
127
+ to this method for phone number auth to work.
128
+ */
129
+ - (BOOL )canHandleURL : (nonnull NSURL *)url ;
130
+
119
131
@end
120
132
121
133
NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change @@ -684,18 +684,6 @@ FIR_SWIFT_NAME(Auth)
684
684
- (BOOL )canHandleNotification:(NSDictionary *)userInfo;
685
685
#endif
686
686
687
- /* * @fn canHandleURL:
688
- @brief Whether the specific URL is handled by @c FIRAuth .
689
- @param url The URL received by the application delegate from any of the openURL method.
690
- @return Whether or the URL is handled. YES means the URL is for Firebase Auth
691
- so the caller should ignore the URL from further processing, and NO means the
692
- the URL is for the app (or another libaray) so the caller should continue handling
693
- this URL as usual.
694
- @remarks If swizzling is disabled, URLs received by the application delegate must be forwarded
695
- to this method for phone number auth to work.
696
- */
697
- - (BOOL )canHandleURL:(nonnull NSURL *)url;
698
-
699
687
@end
700
688
701
689
NS_ASSUME_NONNULL_END
You can’t perform that action at this time.
0 commit comments