Always sent same verification code and infinity activity indicator shown.

@Tayphoon can you upload a sample or post code that reproduces this issue?
@morganchen12 @Tayphoon @yramanchuk I have the same issue here. No matter valid/invalid code I enter it's stuck on activity indicator. Here is my code that call this controller:
//
FUIAuth *auth = [FUIAuth defaultAuthUI];
auth.delegate = self;
//
FUIPhoneAuth *phoneAuth = [[FUIPhoneAuth alloc] initWithAuthUI:auth];
[phoneAuth signInWithPresentingViewController:self];
I have set the AppDelegate methods also considering (Start receiving APNs notifications) 2.point on official firebase webpage.
https://firebase.google.com/docs/auth/ios/phone-auth
@Tayphoon @kovalskyy There should be operation timeout and you should receive server error in:
- (void)authUI:(FUIAuth *)authUI didSignInWithUser:(nullable FIRUser *)user error:(nullable NSError *)error
Please wait for timeout (at least 2 min) and provide server error code (see instructions below).
In order to eliminate possible problems:
authUI:didSignInWithUser:error:NSError *detailedError = error.userInfo[NSUnderlyingErrorKey];
AppDelegate add #import <GTMSessionFetcher/GTMSessionFetcherLogging.h>application:didFinishLaunchingWithOptions: call [GTMSessionFetcher setLoggingEnabled:YES];Window -> Devices -> {YOUR_DEVICE} -> {YOUR_APP} -> Gear Icon -> Download Container)Container.xcappdata -> AppData -> Documents -> GTMHTTPDebugLogs -> {YOUR_APP}samples) and try to reproduce your issue there.I have resolved issue with this line of code when calling controller.
auth.providers = @[phoneAuth];
When problem occurs once again I will adjust to your solution
I have resolved issue with this line of code when calling controller.
@kovalskyy Nice to hear!
@Tayphoon Can you please confirm that issue was fixed?
@kovalskyy @yramanchuk Yes it's help.