I have a project on Android, which needs to use asmack library to enable real time chat.
The key feature is reconnecting mechanism, that means my application can rec
Use the latest smack api - I am using 4.1.0
Then set up re-connection like below:
ReconnectionManager manager = ReconnectionManager.getInstanceFor(connection); manager.enableAutomaticReconnection();
It will automatically re-connect as described Here