My android application uses jtwitter and the api.twitter.com host is not displayed
Twitter twitter = new Twitter("user", "pass");
System.out.println(twitter.getStatus("somebody"));
twitter.setStatus("my stat");
But the Java desktop application works very well. What is the problem with Android? I added even use - INTERNET permission
source
share