不支持ksp吗
kapt 迁移到 ksp后,发现 controller注解没生效。 都是提示 The resource [/xxxxx] is not found.
不太了解,我了解一下看看!
kapt 迁移到 ksp后,发现 controller注解没生效。 都是提示 The resource [/xxxxx] is not found.
遇到一样的问题, 我项目迁移到agp8.0之后, 共用kapt和ksp, 明明AndServer还是用kapt的, 但是跑项目全部接口都是404, 找不到接口, 目前找不到问题所在(WebSocket服务回调正常的, 项目也有自动生成ControllerAdapter文件, 但是请求找不到接口)
遇到同样问题,agp8.1.4,报The resource [/xxxxx] is not found.
工程build.gradle
classpath 'com.android.tools.build:gradle:8.1.4' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21" classpath "io.objectbox:objectbox-gradle-plugin:3.6.0" classpath 'com.yanzhenjie.andserver:plugin:2.1.12'
应用build.gradle
implementation 'com.yanzhenjie.andserver:api:2.1.12' annotationProcessor 'com.yanzhenjie.andserver:processor:2.1.12'