callback to Google Play from Facebook post made my Android app -
callback to Google Play from Facebook post made my Android app -
i inquire little bit of help. developing native android application able post image using called 'android share extension'. works perfectly, , image appearing in user's timeline.
i expecting name of application appear , redirect alternative google play when user (which not have app installed) clicks post.
i think should utilize app link, cannot find out how implement this. currently, posting image this:
uri myimagecontenturi = .... string myappid = "my app id"; intent shareintent = new intent(); shareintent.setaction(intent.action_send); shareintent.settype("image/*"); shareintent.putextra(intent.extra_stream, myimagecontenturi); shareintent.putextra("com.facebook.platform.extra.application_id", myappid); startactivityforresult(intent.createchooser(shareintent, "share"), myrequestid);
what have link google play (or app if it's installed)?
android facebook android-intent
Comments
Post a Comment