I am trying to develop an application in which I want to use refer/invite friend
option just like in whats-app through the phone contact list.
Like this:
I don't understand how to make it.
I am trying to develop an application in which I want to use refer/invite friend
option just like in whats-app through the phone contact list.
Like this:
I don't understand how to make it.
You can use Android's ShareCompat
for this:
ShareCompat.IntentBuilder
.from(this)
.setText("Check out a new app: https://play.google.com/store/apps/details?id=<your-package>")
.setType("text/plain")
.setChooserTitle("Share with your friends")
.startChooser();