"android-studio undefined reference to `__android_log_print "错误解决方法
Android 开发 串口过程中 .h文件报
"android-studio undefined reference to `__android_log_print "
这样的错误。
解决方法:
app下的build.gradle中
android{
【"android-studio undefined reference to `__android_log_print "错误解决方法】sourceSets.main {
jni.srcDirs = []
jniLibs.srcDir'src/main/libs'
}
}
加入这个。编译就通过了
头一次接触串口,刚开始好心累
推荐阅读
- [译文]Domain|[译文]Domain Driven Design Reference(四)—— 柔性设计
- 函数式编程(一)|函数式编程(一) lambda、FunctionalInterface、Method Reference
- MySQL|MySQL 5.7 JSON特性支持
- 为什么要传入|为什么要传入 undefined
- jvm|jvm 谈谈引用(强引用(Strong Reference)、软引用(Soft Reference)、弱引用(Weak Reference)、虚引用(Phantom Reference))
- 再见SharedPreferences,你好MMKV!
- android-studio|Android 下载apk提示更新以及解决Android 6.0 Marshmallow提示更新报错问题
- android-studio Emulator: PANIC: Broken AVD system path. Check your ANDROID_SDK_ROOT value
- Null和Undefined
- Android中SharedPreference的用法