hello :wave: any hints on how to configure graalvm...
# getting-started
d
hello 👋 any hints on how to configure graalvm so it can find
kotlin.Any
? getting following 😞
Copy code
Built-in class kotlin.Any is not found
solved 1
doh
for anyone else looking into this -> make sure to enable metadata repository in your native image compilation
Copy code
metadataRepository {
     enabled.set(true)
 }