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.23k stars 620 forks source link

[Other]有人知道如何实现监控虚拟app的打开相机拍照行为吗 #179

Open xyylb opened 4 months ago

xyylb commented 4 months ago
            //打开相机程序 Open the camera program
            Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
            startActivity(intent);

假如虚拟app里有这行代码,黑盒如何监控这个行为呢 If there is this line of code in the virtual app, how can the black box monitor this behavior

Monster-GM commented 2 months ago

简单,在startactivity代理里面过滤就可以