I am using the Facebook Android SDK. Is there an easy way to get a user\'s friends who have downloaded the app? For example, the app Draw Something implements this. I can\'t
I implemented it in this way
Bundle params = new Bundle();
params.putString("fields", "name, picture, location, installed");
And during displaying of the items on the list,in the getView() method i did this
boolean b = jsonObject.getBoolean("installed");
if (b){
Log.d("VIVEK",jsonObject.getString("name"));
}