Reputation: 307
I was using below code for app invitation.
if (AppInviteDialog.canShow()) {
AppInviteContent content = new AppInviteContent.Builder()
.setApplinkUrl(appLinkUrl)
.setPreviewImageUrl(previewImageUrl)
.build();
AppInviteDialog.show(this, content);
}
every time i run code i got nothing. no error or no warning nothing
I followed App invite link but get no result after facebook login screen. Any idea what wrong with this?
Upvotes: 0
Views: 720