@Configuration
@Import(UserpassportConfig::class)
class UvdConfig
您好,我在gradle命令中遇到了问题:“gradlew clean build”-我收到此错误:
e: config\UvdConfig.kt: (5, 22): Unresolved reference: userpassport
e: config\UvdConfig.kt: (12, 9): Unresolved reference: UserpassportConfig
e: config\UvdConfig.kt: (12, 9): An annotation argument must be a compile-time constant
你有什么解决办法吗?
最佳答案
将我的分析从评论转换为答案,这样就不会没有答案就悬而未决:
我认为问题的根源体现在以下错误行:e: config\UvdConfig.kt: (5, 22): Unresolved reference: userpassport
。显然UserpassportConfig
所在的软件包不在您的构建路径上。因此,该类未正确导入,这会导致您以后看到错误。