I have some Functions which is written in Go language and I am Exporting those functions to C(Cross Compiling) with the below command which generates .h and .a file go build -buildmode=c-archive -o foo.a and generating the Shared library with the command go build -buildmode=c-shared -o C:\Users\Nems\TestingLogs1\armeabi-v7a\libfoo.so which generates .so file. I am integrating those file in Android studio and the Application is running fine, The problem for me is I want to see the Logging statements(used fmt and log both) of Go file in android studio Logcat.
I tried many ways to display logs of Go in android studio but none of those work for me.