You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
542 B
9 lines
542 B
3 years ago
|
# 前言
|
||
3 years ago
|
JNI是Java本地接口,定义Android从应用代码(以Java或kotlin编程语言编写)到本地代码(C/C++编写)交互编译成字节码的一种方式。</br>
|
||
3 years ago
|
文档[Java Native Interface Specification](https://docs.oracle.com/javase/7/docs/technotes/guides/jni/spec/jniTOC.html)</br>
|
||
|
|
||
3 years ago
|
# NDK编译脚本
|
||
|
### [Android.mk与CMake编译](https://github.com/xufuji456/FFmpegAndroid/blob/master/doc/NDK_compile_shell.md)
|
||
|
|
||
3 years ago
|
# 相关介绍文章如下:
|
||
|
### [JNI开发规范](https://blog.csdn.net/u011686167/article/details/81784979)
|