FBlackBox / BlackBox

BlackBox is a virtual engine, it can clone and run virtual application on Android, users don't have to install APK file to run the application on devices. BlackBox control all virtual applications, so you can do anything you want by using BlackBox.
2.28k stars 631 forks source link

[BUG] #137

Open User404User opened 2 years ago

User404User commented 2 years ago

Describe the bug / 无法从虚拟机内应用唤起手机安装的微信 A clear and concise description of what the bug is. 子程序里面调用唤起微信app代码无效

子程序里面调用微信代码示例: Intent v0 = new Intent(); ComponentName v1_1 = new ComponentName("com.tencent.mm", "com.tencent.mm.ui.LauncherUI"); v0.setAction("android.intent.action.MAIN"); v0.addCategory("android.intent.category.LAUNCHER"); v0.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); v0.setComponent(v1_1); XXXXXXActivity.this.startActivity(v0);

预期行为:打开手机微信

BUG:没有启动微信。启动的子程序里面调用无效。blackBox的代码调用能正常启动,预计没有hook到这个启动方法,相关参数被忽略了