I need to share a video Uri to tik-tok, instagram, youtube where I am able to share to instagram and youtube by just putting Intent.EXTRA_STREAM, but this is not working for tik-tok. our gallery app can share data to tik-tok so it is damn possible to do so.
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.putExtra(Intent.EXTRA_STREAM, mediaUri);
sharingIntent.setType("video/*");
sharingIntent.setPackage("com.zhiliaoapp.musically");
startActivity(sharingIntent);
just opening tik-tok app, not redirecting to the sharing procedure, can be compared with gallery