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.
 
 
 
 
 
 
FFmpegAndroid/doc/JNI_develop_practice.md

626 B

前言

JNI是Java本地接口,定义Android从应用代码(以Java或kotlin编程语言编写)到本地代码(C/C++编写)交互编译成字节码的一种方式。
文档Java Native Interface Specification

NDK编译脚本

Android.mk与CMake编译

相关介绍文章如下:

NDK编译脚本
JNI开发规范