0

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?

Victor Sergienko
  • 13,115
  • 3
  • 57
  • 91
tuan.giao
  • 252
  • 1
  • 4
  • 15

2 Answers2

2

for those who coming to this later, this is a sample for using Baresip on Android: https://github.com/MobiSciLab/Baresip-DemoAudioCall

Cao Minh Vu
  • 1,900
  • 1
  • 16
  • 21
0

You need to build libbaresip.so. Afterwards, you'll need to create a C JNI wrapper to call baresip functions from Java code.

Victor Sergienko
  • 13,115
  • 3
  • 57
  • 91