bytedance / ByteX

ByteX is a bytecode plugin platform based on Android Gradle Transform API and ASM. 字节码插件开发平台
Apache License 2.0
3.13k stars 462 forks source link

常量内联 NoSuchFieldError #148

Open lkang08 opened 2 years ago

lkang08 commented 2 years ago

加入常量内联后,kotlin中val定义的常量会找不到,const val定义的就没问题

TellH commented 1 year ago

val定义的常量是怎么写的? 可以给个example吗

lkang08 commented 1 year ago

val test = 123 const test1 = 456 上面这种写法定义的常量会找不到,下面这种写法的没问题