在调试模式下:在android电子邮件阅读应用程序中找不到源

时间:2013-05-11 15:31:37

标签: android

Properties props = System.getProperties();
Session session = Session.getDefaultInstance(props, null);
Store store;
store = session.getStore("imaps");
store.connect("imap.gmail.com", user, password);

我正在尝试编写一个可以阅读Gmail电子邮件的Android应用。当我在调试模式下使用它时,当我跳过时,我收到错误“source not found”:

store.connect("imap.gmail.com", user, password); 

我真的不知道接下来该做什么。我需要链接到特定的库吗?

以下是我的代码在调试模式下的屏幕截图,该行上有一个断点,将触发此错误: enter image description here

现在我点击了F5,我收到以下错误:

enter image description here

0 个答案:

没有答案