Current behavior:
When using a custom annotation @WebDeepLink defined with @DeepLinkSpec and KSP, the deep link documentation is not generated for the specified prefixes.
Expected behavior:
The deep link documentation should be generated correctly based on the prefixes defined in the @WebDeepLink annotation.
Steps to reproduce:
- Project Setup:
- KSP version:
1.9.24-1.0.20
- DeepLinkDispatch version:
6.2.2
- Kotlin 1.9.24
- AGP 8.6.1
- Custom Annotation Code:
@DeepLinkSpec(
prefix = [
"https://a.co.kr",
"https://a.b.net",
"https://c.b.net"
]
)
annotation class WebDeepLink(vararg val value: String)