I want to share my app's play store link via whats app using android share intent .. i am able to share the url and when we click on it it will redirect to the play store .. but i want to share the links as hyperlink . the sharing content also contain image and other text...
here is my code
intentBuilder = ShareCompat.IntentBuilder.from((Activity) mContext)
.setType("image/*")
.setText(mContext.getString(R.string.dont_you_wanna_try) +
mContext.getString(R.string.get_auspex_now)+mContext.getString(R.string.auspex_link))
.addStream(uri);