darvincisec / DetectFrida

Detect Frida for Android
MIT License
665 stars 138 forks source link

Is it possible to support arm64-v8a device? #10

Closed moosecow closed 3 years ago

moosecow commented 3 years ago

Galaxy S6 Edge Plus is not working. My system is arm64-v8a. Help me.

스크린샷 2021-04-02 오후 4 05 31
barkatthemoon18 commented 3 years ago

Did you add the NDK architecture filter in build.gradle? Like this.

imagen

moosecow commented 3 years ago

Yes, I added it. I'll attach the error log below, please.

C/C++ Configuration Problem native-lib | debug | arm64-v8a Cannot run program "/Users/kim/Downloads/DetectFrida-master/app/src/main/c/../../../../../o-llvm-binary/ollvm-tll/build/bin_Darwin/clang" (in directory "/Users/kim/Downloads/DetectFrida-master/app/.cxx/cmake/debug/arm64-v8a"): error=2, No such file or directory

스크린샷 2021-04-06 오전 12 13 01

barkatthemoon18 commented 3 years ago

Well, that's due to the absence of the obfuscator binaries. Remove it from the CMakeLists.txt and rebuild the project. Or you could use the obfuscator (ollvm-tll) by building it from the original project.

moosecow commented 3 years ago

Thank you for your kind explanation. I'll try again