ReconnectionManager in asmack
问题 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 reconnect automatically whenever the internet connection loses. Here is my code snippet: ConnectionConfiguration connConfig = new ConnectionConfiguration(HOST, PORT); connConfig.setSASLAuthenticationEnabled(true); connConfig.setReconnectionAllowed(true); XMPPConnection connection = new XMPPConnection(connConfig); But I got this error