如果项目中需要接入c/c++的代码,则需要使用到NDK就行java代码和c/c++的调用 首先配置环境
1、现在安装NDK
点击file-strings-Appearance & Behavior-system settings-Android Sdk-点击ndk和cmake进行下载选上
安装配置好了以后分为两种情况,第一种是创建一个支持c/c++的新的项目,第二种是将已有的项目配置成支持c/c++的项目
一.创建一个支持c/c++的新的项目
Android studio还是很友好的 在创建的时候可以直接选择
点击file-new- New Project 弹出的弹窗中可以滑到最下面 选择Native c++
然后一直next 到最后的页面可以选择c++的标准,不选择的话可以默认
新创建的项目中比平时多了一个cpp包,其中native-lib.cpp就是c++的代码 其中返回了一个Hello from C++ 的String 在MainActivity中进行了调用
native关键字修饰的就是本地的C++代码 点击运行就发现hello from c++ 就展示到屏幕上了。
二.将已有项目配置支持c/c++
首先创建cpp文件包 创建c++源码文件 创建CMake脚本
写入一个测试函注意将包名和方法名换成自己的
#include <jni.h>
#include <string>
extern "C" JNIEXPORT jstring
JNICALL
Java_com_example_ls_test1_Main1Activity_stringFromJNI(
JNIEnv *env,
jobject /* this */) {
std::string hello = "Hello from C++";
return env->NewStringUTF(hello.c_str());
}
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-lib.cpp )
find_library( # Sets the name of the path variable.
log-lib
# Specifies the name of the NDK library that
# you want CMake to locate.
log )
target_link_libraries( # Specifies the target library.
native-lib
# Links the target library to the log library
# included in the NDK.
${log-lib} )
2.4 向Gradle注册构建请求
打开build.gradle向android/defaultConfig节区追加以下内容:
externalNativeBuild {
cmake {
cppFlags ""
}
}
向android节区追加以下内容:
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
然后验证一遍
其中native-lib要和CMakeLists.txt中的add_library中的第一个参数对应
参考:https://www.cnblogs.com/lsdb/p/9337285.html