Dhananjay Gupta
Dhananjay Gupta

Reputation: 109

need example of PJSIP for android

I want to connect to SIP server using PJSIP through android, how to integrate in a android studio. I have taken example of csipsimple , but i am unable to connect the SIP server using PJSIP.

Upvotes: 1

Views: 1284

Answers (1)

Youhai  LU
Youhai LU

Reputation: 56

there are some misunderstanding issues on the PJSIP android getting started because they seem didn't use the newest NDK version, for the android studio, it always implements updated NDK version when u install it.
So there are two solutions: 1: you download NDK version from this website, I am using version 13 which is working. then export this path instead of android studio one. 2: you need to specify which ABI type you need to build: there are few types of ABIs that you can build, it referred by google's website. (by add like: TARGET_ABI=armeabi-v7a ).

Upvotes: 1

Related Questions