I am integrating Facebook sdk in my android app very first time... I am having some issues with getting my facebook profile picture into my app.
Here is onSuccess Callback method:
public void onSuccess(LoginResult loginResult) {
Profile profile = Profile.getCurrentProfile();
if(profile != null) {
Log.v("Logged In Message", profile.getName());
imageView.setImageURI(profile.getProfilePictureUri(50, 50));
}
}
Issue is that I am getting correct name but not profile Image...
Any Help would be appreciated