As the title reads, I am unsure how to add a share function to my Android app, and my brother tells me older methods of Facebook sharing are no longer officially supported, so the older tutorials are effectively out of date? As a result I can't find any up-to-date tutorials on how to use the Facebook SDK & add a share function.
The Facebook dev site may prove useful once I wrap my head more around Android developing (I'm still new), but in the meanwhile, does anyone have any links to up-to-date tutorials (text or video) on how to add a Facebook share option?
Why don't you use the official developers site of Facebook?
Pretty easy to find something on it.
https://developers.facebook.com/docs/android/share << On this site you can learn how to share.
The keypart is this:
FacebookDialog shareDialog = new FacebookDialog.ShareDialogBuilder(this)
.setLink("https://developers.facebook.com/android")
.build();
uiHelper.trackPendingDialogCall(shareDialog.present());
Don't forget to download and add the sdk to your application: https://developers.facebook.com/docs/android/
Good luck, if you need any explanation write a comment to this answer.