Problem
app/app/src/main/kotlin/com/diegoz/a2uiconcierge/credential/CredentialService.kt is still in the repo, but it's dead code — PR #5 (KMP migration) moved all Android code to app/shared/src/androidMain/... and app/androidApp/.... The new module layout doesn't include app/app/ at all.
The active file lives at app/shared/src/androidMain/kotlin/com/diegoz/a2uiconcierge/credential/CredentialService.kt.
Why it's harmless today
app/androidApp/build.gradle.kts only sees :shared + its own src/. The orphan in app/app/ isn't compiled, packaged, or shipped — just confusing.
Fix
```
git rm app/app/src/main/kotlin/com/diegoz/a2uiconcierge/credential/CredentialService.kt
```
Probably worth checking the rest of app/app/ for other orphan files PR #5 forgot.
Caught by
PR #4 rebase — when looking at credential flow code, found two copies and traced lineage.
Problem
app/app/src/main/kotlin/com/diegoz/a2uiconcierge/credential/CredentialService.ktis still in the repo, but it's dead code — PR #5 (KMP migration) moved all Android code toapp/shared/src/androidMain/...andapp/androidApp/.... The new module layout doesn't includeapp/app/at all.The active file lives at
app/shared/src/androidMain/kotlin/com/diegoz/a2uiconcierge/credential/CredentialService.kt.Why it's harmless today
app/androidApp/build.gradle.ktsonly sees:shared+ its ownsrc/. The orphan inapp/app/isn't compiled, packaged, or shipped — just confusing.Fix
```
git rm app/app/src/main/kotlin/com/diegoz/a2uiconcierge/credential/CredentialService.kt
```
Probably worth checking the rest of
app/app/for other orphan files PR #5 forgot.Caught by
PR #4 rebase — when looking at credential flow code, found two copies and traced lineage.