From 2a5030431bad826695ac10ced529b8ad2e44434d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Bautista=20Fern=C3=A1ndez?= Date: Mon, 20 Jul 2026 10:22:10 +0200 Subject: [PATCH] fix(android): break literal /* in KDoc that unclosed the comment Kotlin nests block comments, so the literal `audio/*` text inside a KDoc comment opened a phantom nested comment. The closing */ two lines later closed that nested one instead, leaving the real KDoc open for the rest of the file and breaking release compilation. --- .../src/main/kotlin/es/freetimelab/pluriwave/MainActivity.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/src/main/kotlin/es/freetimelab/pluriwave/MainActivity.kt b/android/app/src/main/kotlin/es/freetimelab/pluriwave/MainActivity.kt index 207d7ab..8194710 100644 --- a/android/app/src/main/kotlin/es/freetimelab/pluriwave/MainActivity.kt +++ b/android/app/src/main/kotlin/es/freetimelab/pluriwave/MainActivity.kt @@ -380,7 +380,7 @@ class MainActivity : AudioServiceActivity() { * static review only — Design "Lazy per-folder enumeration, never an * eager tree dump"): [parentDocumentId] blank means the tree root * itself, otherwise the given subfolder's documentId. Filters files to - * `audio/*` MIME at the native layer (lean payload); each returned row + * audio MIME types at the native layer (lean payload); each returned row * also carries `mime` so the Dart side can re-validate via * `esArchivoAudio` (defense-in-depth). Any query failure degrades to an * empty list rather than throwing.