gpt4 book ai didi

android - GoogleAuthUtil.getToken() 抛出 : RuntimeException: Can't create handler inside thread that has not called Looper. prepare()

转载 作者:太空宇宙 更新时间:2023-11-03 13:25:42 25 4
gpt4 key购买 nike

这个 GoogleAuthUtil getToken() 调用:

String token = GoogleAuthUtil.getToken(appContext, accountName, scope);

偶尔会因以下异常而失败:

java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare():
ak: GooglePlayServicesNotAvailable
at com.google.android.gms.auth.GoogleAuthUtil.a(Unknown Source)
at com.google.android.gms.auth.GoogleAuthUtil.getToken(Unknown Source)
at com.google.android.gms.auth.GoogleAuthUtil.getToken(Unknown Source)

所以(duh)显然 Google 的代码正在尝试创建一个 Handler :) 但是我们从标准(非 Looper)线程调用 getToken(),并根据 Google's documentation 进行所有推荐的异常处理。并且文档明确指出“如何在阻塞的非主线程上下文中使用 GoogleAuthUtil 的示例”。所以例如它当然不应该在 UI 线程上调用。

gplay 文档中有一件事是模棱两可的:我们正在将应用程序上下文传递给 getToken(),但是文档没有说明它是否需要特定的上下文,例如从一个 Activity 。其他人有这种或那种方式的经验吗?我不明白这会如何导致问题,但你永远不知道。

主要问题:如何恢复?目前我们捕获异常并放弃,但这确实意味着我们无法为受影响的用户获得授权。

一如既往,我们将不胜感激来自 Google 员工的指导 :)

谢谢!

最佳答案

我想我们已经解决了这个问题。 RuntimeException 在处理 GooglePlayServicesAvailabilityException 时来自 getErrorDialog();关于异常处理的一些事情是从堆栈跟踪中排除的。这就是失败如此罕见的原因——只有不寻常的设备配置才会引发该异常。

错误:就像谷歌的文档示例一样,我们的处理程序是这样做的:

} catch (GooglePlayServicesAvailabilityException e) {
int errorCode = e.getConnectionStatusCode();
if (GooglePlayServicesUtil.isUserRecoverableError(errorCode)) {
Dialog errorDialog = GooglePlayServicesUtil.getErrorDialog(errorCode, resolutionActivity, ...);

但这不起作用,因为您不能在非 Looper 线程上调用 getErrorDialog()。

修复:

Activity resolutionActivity = ...;

try {
String token = GoogleAuthUtil.getToken(appContext, accountName, scope);
...
} catch (GooglePlayServicesAvailabilityException e) {
final int errorCode = e.getConnectionStatusCode();
if (GooglePlayServicesUtil.isUserRecoverableError(errorCode)) {
resolutionActivity.runOnUiThread(new Runnable() {
@Override public void run() {
Dialog errorDialog = GooglePlayServicesUtil.getErrorDialog(errorCode, resolutionActivity, ...);
errorDialog.show();

在我们发布并确认这是原因后,我会更新,但看起来很有可能。

如果这是问题所在,那么应该更新 Google 的文档,因为它显示在后台线程上调用 getErrorDialog()。


我们发布了上面的修复程序并解决了问题:应在 UI 线程上调用 GooglePlayServicesUtil.getErrorDialog()。

关于android - GoogleAuthUtil.getToken() 抛出 : RuntimeException: Can't create handler inside thread that has not called Looper. prepare(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20622256/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com