An open API service indexing awesome lists of open source software.

https://github.com/vladleesi/kmp-sharekit

Kotlin multiplatform library that implements content sharing for Android & iOS platforms. Share text, images, and video seamlessly.
https://github.com/vladleesi/kmp-sharekit

kotlin kotlin-android kotlin-ios kotlin-multiplatform kotlin-multiplatform-library shared-library

Last synced: 8 months ago
JSON representation

Kotlin multiplatform library that implements content sharing for Android & iOS platforms. Share text, images, and video seamlessly.

Awesome Lists containing this project

README

          

# KMP-ShareKit

[![License: MIT](https://img.shields.io/badge/License-Apache%202.0-brightgreen.svg?style=flat-square)](LICENSE)

### Overview

Kotlin multiplatform library that implements content sharing for Android & iOS platforms. Share text, images, and video seamlessly.

| Content type | Status |
|----------|--------|
| text/plain | ✅ |
| text/html | 👷 |
| image/* | 👷 |
| video/* | 👷 |

### Getting Started

#### Android

You need to implement the 'activityProvider' to provide the required Activity.

```kotlin
// MainActivity.kt

ShareKit.setActivityProvider { return@setActivityProvider this }
```

### Usage

```kotlin
ShareKit.shareText(text)
```