Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些在 C++ 中执行本机代码期间生成的中间值。有没有办法将这些值打印为敬酒或一些日志消息。
我试图将这些值打印为日志,但它不起作用
__android_log_print(ANDROID_LOG_VERBOSE, "No of matches", "%d", (int) matchings.size());
该方法应该将消息写入 Logcat。如果您使用的是自定义构建过程,请务必将您的 NDK 代码链接到liblog(使用-l log)。例如:
liblog
-l log
arm-linux-androideabi-gcc my_module.c -l log -o my_module