forked from organicmaps/organicmaps-tmp
[cherry] [GoogleSignIn] [ios] Added GoogleSignIn plus.login permission request.
This commit is contained in:
parent
d01c57b9c2
commit
14639daad8
1 changed files with 8 additions and 4 deletions
|
@ -66,14 +66,18 @@ final class AuthorizationViewController: MWMViewController {
|
|||
googleButton.setTitle("Google", for: .normal)
|
||||
googleButton.setTitleColor(UIColor.blackPrimaryText(), for: .normal)
|
||||
googleButton.titleLabel?.font = UIFont.bold14()
|
||||
let gid = GIDSignIn.sharedInstance()!
|
||||
gid.delegate = self
|
||||
gid.uiDelegate = self
|
||||
}
|
||||
}
|
||||
|
||||
@IBAction func googleSignIn() {
|
||||
GIDSignIn.sharedInstance().signIn()
|
||||
let gid = GIDSignIn.sharedInstance()!
|
||||
if var scopes = gid.scopes {
|
||||
scopes.append("https://www.googleapis.com/auth/plus.login")
|
||||
gid.scopes = scopes
|
||||
}
|
||||
gid.delegate = self
|
||||
gid.uiDelegate = self
|
||||
gid.signIn()
|
||||
}
|
||||
|
||||
private lazy var facebookButton: FBSDKLoginButton = {
|
||||
|
|
Loading…
Add table
Reference in a new issue