2015-06-09 03:43:23.800 <appname>[238:7171] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Your app must support the following URL schemes: (null)'
I will try this out on my iOS 8 branch tomorrow to make sure it's not the full-point OS upgrade, but it is an unhandled exception nonetheless, originating from inside Google's code (between GIDSignIn.signIn and GIDSignIn.delegate.signIn).
Please help!
-sam
--
You received this message because you are subscribed to a topic in the Google Groups "Google Identity Toolkit" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-identity-toolkit/TbEmIJSNDFE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-identity-t...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
func prepareGoogleAccounts() -> SecurityLogic { Logging.say("Preparing Google Accounts integration...") var error : NSError? GGLContext.sharedInstance().configureWithError(&error) if error != nil { println("Failed to authenticate with Google Accounts: \(error!.localizedDescription).") } else { let gid = GIDSignIn.sharedInstance() gid.delegate = self gid.clientID = clientId gid.serverClientID = serverClientId gid.scopes = AppCredentials.baseScopes gid.shouldFetchBasicProfile = true } return self; } |
--
You received this message because you are subscribed to a topic in the Google Groups "Google Identity Toolkit" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-identity-toolkit/TbEmIJSNDFE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-identity-t...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and all its topics, send an email to google-identity-toolkit+unsub...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
This message (and any associated files) may contain confidential and/or privileged information. If you are not the intended recipient or authorized to receive this for the intended recipient, you must not use, copy, disclose or take any action based on this message or any information herein. If you have received this message in error, please advise the sender immediately and delete this message. Thank you for your cooperation.
--
You received this message because you are subscribed to a topic in the Google Groups "Google Identity Toolkit" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-identity-toolkit/TbEmIJSNDFE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-identity-toolkit+unsub...@googlegroups.com.
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>{Bundle identifier}</string>
<string>{Revers ClientID}</string>
</array>
</dict>
</array>