Files
obsidian-vault/personal/projects/reflect-skip-fuse.md
T
Alexey Martemyanov 2ccb7e0a4a [2026-05-29] wiki/ cleanup: move files to vault, drop stale duplicates
- wiki/tech/ → family/how-to/ (15 files, no duplicates existed)
- wiki/{concepts,comparisons,root}/ → personal/projects/personal-os/ (22 files)
- wiki/tech/media-pipeline-pitfalls.md → personal/projects/
- wiki/tech/reflect-skip-fuse.md → personal/projects/
- wiki/ddg-asana-workflow.md → work/
- wiki/user-profile.md → personal/
- Dropped 11 files: vault versions are newer/bigger (xgimi, htpc-steam,
  vault-strategy, executor-orchestrator, executor-security-incident,
  kraken-media-stack, library-app, psychologist-app, raw/processed/, log, index)

4 files pending review (wiki version larger than vault original):
htpc-magic4pc, tv-luna-send, wireguard-vpn, watchlist-automation
2026-05-29 15:27:36 +06:00

1005 B

title, created, updated, type, namespace, tags, related
title created updated type namespace tags related
Reflect — Skip Fuse (SwiftUI/Kotlin) 2026-05-23 2026-05-23 tech personal
reflect
swift
kotlin
ios
android
pitfalls
entities/psychologist-app
tech/gitea-config

Reflect — Skip Fuse (SwiftUI/Kotlin)

Key Pitfall

When adding a new SwiftUI View to the Reflect iOS codebase, Skip Fuse does not auto-generate the Kotlin counterpart. A manual Kotlin stub is required in 2 places:

  1. The View class file in the Android module
  2. The registration/factory in the Android navigation/router

Why

Skip Fuse transpiles shared SwiftUI code to Kotlin, but new View types require explicit Kotlin stubs until Skip's transpilation coverage catches up.

Checklist for New SwiftUI Views

  • Add SwiftUI view as normal in iOS target
  • Create matching Kotlin stub in android/src/.../views/
  • Register in Android router/factory
  • Run ./gradlew build to verify no missing class errors