I downloaded and build the libraries from pjSIP for Android. It generated some static libraries (.a-files, 19 of them, to be precise), and I implemented them in my project, following this answer. My project structure looks like this now:
|--app:
|--|--src:
|--|--|--main
|--|--|--|--jniLibs
|--|--|--|--|--armeabi
|--|--|--|--|--|--.a Files
I would like to use classes and methods within this libraries now, as an example, I would like to use the examples shown here in the pjSIP documentation in Java. For example:
Endpoint ep = new Endpoint();
How can I achieve this, what am I missing here?