Skip to content

Commit

Permalink
update ios files
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhichao Link committed Feb 3, 2023
1 parent 7b01642 commit 0480b64
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Assets/Plugins/iOS/.Swift/UnityManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,11 @@ extension UnityManager {
supportAuthTypeArray = [.all]
} else {
array.forEach {
if $0 == "apple" {
if $0 == "email" {
supportAuthTypeArray.append(.email)
} else if $0 == "phone" {
supportAuthTypeArray.append(.phone)
} else if $0 == "apple" {
supportAuthTypeArray.append(.apple)
} else if $0 == "google" {
supportAuthTypeArray.append(.google)
Expand Down

0 comments on commit 0480b64

Please sign in to comment.