我正在尝试在运行时从外部.dex文件动态加载类,如下所示,但android studio显示编译错误,因为找不到com.anotherapp.TestClass。我该怎么办? (com.anotherapp.TestClass在classes.dex文件中)
PathClassLoader plc = new PathClassLoader("/data/local/tmp/classes.dex",getApplicationContext().getClassLoader().getParent());
plc.loadClass("com.anotherapp.TestClass");