从应用程序中的外部dex文件动态加载类的编译错误

时间:2018-08-10 17:29:43

标签: java android class compiler-errors

我正在尝试在运行时从外部.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");

0 个答案:

没有答案