Android Studio-无法调试应用程序

时间:2019-05-23 16:33:09

标签: android android-studio adb android-debug

我正在使用运行Android 5.1并使用Android Studio 3.4.1的设备。 我已在设备上启用开发人员选项。参见下图。

enter image description here

现在,当我将USB电缆从我的Android设备连接到Windows机器并单击Android Studio中的调试图标时,出现以下错误/消息:

 05/23 09:18:20: Launching app
$ adb push C:\Users\nortonj\Documents\Projects\AndroidApps\transact_esn_registration\app\build\outputs\apk\debug\app-debug.apk /data/local/tmp/TransAct.AccuDate.ESN_SN.Registration
com.android.ddmlib.AdbCommandRejectedException: device unauthorized.
This adb server's $ADB_VENDOR_KEYS is not set
Try 'adb kill-server' if that seems wrong.
Otherwise check for a confirmation dialog on your device.
Error while Installing APK

请参见下面的Android Studio窗口图片。

enter image description here

在“选择部署目标”对话框中,我看到以下内容:

enter image description here

那么几个问题:

  1. 为什么我的设备显示为[离线]?
  2. 我是Android开发的新手。要在硬件设备上调试此应用程序,我需要采取什么步骤?

1 个答案:

答案 0 :(得分:1)

  1. 设备与PC共享文件
  2. 设备已启用调试模式
  3. 查看gradle / app

    buildTypes {     调试{        可调试true     }     发布 {         minifyEnabled是         收缩资源true         proguardFiles'proguard-rules.pro'     } }