1、检查是否有#include < android/log.h>
2、如果没有则在build.gradle中添加,例如:
ndk {
moduleName “access” //生成的so名字
abiFilters “armeabi-v7a” //输出指定abi体系结构下的so库。
ldLibs “log”//不加的话 .h文件打log 会报undefined reference to ‘__android_log_print’
}
1、检查是否有#include < android/log.h>
2、如果没有则在build.gradle中添加,例如:
ndk {
moduleName “access” //生成的so名字
abiFilters “armeabi-v7a” //输出指定abi体系结构下的so库。
ldLibs “log”//不加的话 .h文件打log 会报undefined reference to ‘__android_log_print’
}