Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theolm/Rinku
Deep Link Handling for Kotlin Multiplatform
https://github.com/theolm/Rinku
android compose-multiplatform deeplink deeplink-navigation deeplinks ios kmm kmm-library kmp kotlin-multiplatform
Last synced: 2 months ago
JSON representation
Deep Link Handling for Kotlin Multiplatform
- Host: GitHub
- URL: https://github.com/theolm/Rinku
- Owner: theolm
- License: mit
- Created: 2024-04-02T21:14:05.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-11-08T13:09:33.000Z (2 months ago)
- Last Synced: 2024-11-08T14:22:19.437Z (2 months ago)
- Topics: android, compose-multiplatform, deeplink, deeplink-navigation, deeplinks, ios, kmm, kmm-library, kmp, kotlin-multiplatform
- Language: Kotlin
- Homepage:
- Size: 9.33 MB
- Stars: 109
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-list - theolm/Rinku - Deep Link Handling for Kotlin Multiplatform (Kotlin)
- kmp-awesome - Rinku - Deep Link Handling for Kotlin Multiplatform (Libraries / 🏗 Architecture)
README
# Rinku: Deep Link Handling for Kotlin Multiplatform
[![Maven Central](https://img.shields.io/maven-central/v/dev.theolm/rinku)](https://mvnrepository.com/artifact/dev.theolm)
[![Kotlin](https://img.shields.io/badge/kotlin-2.0.21-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/theolm/rinku)
[![GitHub License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://opensource.org/licenses/MIT)Rinku is a lightweight Kotlin Multiplatform library designed to simplify deep link handling across iOS and Android platforms. By abstracting platform-specific details, Rinku enables developers to manage deep links in a unified manner, enhancing code reuse and maintaining consistency across platforms.
## Core Features
- **Unified Deep Link Management:** Architect your deep link logic once, and execute seamlessly across iOS and Android platforms.
- **Simplified Integration:** Designed for rapid setup with minimal configuration requirements, ensuring a smooth start.
- **Universal Compatibility with Navigation Libraries:** Rinku's architecture is designed for compatibility with any navigation library. It delegates the parsing and navigation logic to the application, permitting seamless integration and enhanced flexibility.## Getting Started
### Prerequisites
- Kotlin Multiplatform project setup
- For Android: Minimum SDK version 22
- For iOS: iOS 13.0 or later### Installation Process
The library is available via Maven Central
```kt
implementation("dev.theolm:rinku:")
implementation("dev.theolm:rinku-compose-ext:")
```#### Gradle Configuration
In your `build.gradle.kts` file you need to:
- Include Rinku in commonMain as an api (this is required to export it to iOS)
- If you are using Compose multiplatform, also include the compose-extensions
- Export the lib in the ios frameworkExample:
```kt
kotlin {
...
listOf(
iosX64(),
iosArm64(),
iosSimulatorArm64()
// Specify iOS targets
).forEach { iosTarget ->
iosTarget.binaries.framework {
// Export of Rinku library to the iOS framework
export("dev.theolm:rinku:")
...
}
}
...
sourceSets {
commonMain.dependencies {
api("dev.theolm:rinku:")// For compose multiplatform projects
implementation("dev.theolm:rinku-compose-ext:")
}
}
}
```#### Initial Setup
This guide presupposes the prior configuration of deeplinks within the native platforms:- [Android deeplink](https://developer.android.com/training/app-links/deep-linking?hl=pt-br)
- [iOS URL scheme](https://developer.apple.com/documentation/xcode/defining-a-custom-url-scheme-for-your-app)
- [iOS universal link](https://developer.apple.com/documentation/xcode/supporting-universal-links-in-your-app)### Android setup
The library provides two types of initialization (KMP only and Compose), you should use the one that fit your needs.#### KMP only
On the Android app, inside the `onCreate`, call the extension `RinkuInit()`.
```kt
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
RinkuInit()
setContent {
App()
}
}
}
```#### With Compose multiplatform
First make sure you included the `rinku-compose-ext`in your `commonMain`.
On the Android app inside the `setContent` use `ComponentActivity.Riku` extension to wrap the root of your app.```kt
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)setContent {
Rinku {
App()
}
}
}
}
```### iOS setup
For the iOS platform, deep links are processed within the AppDelegate or SceneDelegate, contingent on the project's configuration. The primary objective is to intercept the platform-specific deep link and relay it as an argument to Rinku's handleDeepLink(url) method.
Example within AppDelegate:
```swift
@UIApplicationMain
class AppDelegate: NSObject, UIApplicationDelegate {
...
// Provide deepLinkFilter and deepLinkMapper if needed
let rinku = RinkuIos.init(deepLinkFilter: nil, deepLinkMapper: nil)
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
rinku.onDeepLinkReceived(url: url.absoluteString)
return true
}
func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
if userActivity.activityType == NSUserActivityTypeBrowsingWeb, let url = userActivity.webpageURL {
let urlString = url.absoluteString
rinku.onDeepLinkReceived(userActivity: userActivity)
}
return true
}
...
}
```### Common setup
In the common code you just need to listen to the deeplinks and treat them as you need. Once the application (Android or iOS) recieves a deeplink it will parse it into a `Deeplink` data class and pass it into the listener. Use the listener that suite your project.#### Using Compose
Example RootApp in commonMain:
```kt
@Composable
fun RootApp() {
var deepLink by remember { mutableStateOf(null) }
DeepLinkListener { deepLink = it }
MainScreen(deepLink)
}
```#### KMP only
Just use the suspend function `listenForDeepLinks` and react as you will.Example inside a Decompose component:
```kt
class AppComponentImpl(
private val initialStack: List = emptyList(),
componentContext: ComponentContext,
) : AppComponent, ComponentContext by componentContext {
private val navigation = StackNavigation()init {
launch { initDeepLinkListener() }
}private suspend fun initDeepLinkListener() {
listenForDeepLinks {
navigation.replaceAll(
*it.toScreenStack().toTypedArray()
)
}
}
}```
### Firing Internal Deep Links with Rinku
Rinku simplifies the process of triggering internal deep links directly from your common Kotlin Multiplatform (KMP) code. This feature allows you to easily navigate within your application using a unified approach across all platforms.#### Triggering a Deep Link
To invoke an internal deep link within your application, use the handleDeepLink method provided by Rinku. This method accepts a single parameter: the URL of the deep link you wish to trigger.```kt
Rinku.handleDeepLink("https://test.deeplink/path?query=true")
```
In this example, https://test.deeplink/path?query=true represents the URL of the deep link. The URL scheme, path, and query parameters should be replaced with values that are relevant to your application's routing structure.By leveraging Rinku's handleDeepLink method, you can enhance your application's navigation capabilities, making it easier to programmatically direct users to specific areas of your app from shared KMP code.
### Type-safe parameters
Rinku supports get and create typesafe parameters leveraging the kotlinx-serialization. In order to use the following functions the app/module needs to setup [kotlinx-serialization](https://github.com/Kotlin/kotlinx.serialization).### Getting parameters
Use the `DeepLink` extension ` DeepLink.getParameter` and pass the key of the argument in the URL query and the KSerializer of the correspoinding kotlin class.example:
```kt
@Serializable
data class Name(val name: String)fun example() {
val url = "https://theolm/dev/path?test={"name": "Theo"}"
val deepLink = DeepLink(url)val param : Name = deepLink.getParameter(name = "wrong name", kSerializer = Name.serializer())
}```
### Build a URL using Serializable classes
Rinku also provides the helper funcion `Rinku.buildUrl` that facilitates the creation of internal deeplinks with parameters. In order to do that you first need to create the URL and fire the deeplink.example:
```kt
@Serializable
data class Name(val name: String)fun example() {
val testModel = Name("Testing")
val testParam = DeepLinkParam(
"testParam",
testModel,
Name.serializer()
)
val url = Rinku.buildUrl(TestUrl, testParam)
Rinku.handleDeepLink(url)
}
```### Internal deeplink filter
Rinku provides a simple way to filter unwanted external deeplinks.
Instead of filter deeplinks providing specific paths in the AndroidManifest and info.plist you implment the interface `DeepLinkFilter` and pass it into Rinku initialization. With this configuration, when the app recieves a not valid deeplink rinku is not going to handle it. This is usefull to block internal deeplinks from external access without having to include it in platform specific configuration.### Deeplink mapper
This feature is used to map external deeplinks into internal deeplinks.
Use case 1: Android and ios application has different deeplinks registered in marketing campaigns. The mapper can be used to map the external deeplink to unique internal deeplink, and the application can handle the deeplink accordingly in a unified way.
Use case 2: External deeplink does not have the full path to represent a valid stack. Use the mapper to provide the full stack.```kt
// External deeplink rinku://dev.theolm/screenC/
// The deeplink is missing A and B// Implement and pass the mapper into Rinku init. This way the external deeplink will be mapped and can be handle in the commonMain.
object ExampleMapper : DeepLinkMapper {
override fun map(url: String): String {
return if (url == "rinku://dev.theolm/screenC/") {
return "rinku://dev.theolm/screenA/screenB/screenC/"
} else {
url
}
}
}
```## Demonstrative Samples
The library includes two illustrative examples utilizing the foremost multiplatform navigation libraries: [Voyager](https://voyager.adriel.cafe/) and [Decompose](https://github.com/arkivanov/Decompose)- [Voyager sample](https://github.com/theolm/Rinku/tree/main/samples/voyager)
- [Decompose sample](https://github.com/theolm/Rinku/tree/main/samples/decompose)*Note: Only the Voyager sample includes an iOS application. Nonetheless, the setup for Decompose would mirror that of Voyager.*
*Note 2: Both examples are using Compose multiplatform.*
## License
Rinku is released under the MIT License. See the LICENSE file for more details.