Reputation: 1329
I'm trying to create an instant messenger in java using the SMACK API. My ultimate goal is to provide voice as well as video chat using a google(gmail) id. The API doesn't matter. Just something that works.
I have googled a lot, but could not find any good documentation. I found a library called libjingle, but it supports only c++.
Has anyone implemented this in java before, or have any suggestions on how to get voice and video chat to work?
Upvotes: 1
Views: 5048
Reputation: 11469
smackx-jingle is obsolete and very unlikely to work. You might want to look at these instead:
https://code.google.com/p/jitsi-jingle/
https://code.google.com/p/minijingle/
Upvotes: 1
Reputation: 24262
What you are looking for is smackx-jingle, which is part of the standard smack distribution.
There are test cases you may want to take a look at to help you figure out how to use it. Unfortunately, the author of that extension did not provide documentation for the API.
Upvotes: 1