我以前能够使用 eclipse 来构建一个带有 ndk-build 的 android 应用程序,并且我能够使用 ndk-gdb 进行调试。当我对使用 Android Studio 构建的应用程序执行相同操作时,我收到此错误:
ERROR: Non-debuggable application installed on the target device.
Please re-install the debuggable version!
我在 build.gradle 中设置了 jniDebuggable=true:
buildTypes {
debug {
debuggable true
jniDebuggable true
}
release {
debuggable false
jniDebuggable true
}
}
我在这里错过了什么吗?
注意:我已经在三星 S3、Moto-g 第二代上进行了测试。我尝试使用 r9d、10c 和 10d。