请您的设备上检查确认对话框

人气:1,038 发布:2022-09-11 标签: debugging android adb

问题描述

我试图连接亚行设备,并将其显示的请您的设备上检查确认对话框 ..但没有亚行确认(RSSI)对话框。

I am trying to connect adb device and it showing "Please check the confirmation dialog on your device" ..but there is no adb confirmation(rssi) dialog.

同亚行设置为其他设备。我与 http://stackoverflow.com/a/23086501/2624806 和其他一些检查后也。但它不是为我工作。

Same adb setup for other device. I checked with http://stackoverflow.com/a/23086501/2624806 and some other post as well. But it's not working for me.

任何建议!

推荐答案

当你错过接受起初RSA密钥通知这种情况经常发生。 最好的办法是重新设置。

This usually happens when you miss accepting the RSA Key Notification at first. Best would be to reset the setting.

如下操作:

关闭开发者选项

在开发设置,点选撤销USB授权

Under Developer Setting, Tap on Revoke USB Authorization

开关ON开发者选项

启用USB调试,你会看到在设备RSA密钥的通知

Enable USB Debugging, and you would see RSA Key Notification on device

您应该立即看到上面notifiaction。

You should immediately see the above notifiaction.

选择始终允许从这台计算机和确定。 为了避免进一步的拒绝。

Select Always allow from this computer and Ok. To avoid further denial.

在你的问题中提到的链接也应该工作。 可能有一些问题。

The link mentioned in your question should also work. Might be some issue.

更新: 这也可能是一个问题,你的亚洲开发银行二进制版本。 检查利用亚行版本:

Update: This might also be an Issue with your adb binary version. Check adb version using:

$ adb version
Android Debug Bridge version 1.0.31

如果您使用的是旧版本,请更新。

If you are using an older version please update.

730