Share Plugin allows sharing of text and images on Android platform.
For iOS version, visit https://github.com/cengiz-pz/godot-ios-share-plugin .
Follow instructions on the following page to create a custom Android gradle build
There are 2 ways to install the Share
plugin into your project:
- Through the Godot Editor's AssetLib
- Manually by downloading archives from Github
Steps:
- search for and select the
Share
plugin in Godot Editor - click
Download
button - on the installation dialog...
- keep
Change Install Folder
setting pointing to your project's root directory - keep
Ignore asset root
checkbox checked - click
Install
button
- keep
- enable the plugin via the
Plugins
tab ofProject->Project Settings...
menu, in the Godot Editor
Steps:
- download release archive from Github
- unzip the release archive
- copy to your Godot project's root directory
- enable the plugin via the
Plugins
tab ofProject->Project Settings...
menu, in the Godot Editor
Add a Share
node to your scene and follow the following steps:
- use one of the following methods of the
Share
node to share text or images: -share_text(title, subject, content)
-share_image(full_path_for_saved_image_file, title, subject, content)
- Note that the image you want to share must be saved under theuser://
virtual directory in order to be accessible. TheOS.get_user_data_dir()
method can be used to get the absolute path for theuser://
directory. See the implementation ofshare_viewport()
method for sample code. -share_viewport(viewport, title, subject, content)
adb logcat
is one of the best tools for troubleshooting unexpected behavior
- use
$> adb logcat | grep 'godot'
on Linuxadb logcat *:W
to see warnings and errorsadb logcat *:E
to see only errorsadb logcat | grep 'godot|somethingElse'
to filter using more than one string at the same time
- use
#> adb.exe logcat | select-string "godot"
on powershell (Windows)
Also check out: https://docs.godotengine.org/en/stable/tutorials/platform/android/android_plugin.html#troubleshooting
Based on Shin-NiL's Godot Share plugin
Developed by Cengiz
Original repository: Godot Android Share Plugin