Reputation: 248
I'm a beginner in NDK. So, I want to implement SIP to android use Baresip - Git page
I followed the step on Git page, now my project have "jni" folder with 4 libraries: re, rem, openssl and baresip.
Anyone suggest me an idea with Android.mk file to build those libraries to project?
Upvotes: 0
Views: 2225
Reputation: 1948
for those who coming to this later, this is a sample for using Baresip on Android: https://github.com/MobiSciLab/Baresip-DemoAudioCall
Upvotes: 2
Reputation: 13485
You need to build libbaresip.so
. Afterwards, you'll need to create a C JNI wrapper to call baresip functions from Java code.
Upvotes: 0