I have a app that recieve a dex file from server then save it on sdcard and load it for
doing some functions.I am loading a my app\'s class from my dex file as followi
@zohreh Replace the below line
final DexClassLoader classloader = new DexClassLoader(libPath, tmpDir.getAbsolutePath(), null, this.getClass().getClassLoader());
to
final DexClassLoader classloader = new DexClassLoader(libPath, tmpDir.getAbsolutePath(), null, ClassLoader.getSystemClassLoader());