I ran into the same problem, this is how I solved it for me. The solution was to add .setApplicationName ("application name")
FacebookDialog shareDialog = new FacebookDialog.ShareDialogBuilder(activity)
.setLink("https://www.google.com")
.setApplicationName("name of app")
.build();
uiHelper.trackPendingDialogCall(shareDialog.present());
source
share