After updating the video SDK from v1.11.2 to v1.12.10, I started getting ‘undefined symbol: g_dbus_proxy_call_sync’ when loading libvideosdk.so.
What could be the possible cause?
Link gio-2.0, by adding “-lgio-2.0” to your g++ command. If you use CMake, may add this line “target_link_libraries(<your_executable> gio-2.0)”
2 Likes
Thanks, linanw.
I was able to resolve it.