为了加快调试本地代码的速度,可以采用以下几种方法:
启用”Apply Changes”功能。该功能允许在不需要重新启动应用程序的情况下,应用程序中包含的某些代码的更改立即生效。这样可以节省很多时间。启用方法:在Android Studio的“Settings/Preferences”窗口中找到“Build, Execution, Deployment” > “Instant Run”并启用该功能。
增加调试器的分析能力。通过增加调试器的分析能力可以提高调试速度。可以在“Run”菜单下选择”Edit Configurations”来打开”Run/Debug Configurations”对话框。然后,在“Profiling”选项卡中启用”Enable advanced profiling”选项。
使用NDK实现本地代码调试。使用NDK可以编写本地代码,而且在调试过程中可以使用GDB来调试C/C++代码。可以在项目的build.gradle文件中加入以下配置:
android {
...
defaultConfig {
...
externalNativeBuild {
cmake {
cppFlags "-frtti -fexceptions"
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
}
}
}
...
buildTypes {
...
debug {
...
externalNativeBuild {
cmake {
targets "your_native_lib"
arguments "-DANDROID_TOOLCHAIN=clang"
}
}
}
...
}
}
在你的本地代码目录中,创建一个CMakeLists.txt文件来定义你的本地代码。例如:
cmake_minimum_required(VERSION 3.4.1)
#添加一个库
add_library( # Sets the name of the library.
native-lib
# Sets the library as a shared library.
SHARED
# Provides a relative path to your source file(s).
src/main/cpp/native