Has anyone successfully ported live555 to Android?

I am trying to build live555according to this guide:

https://github.com/boltonli/ohbee/tree/master/android/streamer/jni

as well as using some other guides, all to no avail.

If someone managed to port live555to android, can you tell me how I can do this?

+3
source share
3 answers

I successfully built the project as follows:

git clone https://github.com/boltonli/ohbee.git
cd ohbee/android/streamer
android update project --path . --name "streamer" --target "android-15"
cp lib/jnix.jar libs/ # This is the only trick
ant debug

The box was in the catalog lib/, not libs/.

If this does not solve the problem that you have been or have, you need to be more specific and share your steps and problems that you face.

+9

Live555 ARM/Linux :

> cd live
> ./genMakefiles armlinux
> make

:

live.2011.06.16-DEV-armlinux.tar.bz2

, !

+2

, Android Studio:

java.lang.UnsatisfiedLinkError MainActivity.java: System.loadLibrary( "jnix" );

libjnix.so ohbee/android/streamer/*, armeabi ohbee/android/streamer2/libs/armeabi. src/main/jniLibs/armeabi, Samsung Galaxy Note S3. RTPSink .

Obviously, targets that are not armeabi will not work (so virtual devices do not work), and I could not find the source for jnix libs (only headers).

0
source

All Articles