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
你好, 请问下, 使用方式 if(PluginManager.isInstalled("xxxx")){ Intent launchIntent = getPackageManager().getLaunchIntentForPackage("xxxxx"); startActivity(launchIntent); }else{ ToastUtils.showShort(this, "插件安装中..."); PluginManager.installPlugin("/sdcard/xxxx.apk"); ToastUtils.showShort(this, "插件安装完毕..."); }
[PluginDescriptor.matchPlugin() line 553] >>>[暂时不考虑不同的插件中配置了相同类全名的组件的问题, 先到先得
宿主app 是一个demo, 然后加载一个app(独立apk)
The text was updated successfully, but these errors were encountered:
调试了下, 插件目标intent 匹配成功了, 但就是没跳转
Sorry, something went wrong.
我遇到了和你一样的问题,你之前是怎么解决的啊
请问解决了吗
这个要看日志了。 需要说明的是,这个框架不是用来做沙盒运行任意三方app的,readme里面有说明,如果想做类似平行空间的产品,这个框架不合适。
No branches or pull requests
你好, 请问下,
使用方式
if(PluginManager.isInstalled("xxxx")){
Intent launchIntent = getPackageManager().getLaunchIntentForPackage("xxxxx");
startActivity(launchIntent);
}else{
ToastUtils.showShort(this, "插件安装中...");
PluginManager.installPlugin("/sdcard/xxxx.apk");
ToastUtils.showShort(this, "插件安装完毕...");
}
[PluginDescriptor.matchPlugin() line 553]
>>>[暂时不考虑不同的插件中配置了相同类全名的组件的问题, 先到先得
宿主app 是一个demo, 然后加载一个app(独立apk)
The text was updated successfully, but these errors were encountered: