由于我重新安装了Eclipse(简单地删除并重新下载),我无法在三星Galaxy i9001(使用CyanogenMod - Android 4.4.2)上调试我的应用程序。在重新安装之前,它工作正常。

拔下/插头,取消/检查“调试已启用”,adb kill-server/adb start-server,重启电话/电脑对我不起作用。在设备上授权对话框从未出现(但我记得该对话框出现在重新安装之前)。我不知道如何强制显示这个授权对话框。没有abd_key。.android目录下的Pub文件。 当我试图读取cpu信息DDMS说:

[2014-04-15 12:47:06 - DDMS] device unauthorized. Please check the confirmation dialog on your device.

什么好主意吗?是否可以在没有确认对话框的情况下手动生成密钥?

USB连接

无线连接


当前回答

尝试强制ADB创建新密钥。

在Linux / OSX: $ mv ~/。android / adbkey ~ / .android / adbkey.old $ mv ~/.android/adbkey。酒吧~ / .android / adbkey.pub.old $ adb kill-server $ adb启动服务器 在Windows 10上(谢谢,Pau Coma Ramirez, Naveen和d4c0d312!): 进入%HOMEPATH%\Android\.android\ 查找名为adbkey或adbkey.pub的文件。 删除这些文件。或者,为了安全起见,可以将它们移动到另一个目录。 在%USERPROFILE%\.android\中重复上述步骤 再试一次

在这之后,我甚至不需要拔掉我的手机:授权提示已经在那里了。

其他回答

简单地,关闭设备上的开发人员选项,然后再次打开,将USB与设备和工作系统连接,并打开USB调试。

正如消息所述,您需要允许adb访问您的手机。

你需要先用USB线将手机连接到电脑上,然后屏幕上会弹出授权信息。记住你的选择,然后允许它。

如果您的设备连接到PC时没有显示任何消息。就这么做。

删除/data/misc/adb/adb_key,重启手机并尝试连接 一次。该消息应该出现。

“设备未经授权”时,试图屏幕镜像华为

当我试图将一台老旧的华为Elite S6手机屏幕镜像到一台Windows 10 PC上时,我从sccpy的常见问题解答中被重新引导到这个问题。

手机开启USB调试,没有弹出授权调试窗口,strcpy在终端输出以下错误:

ERROR: Device is unauthorized:
ERROR:     -->   (usb)      AKTBBCB731702690      unauthorized
ERROR: A popup should open on the device to request authorization.
ERROR: Check the FAQ: <https://github.com/Genymobile/scrcpy/blob/master/FAQ.md>
ERROR: Server connection failed

解决方案主要涉及华为对Android的非标准修改:

Connect the phone to the PC with a USB cable. Drag down the notifications list from the top of the screen on the phone. An icon titled "USB Connected" should appear in the list Press "Photos" amongst the modes presented. This answer suggested selecting "Camera" as the connection type. Although Huawei doesn't use the same wording or menu structure, choosing "Photos" solved issues that the "Files" option doesn't support adb authentication, the "USB drive" option (which appeared to work initially) prevents or stops phone apps accessing files on the sd card if this connection option is chosen. Enable USB debugging if a popup appears.

在此阶段重新运行scopy可以正常工作,将鼠标和PC键盘输入到手机上的应用程序。在安装过程中不需要重新启动手机或PC -如果出现问题,请检查下面的提示。

scrcpy技巧

勾选设置中开发者选项下的“保持清醒”,以防止镜像手机时关闭屏幕,镜像完成时再次关闭屏幕。两者都可以在PC上执行。 关闭sccpy GUI窗口以自动终止Windows上的adb进程:不要只是关闭或中止运行sccpy .exe的终端窗口。

解决方案是复制你的文件~/.android/adbkey。pub(在GNU/Linux上,或%USERPROFILE%\.android\adbkey。将其放在/data/misc/adb/adb_keys目录下。您需要root权限才能做到这一点。

你可以用任何你喜欢(或能够)的方式传输文件,无论是USB、电子邮件还是临时文件上传服务。在我的情况下,因为它是一个新的Android-x86安装在虚拟机,没有可用的web浏览器,网络/TCP adb不能工作,我不得不实际输入715个字符。

至少它起作用了。

我被这个问题困扰了很长一段时间,我可以通过从我的手机可以连接的电脑上复制adbkey来完全避开这个问题。