Skip to content

Commit 7914ec7

Browse files
committed
Fix Xcode 16 build error
1 parent f9fd262 commit 7914ec7

File tree

3 files changed

+1
-37
lines changed

3 files changed

+1
-37
lines changed

FirebaseAuthUI.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseAuthUI'
3-
s.version = '14.2.4'
3+
s.version = '14.2.5'
44
s.summary = 'A prebuilt authentication UI flow for Firebase Auth.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }

FirebaseAuthUI/Sources/FUIAuth.m

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -352,17 +352,6 @@ - (void)invokeResultCallbackWithAuthDataResult:(nullable FIRAuthDataResult *)aut
352352
URL:(nullable NSURL *)url
353353
error:(nullable NSError *)error {
354354
dispatch_async(dispatch_get_main_queue(), ^{
355-
// Firebase 10 signatures.
356-
if ([self.delegate respondsToSelector:@selector(authUI:didSignInWithAuthDataResult:URL:error:)]) {
357-
[self.delegate authUI:self
358-
didSignInWithAuthDataResult:authDataResult
359-
URL:url
360-
error:error];
361-
}
362-
if ([self.delegate respondsToSelector:@selector(authUI:didSignInWithAuthDataResult:error:)]) {
363-
[self.delegate authUI:self didSignInWithAuthDataResult:authDataResult error:error];
364-
}
365-
// Firebase 11+ signatures.
366355
if ([self.delegate respondsToSelector:@selector(authUI:didSignInWith:URL:error:)]) {
367356
[self.delegate authUI:self didSignInWith:authDataResult URL:url error:error];
368357
}

FirebaseAuthUI/Sources/Public/FirebaseAuthUI/FUIAuth.h

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -46,20 +46,6 @@ typedef void (^FUIAuthResultCallback)(FIRUser *_Nullable user, NSError *_Nullabl
4646

4747
@optional
4848

49-
/** @fn authUI:didSignInWithAuthDataResult:error:
50-
@brief Message sent after the sign in process has completed to report the signed in user or
51-
error encountered. Use this variation with Firebase 10 and earlier.
52-
@param authUI The @c FUIAuth instance sending the message.
53-
@param authDataResult The data result if the sign in attempt was successful.
54-
@param url pass the deep link associated with an email link sign-in completion. It is useful
55-
for the developer to access the state before the sign-in attempt was triggered.
56-
@param error The error that occurred during sign in, if any.
57-
*/
58-
- (void)authUI:(FUIAuth *)authUI
59-
didSignInWithAuthDataResult:(nullable FIRAuthDataResult *)authDataResult
60-
URL:(nullable NSURL *)url
61-
error:(nullable NSError *)error;
62-
6349
/** @fn authUI:didSignInWithAuthDataResult:error:
6450
@brief Message sent after the sign in process has completed to report the signed in user or
6551
error encountered. Use this variation with Firebase 11 and later. Swift implementations
@@ -75,17 +61,6 @@ typedef void (^FUIAuthResultCallback)(FIRUser *_Nullable user, NSError *_Nullabl
7561
URL:(nullable NSURL *)url
7662
error:(nullable NSError *)error;
7763

78-
/** @fn authUI:didSignInWithAuthDataResult:error:
79-
@brief Message sent after the sign in process has completed to report the signed in user or
80-
error encountered. Use this variation with Firebase 10 and earlier.
81-
@param authUI The @c FUIAuth instance sending the message.
82-
@param authDataResult The data result if the sign in attempt was successful.
83-
@param error The error that occurred during sign in, if any.
84-
*/
85-
- (void)authUI:(FUIAuth *)authUI
86-
didSignInWithAuthDataResult:(nullable FIRAuthDataResult *)authDataResult
87-
error:(nullable NSError *)error;
88-
8964
/** @fn authUI:didSignInWithAuthDataResult:error:
9065
@brief Message sent after the sign in process has completed to report the signed in user or
9166
error encountered. Use this variation with Firebase 11 and later. Swift implementations

0 commit comments

Comments
 (0)