mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-14 10:58:59 -04:00
552 B
552 B
applyTo
| applyTo |
|---|
| **/androidMain/**/*.kt |
Android Source-Set Rules
- This is
androidMain— Android framework imports (android.*,java.*) are allowed here. - Do NOT put business logic here. Business logic belongs in
commonMain. - If you find identical pure-Kotlin logic in both
androidMainandjvmMain, extract it tocommonMain. - Use
expect/actualonly for small platform primitives. Prefer interfaces + DI. - Keep
expectdeclarations inFileIo.ktand shared helpers inFileIoUtils.ktto avoid JVM duplicate class errors.