debug 断点 gradle plugin

  1. 新增Configuration
    • run → Edit Configurations
    • 弹出面板左上角“+” → 选择remote → 起个名字 → 拷贝参数 → 选择插件代码module → 点击OK
    • 上图注意3 COPY右边那个JDK版本范围,记得和工程使用的保持一致
  2. Run Configuration
    • 右侧gradle → 点开使用插件的模块的Task的build → 右键build选择Edit xxx → 上面步骤拷贝的参数粘贴到VM Options → 注意参数suspend=n改为suspend=y → 点击OK → Sync Project with Gradle Files → 此时右侧gradle会显示一个Run Configuations
      1
      2
      3
  3. 开始debug
    • 加个断点,然后选择新增Configuration是新建的remote的那个,点击debug。
    • 连接好后可以看到日志
    • 点击右侧gradle中步骤2添加的那个Run Configurations
    • OK
  4. 问题
    *. 我遇到如下问题,我的处理方式是先点击右侧gradle展开后新增的run configurations,点一下就行,不用等那个转圈的顶部选择到debugGradle,步骤1创建的那个,debug再次点击右侧gradle展开后新增的run configurations

你可能感兴趣的:(debug 断点 gradle plugin)