How can I shadow and relocate reflect correctly? I...
# getting-started
s
How can I shadow and relocate reflect correctly? I tried relocating the kotlin to kotlin1910. But makes kotlin reflect can't find
kotlin1910.kotlin1910_builtins
. Then, I added custom transformers for avoiding
shadow
relocate the
.kotlin_builtins
constant in kotlin reflect. And relocate the
kotlin/kotlin.kotlin_builtins
to
kotlin1910/kotlin1910.kotlin_builtins
But the reflect can't find the builtin class
AssertionError: Built-in class kotlin1910.Any is not found
The two files are same
1
The problem is shadow can't relocating builtin classes. How could I relocating them?