Reputation: 994
I want to invite Facebook users. I used below code it is working fine for below android version 6.0. It is performing facebook login after login it is not displaying the friend's list.
Here is my code
if (AppInviteDialog.canShow()) {
AppInviteContent content = new AppInviteContent.Builder()
.setApplinkUrl(appLinkUrl)
.setPreviewImageUrl("http://app.tweakvideos.com/image")
.build();
AppInviteDialog.show(this, content);
}
Please help me to resolve this issue.
Upvotes: 2
Views: 238