Describe the current problem and the solution you would like
Currently, the Share extension in GMEXT-MobileUtils only allows sharing either text or a file, but not both together. This creates a limitation when developers want to provide richer share options, such as sending a message body along with an attached file (e.g., text + PDF, text + image, text + file).
New Path for this type of share is "text/image"
I want to request Official support for sharing text and files in a single call.
A possible implementation could be:
Keep the existing MIME body argument for text.
Introduce a new argument, e.g., fileName or filePath, for the file to be shared.
Function will look like MobileUtils_Share_Open(Title, Path, BodyText, FileName)
The share intent would then bundle both text + file when invoked.
Added a Working Extension file for reference.
ShareExtension.zip
Describe the current problem and the solution you would like
Currently, the Share extension in GMEXT-MobileUtils only allows sharing either text or a file, but not both together. This creates a limitation when developers want to provide richer share options, such as sending a message body along with an attached file (e.g., text + PDF, text + image, text + file).
New Path for this type of share is "text/image"
I want to request Official support for sharing text and files in a single call.
A possible implementation could be:
Keep the existing MIME body argument for text.
Introduce a new argument, e.g., fileName or filePath, for the file to be shared.
Function will look like MobileUtils_Share_Open(Title, Path, BodyText, FileName)
The share intent would then bundle both text + file when invoked.
Added a Working Extension file for reference.
ShareExtension.zip