I have implemented AppInviteInvitation today with Android and can succesfully send an invite but when the recipient tries to press the install button within the invite they are taken to plus.google.com in their device browser.
Am I doing something wrong?
private void onInviteClicked() {
Intent intent = new AppInviteInvitation.IntentBuilder("Invite")
.setMessage("Download")
.setCallToActionText("Install")
.build();
final int REQUEST_INVITE = 0;
startActivityForResult(intent, REQUEST_INVITE);
}