BlackBox icon indicating copy to clipboard operation
BlackBox copied to clipboard

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, s...

Results 10 BlackBox issues
Sort by recently updated
recently updated
newest added

京东不能调用微信。存在小概率闪退

bug

problem: app like lucky patcher cannot detect app that installed using VirtualApk framework ![Screenshot_2022-06-14-17-55-24-70](https://user-images.githubusercontent.com/50813528/173562049-b557c21e-60a7-4cc9-b471-26f2c007fd5e.jpg) (See ap with trash icon and uninstalled for user mark) solution: ????? my idea: add ability...

**Describe the bug** / **描述一下这个错误** A clear and concise description of what the bug is. 清晰而简明地描述什么是错误。 安卓9上应用运行久了,出现同应用多进程和ANR,你知道怎么修复吗 **To Reproduce** / **复现步骤** Steps to reproduce the behavior: 1. Go to '...'...

bug

是否能增加暗黑模式

**problem** user may don't want to download 2 apps at once only for supporting both architecture **idea / solution** hey why not make framework app like pararell space or make...

**Is your feature request related to a problem? Please describe.** / **你的功能请求是否与问题有关?请描述。** i don't want to disable permission from bb itself if possible please make such feature available to per...

**Is your feature request related to a problem? Please describe.** / **你的功能请求是否与问题有关?请描述。** hi why not installing microg instead of official one when user switch gms on setting? official one have...

**Describe the bug** / **描述一下这个错误** app called activity launcher will always crashed during loading list app **To Reproduce** / **复现步骤** Steps to reproduce the behavior: 1. install the activity launcher...

bug

Before you submit any issues, please follow the requirements below. 1. Make sure you are using the newest release version. 2. Detect the issue is caused by Xposed Module or...

[Bcore/src/main/cpp/JniHook/JniHook.cpp](https://github.com/refgd/BlackBox/commit/2c75ca2524185705b602cc2797da7047abd764c9#diff-97543e83ad926cc3bed9726d8afa5708f433f73c9747fcd0480a13b073f110fd) // 不检查系统包 if (!strncmp(class_name, "android.", 8) && !CheckFlags(artMethod)) { ALOGE("check flags error. class:%s, method:%s", class_name, method_name); return; } 这个是只CheckFlags以"android."打头的包啊? blackbox里面的程序都运行不起来,改成if (strncmp(class_name, "android.", 8) && !CheckFlags(artMethod)) { 发现就可以了。