Android Studio 2.1 stable在悬停时不会显示局部变量

时间:2016-05-09 13:49:03

标签: android android-gradle android-debug

自从我将Android Studio更新到2.1版后,我无法正确调试我的应用程序。

我可以看到所有类变量的变量值,但我无法看到方法或局部变量的值。当我评估变量的表达式时,我看到此错误"无法找到局部变量"

我已经用尽了Issue filed on Google中提到的所有技巧。

有人能指出我正确的方向吗?也许你可能在......之前遇到过这个问题。

BTW我的 buildTypes 看起来像这样。

buildTypes {
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        debug {
            testCoverageEnabled = false //Tried this with and without testCoverageEnabled 
        }
    }

0 个答案:

没有答案