ClassNotFoundException rises from Custom Android Version (i.e., AOSP) when using DexClassLoader
I want to call my kotlin library inside Android using DexClassLoader after converting my library & its dependencies jar files to dex files using d8 tool.
The d8 tool is able to compile the library without any warnings but the dexClassLoader can't find kotlin.jvm.internal.Intrinsics class which I made sure it's there when I opened the dex files in Android Studio.
Can someone help me?