18 questions
1 vote
0 answers
40 views
Android app not appearing in share sheet for URL sharing
I am unable to share a URL with my app because the app doesn't appear in the share sheet when I test it on Google Chrome and Firefox. The relevant snippet for the AndroidManifest.xml is as follows: ...
1 vote
0 answers
89 views
How to remove quick share targets from Android (11) share sheet?
share sheet example Disabling android.permission.BIND_CHOOSER_TARGET_SERVICE From apps services isn't working. Share targets still appears in share sheet. So how to block them or remove the quick ...
0 votes
4 answers
163 views
Android share sheet does not display video preview
My app captures a video and saves it to disk using MediaStore. Then, it shares the video using the Android's default share sheet. The code is as following: private fun shareMediaItem(uri: Uri) { ...
1 vote
1 answer
159 views
ShareSheet Broadcast Receiver doesn't fire
Trying to implement an Android share sheet, and following the official docs. The sheet comes up and the sharing works as expected. However, the broadcast receiver never fires. Here is the code: In the ...
2 votes
1 answer
1k views
Android 14 flag mutable
I'm working to support android 14 in a certain app, i'm having one issue with android native share sheet, since we have a pending intent with FLAG_MUTABLE, i'm getting this error 2023-10-16 14:23:20....
0 votes
2 answers
289 views
Copy text event from Android share sheet
We wanted to detect if user clicked on copy option available on android share sheet. Is it possible? We want to do it for tracking purposes.
6 votes
3 answers
6k views
How to show React Native App in share sheet suggestions?
I want to use Share functionally in my React Native application but there is one exception, I don't want to share a content from my app, I want to share content from another app to my app, how is it ...
1 vote
2 answers
1k views
Is it possible to create a custom share sheet in Flutter?
I want to build this custom share sheet shown in the screenshot depending on the apps that are on the mobile, could anyone tell me if it's possible? screenshot i am currently using flutter's ...
2 votes
0 answers
179 views
Is there a way to track when the "Copy" link button is tapped in the Android system share sheet?
Does anyone know if it's possible to track when the "Copy" link button is tapped in the Android system share sheet? Using an IntentSender and extracting the chosen component from the result ...
0 votes
1 answer
1k views
Android sharesheet download file after destination selection
I have the code below to share a video file (.mp4) using an Android Sharesheet. The code works ok and the video does get shared but I have a few issues that do not meet my requirements. I was hoping ...
2 votes
0 answers
1k views
How do I add app to share menu for iOS/Android
I'm trying to add my app to the list of available shares for other apps, and I wanted to make sure I had it right. The documentation doesn't explicitly state this, and I really want to be sure of what ...
1 vote
1 answer
895 views
Share Video Preview Image using ACTION_SEND with Android Sharesheet
Since Android 10+, the Android Sharesheet has supported providing image previews of files shared using ACTION_SEND. Making a custom ActivityResultContract with the Android documentation for sending ...
0 votes
1 answer
769 views
Android: How to hide activity (or make it transparent) while showing a bottom sheet?
I'm a newbie to Android programming. I'm building an app with sharing feature as the first picture. When the user shares a file, I want to show the bottom sheet menu as dialog like the 2nd picture. ...
1 vote
1 answer
954 views
how to remove or change icon from share sheet android
I want remove or add the app icon to be shown when sharing inside my app. When clicking the Share the App button in my App. It works but in some samsungs device it visible icon. It shows like Below ...
1 vote
0 answers
224 views
Is it possible to only show your app as a receiver in the share sheet for a certain number of attachments for Android?
Hi I want my app to show in the share sheet only if the user has selected 5 or less files but I am not sure if that is possible. So far I have the following code in the manifest so that my app will ...