We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/sample/main 中的main-plugin-a可以调用 main-plugin-b不可以,在写插件apk有什么特殊配置吗? 为什么我写的调用不了,报No Class Foud Exception
`` // zhangjie1980 重命名 loadPluginActivityClass -> loadPluginClass private Class loadPluginClass(ClassLoader classLoader, String className) { Class clazz = null; try { clazz = Class.forName(className, true, classLoader); } catch (ClassNotFoundException e) { e.printStackTrace(); }
return clazz; }
The text was updated successfully, but these errors were encountered:
我也是这样,擦
Sorry, something went wrong.
请问楼主解决了吗 我也遇到了
No branches or pull requests
/sample/main 中的main-plugin-a可以调用
main-plugin-b不可以,在写插件apk有什么特殊配置吗?
为什么我写的调用不了,报No Class Foud Exception
`` // zhangjie1980 重命名 loadPluginActivityClass -> loadPluginClass
private Class loadPluginClass(ClassLoader classLoader, String className) { Class clazz = null;
try {
clazz = Class.forName(className, true, classLoader);
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
The text was updated successfully, but these errors were encountered: