Share Image to Snapchat
02:29 06 Nov 2020

I want to share image to snapchat but giving me "Sorry! You can only share images and videos" I tried this code but doesnt work Android share image on snapchat

I have this intent

    Intent intent = new Intent(Intent.ACTION_SEND);
    intent.setType("*/*");
    intent.setPackage("com.snapchat.android");
    int n = Integer.parseInt(number.getText().toString());
    Uri uri = Uri.fromFile(new File(db.getimage(n))); //This is retrieving the Uri path from DB
    intent.putExtra(Intent.EXTRA_STREAM, uri);
    startActivity(Intent.createChooser(intent, "Open Snapchat"));
java android snapchat