Hi all
How to share my app from app to social media ?
I used same this code but the app stop :
How to share my app from app to social media ?
I used same this code but the app stop :
B4X:
Dim ShareIt As Intent
ShareIt.Initialize (ShareIt.ACTION_SEND,"")
ShareIt.SetType ("text/plain")
ShareIt.PutExtra ("android.intent.extra.TEXT","Download at Google Play: https://play.google.com/store/apps/details?id=YOUR_PACKAGE")
ShareIt.PutExtra ("android.intent.extra.SUBJECT","YOUR SUBJECT")
ShareIt.WrapAsIntentChooser("Share Application Via...")
StartActivity (ShareIt)