我想在我的项目中使用最新版本的smack 4.0.0 for xmpp with android studio 0.6.0,代码如下:
try{
ConnectionConfiguration config = new ConnectionConfiguration("wooxonline.com",4000);
XMPPConnection connection = new XMPPTCPConnection(config);
connection.connect();
connection.login("cliff","cliff123");
}
catch (SmackException e) {
e.printStackTrace();
}
catch (java.io.IOException e)
{
e.printStackTrace();
}
catch (XMPPException e) {
e.printStackTrace();
Log.i(TAG, "login failed!");
}
这几乎就像带有smack示例代码的示例,但是我有一个无法解决的编译问题,如下面的跟踪信息:
Error:(58, 29) error: cannot access SaslException
class file for javax.security.sasl.SaslException not found
我被困在这里,任何人都可以帮忙看看?