@[Toc](Kotlin Platform declaration clash: The following declarations have the same JVM signature (getCoresSelection()Lcom/mozhimen/emulatork/basic/core/CoresSelection;)😃
解决方案
检查该类中是不是声明了val xxx 和 getxxx
例如:
class Example{
val name = ""
fun getName() {
return ""
}
}