MCPcopy Index your code
hub / github.com/buildyourwebapp/tauri-plugin-sharesheet

github.com/buildyourwebapp/tauri-plugin-sharesheet @v0.0.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.0.1 ↗ · + Follow
19 symbols 31 edges 13 files 6 documented · 32%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Share content to other apps via the Android Sharesheet or iOS Share Pane.

Install

This plugin requires a Rust version of at least 1.65

There are three general methods of installation that we can recommend.

  1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked)
  2. Pull sources directly from Github using git tags / revision hashes (most secure)
  3. Git submodule install this repo in your tauri project and then use file protocol to ingest the source (most secure, but inconvenient to use)

Install the Core plugin by adding the following to your Cargo.toml file:

src-tauri/Cargo.toml

[dependencies]
tauri-plugin-sharesheet = "0.0.1"
  # alternatively with Git:
tauri-plugin-sharesheet = { git = "https://github.com/buildyourwebapp/tauri-plugin-sharesheet" }

You can install the JavaScript Guest bindings using your preferred JavaScript package manager:

Note: Since most JavaScript package managers are unable to install packages from git monorepos we provide read-only mirrors of each plugin. This makes installation option 2 more ergonomic to use.

pnpm add @buildyourwebapp/tauri-plugin-sharesheet
# or
npm add @buildyourwebapp/tauri-plugin-sharesheet
# or
yarn add @buildyourwebapp/tauri-plugin-sharesheet

# alternatively with Git:
pnpm add https://github.com/buildyourwebapp/tauri-plugin-sharesheet
# or
npm add https://github.com/buildyourwebapp/tauri-plugin-sharesheet
# or
yarn add https://github.com/buildyourwebapp/tauri-plugin-sharesheet

Usage

First you need to register the core plugin with Tauri:

src-tauri/src/main.rs

fn main() {
    tauri::Builder::default()
        .plugin(tauri_plugin_sharesheet::init())
        .run(tauri::generate_context!())
        .expect("error while running tauri application");
}

Afterwards all the plugin's APIs are available through the JavaScript guest bindings:

import { shareText } from "@buildyourwebapp/tauri-plugin-sharesheet";
shareText('Tauri is great!');

Contributing

PRs accepted. Please make sure to read the Contributing Guide before making a pull request.

License

MIT or APACHE-2.0

Extension points exported contracts — how you extend this code

SharesheetExt (Interface)
Extensions to [`tauri::App`], [`tauri::AppHandle`], [`tauri::WebviewWindow`], [`tauri::Webview`] and [`tauri::Window`] t [1 …
src/lib.rs
SharesheetOptions (Interface)
(no doc)
guest-js/index.ts

Core symbols most depended-on inside this repo

createConfig
called by 1
rollup.config.base.js
main
called by 0
build.rs
shareText
called by 0
android/src/main/java/SharesheetPlugin.kt
shareText
called by 0
guest-js/index.ts
share_text
called by 0
src/lib.rs
init
called by 0
src/lib.rs
serialize
called by 0
src/error.rs

Shape

Class 7
Method 5
Function 4
Interface 2
Enum 1

Languages

Rust47%
Kotlin37%
TypeScript16%

Modules by API surface

src/lib.rs4 symbols
android/src/main/java/SharesheetPlugin.kt3 symbols
src/models.rs2 symbols
src/error.rs2 symbols
guest-js/index.ts2 symbols
android/src/test/java/ExampleUnitTest.kt2 symbols
android/src/androidTest/java/ExampleInstrumentedTest.kt2 symbols
rollup.config.base.js1 symbols
build.rs1 symbols

For agents

$ claude mcp add tauri-plugin-sharesheet \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact