diff --git a/xposed/src/main/cpp/clover.cpp b/xposed/src/main/cpp/clover.cpp index d2f91d3..b57fcf8 100644 --- a/xposed/src/main/cpp/clover.cpp +++ b/xposed/src/main/cpp/clover.cpp @@ -71,6 +71,7 @@ int fake_system_property_get(const char *name, char *value) { || strstr(value, "unknown") || strstr(value, "emulator") || strstr(value, "vbox") + || strstr(value, "nox") //部分NoxAppPlayer || strstr(value, "genymotion") || strstr(value, "goldfish")) { strcpy(value, "qcom"); @@ -99,6 +100,14 @@ FILE* fake_fopen(const char *filename, const char *mode) { if (strstr(filename, "libndk.so")) { LOGI("[Shamrock] bypass emu detection"); return nullptr; + } + if (strstr(filename, "libnoxd.so")) { //NoxAppPlayer + LOGI("[Shamrock] bypass emu detection"); + return nullptr; + } + if (strstr(filename, "libnoxspeedup.so")) { //NoxAppPlayer + LOGI("[Shamrock] bypass emu detection"); + return nullptr; } if (strstr(filename, "libdobby.so")) { LOGI("[Shamrock] bypass dobby detection");