I am currently working on an Android application that needs to publish a live stream of the device’s camera to a Wowza Server. I am using Red5 on the device itself to get this done, however I have ran into a multitude of dependency issues. I need to locate the javax.management package with the MXBean class. Can anyone please help?
Share
That package does not exist in Android, and you cannot reliably add
java.*orjavax.*classes to an Android project. That means that you would need to:Write an implementation of
javax.managementand related classes from scratch, calling itchumlee007.managementor something. You may be able to get some of this code from Apache Harmony, refactoring them into your custom package, but Harmony’s implementation ofjavax.managementis not complete AFAICT.Modify Red5 to use
chumlee007.management.I suspect that you will find it easier to go some other route. AFAIK, Red5 is designed to run on a server, and Android phones are not servers.