mirror of
https://github.com/openflocon/Flocon.git
synced 2026-05-17 06:55:48 +00:00
Some checks are pending
docs / deploy (push) Waiting to run
Co-authored-by: Florent Champigny <florent@bere.al>
1.1 KiB
1.1 KiB
🔗 Deeplink Launcher (android only)
Flocon includes a deeplink runner, which lists all the deeplinks supported by your app (either auto-discovered or manually registered).
From the desktop UI, you can:
- Browse available deeplinks
- Enter parameters interactively
- Execute deeplinks directly on the device
- Instantly navigate to specific app screens
No more typing long adb shell am start commands — Flocon makes deeplink testing accessible and efficient.
You can configure deeplinks directly from your Android code!
floconDeeplink {
deeplink("flocon://home")
deeplink("flocon://test")
deeplink(
"flocon://user/[userId]",
label = "User",
parameters = {
"userId" withAutoComplete listOf("Florent", "David", "Guillaume")
}
)
deeplink(
"flocon://post/[postId]?comment=[commentText]",
label = "Post",
description = "Open a post and send a comment"
)
}