Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm writing an app to add an IMAP/POP3 account programmatically. The problem is, I can't get it displayed in the Accounts&Sync Settings.

   Account account = new Account(context);
   account.se;
   account.setDescription("acc added thr prog"); 
   account.setAutomaticCheckIntervalMinutes(10);
   account.setEmail("UserName@gmail.com");
   account.setDraftsFolderName("Drafts");
   account.setOutboxFolderName("OutBox");
   account.setSentFolderName("Sent");
   account.setTrashFolderName("Trash");
   account.setName("Tester");
   account.setNotifyNewMail(true);
   account.setSenderUri(mContext,"smtp+ssl+://UserName%40gmail.com:Password@smtp.gmail.com");
   mAccount.setStoreUri(mContext,"imap+ssl+://UserName%40gmail.com:Password@imap.gmail.com");
   account.setDeletePolicy(10); 
   account.setVibrate(true);
   mPrefer = Preferences.getPreferences(getInstrumentation().getContext()); 
   account.save(mPrefer);
   Object mInstrumenatation;
   Email.setServicesEnabled(mInstrumenatation.getTargetContext());   

Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.