Android Debugging in Android Studio 2.3.1. Changed?

Have settings changed in Android Studio 2.3.1?

I see the Hybrid option no longer exists and there is a new Option Dual.

enter image description here

I was able to debug my own part using the same setting in Android Studio 2.2.2 . I've already installed LLDB.CMAKE and exported symbols in the application debugger.

Also in build.gradle I added the following lines:

debug {
            minifyEnabled false
            debuggable true
            jniDebuggable true
        }

      

Is additional change required in AS 2.3.1 ?

+3


source to share





All Articles