├── .github └── workflows │ └── publish-packages.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── android ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro ├── settings.gradle └── src │ ├── androidTest │ └── java │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── SharesheetPlugin.kt │ └── test │ └── java │ └── ExampleUnitTest.kt ├── api-iife.js ├── eslint.config.js ├── guest-js └── index.ts ├── ios ├── .gitignore ├── Package.swift ├── README.md ├── Sources │ └── SharesheetPlugin.swift └── Tests │ └── PluginTests │ └── PluginTests.swift ├── package.json ├── permissions ├── autogenerated │ ├── commands │ │ └── share_text.toml │ └── reference.md ├── default.toml └── schemas │ └── schema.json ├── pnpm-lock.yaml ├── rollup.config.base.js ├── rollup.config.js ├── src ├── error.rs ├── lib.rs └── models.rs ├── tsconfig.base.json └── tsconfig.json /.github/workflows/publish-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/.github/workflows/publish-packages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /.tauri 3 | -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/src/androidTest/java/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/android/src/androidTest/java/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/SharesheetPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/android/src/main/java/SharesheetPlugin.kt -------------------------------------------------------------------------------- /android/src/test/java/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/android/src/test/java/ExampleUnitTest.kt -------------------------------------------------------------------------------- /api-iife.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/api-iife.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/eslint.config.js -------------------------------------------------------------------------------- /guest-js/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/guest-js/index.ts -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/ios/Package.swift -------------------------------------------------------------------------------- /ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/ios/README.md -------------------------------------------------------------------------------- /ios/Sources/SharesheetPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/ios/Sources/SharesheetPlugin.swift -------------------------------------------------------------------------------- /ios/Tests/PluginTests/PluginTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/ios/Tests/PluginTests/PluginTests.swift -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/package.json -------------------------------------------------------------------------------- /permissions/autogenerated/commands/share_text.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/permissions/autogenerated/commands/share_text.toml -------------------------------------------------------------------------------- /permissions/autogenerated/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/permissions/autogenerated/reference.md -------------------------------------------------------------------------------- /permissions/default.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/permissions/default.toml -------------------------------------------------------------------------------- /permissions/schemas/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/permissions/schemas/schema.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/rollup.config.base.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/src/models.rs -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildyourwebapp/tauri-plugin-sharesheet/HEAD/tsconfig.json --------------------------------------------------------------------------------