readMapXml(InputStream in) throws XmlPullParserException, java.io.IOException {
11 | return null;
12 | }
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat/src/main/java/com/swift/sandhook/xposedcompat/hookstub/CallOriginCallBack.java:
--------------------------------------------------------------------------------
1 | package com.swift.sandhook.xposedcompat.hookstub;
2 |
3 | public interface CallOriginCallBack {
4 | long call(long... args) throws Throwable;
5 | }
6 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat/src/main/java/com/swift/sandhook/xposedcompat/methodgen/ErrorCatch.java:
--------------------------------------------------------------------------------
1 | package com.swift.sandhook.xposedcompat.methodgen;
2 |
3 | import android.util.Log;
4 |
5 | import com.swift.sandhook.SandHook;
6 | import com.swift.sandhook.xposedcompat.XposedCompat;
7 |
8 | import java.lang.reflect.Member;
9 | import java.lang.reflect.Method;
10 |
11 | public class ErrorCatch {
12 |
13 | public static Object callOriginError(Member originMethod, Method backupMethod, Object thiz, Object[] args) throws Throwable {
14 | if (XposedCompat.retryWhenCallOriginError) {
15 | Log.w("SandHook", "method <" + originMethod.toString() + "> use invoke to call origin!");
16 | return SandHook.callOriginMethod(originMethod, backupMethod, thiz, args);
17 | } else {
18 | return null;
19 | }
20 | }
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat/src/main/java/com/swift/sandhook/xposedcompat/methodgen/HookMaker.java:
--------------------------------------------------------------------------------
1 | package com.swift.sandhook.xposedcompat.methodgen;
2 |
3 | import java.lang.reflect.Member;
4 | import java.lang.reflect.Method;
5 |
6 | import de.robv.android.xposed.XposedBridge;
7 |
8 | public interface HookMaker {
9 | void start(Member member, XposedBridge.AdditionalHookInfo hookInfo,
10 | ClassLoader appClassLoader, String dexDirPath) throws Exception;
11 | Method getHookMethod();
12 | Method getBackupMethod();
13 | Method getCallBackupMethod();
14 | }
15 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat/src/main/java/de/robv/android/xposed/IXposedMod.java:
--------------------------------------------------------------------------------
1 | package de.robv.android.xposed;
2 |
3 | /** Marker interface for Xposed modules. Cannot be implemented directly. */
4 | /* package */ interface IXposedMod {}
5 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat/src/main/java/de/robv/android/xposed/callbacks/IXUnhook.java:
--------------------------------------------------------------------------------
1 | package de.robv.android.xposed.callbacks;
2 |
3 | import de.robv.android.xposed.IXposedHookZygoteInit;
4 |
5 | /**
6 | * Interface for objects that can be used to remove callbacks.
7 | *
8 | * Just like hooking methods etc., unhooking applies only to the current process.
9 | * In other process (or when the app is removed from memory and then restarted), the hook will still
10 | * be active. The Zygote process (see {@link IXposedHookZygoteInit}) is an exception, the hook won't
11 | * be inherited by any future processes forked from it in the future.
12 | *
13 | * @param The class of the callback.
14 | */
15 | public interface IXUnhook {
16 | /**
17 | * Returns the callback that has been registered.
18 | */
19 | T getCallback();
20 |
21 | /**
22 | * Removes the callback.
23 | */
24 | void unhook();
25 | }
26 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat/src/main/java/de/robv/android/xposed/callbacks/package-info.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Contains the base classes for callbacks.
3 | *
4 | * For historical reasons, {@link de.robv.android.xposed.MIK_MethodHk} and
5 | * {@link de.robv.android.xposed.XC_MethodReplacement} are directly in the
6 | * {@code de.robv.android.xposed} package.
7 | */
8 | package de.robv.android.xposed.callbacks;
9 |
10 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | xposedcompat
3 |
4 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
22 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/cpp/libffi/arm/internal.h:
--------------------------------------------------------------------------------
1 | #ifdef __arm__
2 |
3 | #define ARM_TYPE_VFP_S 0
4 | #define ARM_TYPE_VFP_D 1
5 | #define ARM_TYPE_VFP_N 2
6 | #define ARM_TYPE_INT64 3
7 | #define ARM_TYPE_INT 4
8 | #define ARM_TYPE_VOID 5
9 | #define ARM_TYPE_STRUCT 6
10 |
11 |
12 | #endif
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/cpp/libffi/ffi.h:
--------------------------------------------------------------------------------
1 | #ifdef __aarch64__
2 |
3 | #include
4 |
5 |
6 | #endif
7 | #ifdef __i386__
8 |
9 | #include
10 |
11 |
12 | #endif
13 | #ifdef __arm__
14 |
15 | #include
16 |
17 |
18 | #endif
19 | #ifdef __x86_64__
20 |
21 | #include
22 |
23 |
24 | #endif
25 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/cpp/libffi/fficonfig.h:
--------------------------------------------------------------------------------
1 | #if defined(__aarch64__) || defined(__arm64__)
2 | #include
3 |
4 |
5 | #endif
6 | #ifdef __i386__
7 |
8 | #include
9 |
10 |
11 | #endif
12 | #ifdef __arm__
13 |
14 | #include
15 |
16 |
17 | #endif
18 | #ifdef __x86_64__
19 |
20 | #include
21 | #endif
22 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/cpp/libffi/ffitarget.h:
--------------------------------------------------------------------------------
1 | #ifdef __aarch64__
2 |
3 | #include
4 |
5 |
6 | #endif
7 | #ifdef __i386__
8 |
9 | #include
10 |
11 |
12 | #endif
13 | #ifdef __arm__
14 |
15 | #include
16 |
17 |
18 | #endif
19 | #ifdef __x86_64__
20 |
21 | #include
22 |
23 |
24 | #endif
25 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/java/com/android/internal/util/XmlUtils.java:
--------------------------------------------------------------------------------
1 | package com.android.internal.util;
2 |
3 | import org.xmlpull.v1.XmlPullParserException;
4 |
5 | import java.io.InputStream;
6 | import java.util.HashMap;
7 |
8 | public class XmlUtils {
9 |
10 | public static final HashMap readMapXml(InputStream in) throws XmlPullParserException, java.io.IOException {
11 | return null;
12 | }
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/java/com/swift/sandhook/xposedcompat/HookInfo.java:
--------------------------------------------------------------------------------
1 | package com.swift.sandhook.xposedcompat;
2 |
3 | import java.lang.reflect.Member;
4 | import java.lang.reflect.Method;
5 |
6 | import de.robv.android.xposed.XposedBridge;
7 |
8 | /**
9 | * @author Swift Gan
10 | * Create: 2019/6/3
11 | * Desc:
12 | */
13 | public class HookInfo {
14 | public Member origin;
15 | public Method hook;
16 | public Method backup;
17 | public XposedBridge.AdditionalHookInfo additionalHookInfo;
18 | }
19 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/java/de/robv/android/xposed/IXposedMod.java:
--------------------------------------------------------------------------------
1 | package de.robv.android.xposed;
2 |
3 | /** Marker interface for Xposed modules. Cannot be implemented directly. */
4 | /* package */ interface IXposedMod {}
5 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/java/de/robv/android/xposed/callbacks/IXUnhook.java:
--------------------------------------------------------------------------------
1 | package de.robv.android.xposed.callbacks;
2 |
3 | import de.robv.android.xposed.IXposedHookZygoteInit;
4 |
5 | /**
6 | * Interface for objects that can be used to remove callbacks.
7 | *
8 | * Just like hooking methods etc., unhooking applies only to the current process.
9 | * In other process (or when the app is removed from memory and then restarted), the hook will still
10 | * be active. The Zygote process (see {@link IXposedHookZygoteInit}) is an exception, the hook won't
11 | * be inherited by any future processes forked from it in the future.
12 | *
13 | * @param The class of the callback.
14 | */
15 | public interface IXUnhook {
16 | /**
17 | * Returns the callback that has been registered.
18 | */
19 | T getCallback();
20 |
21 | /**
22 | * Removes the callback.
23 | */
24 | void unhook();
25 | }
26 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/java/de/robv/android/xposed/callbacks/package-info.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Contains the base classes for callbacks.
3 | *
4 | * For historical reasons, {@link de.robv.android.xposed.MIK_MethodHk} and
5 | * {@link de.robv.android.xposed.XC_MethodReplacement} are directly in the
6 | * {@code de.robv.android.xposed} package.
7 | */
8 | package de.robv.android.xposed.callbacks;
9 |
10 |
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/jniLibs/arm64-v8a/libsandhook-native.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/MikSdHook/xposedcompat_new/src/main/jniLibs/arm64-v8a/libsandhook-native.so
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/jniLibs/armeabi-v7a/libsandhook-native.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/MikSdHook/xposedcompat_new/src/main/jniLibs/armeabi-v7a/libsandhook-native.so
--------------------------------------------------------------------------------
/MikSdHook/xposedcompat_new/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | xposedcompat_new
3 |
4 |
--------------------------------------------------------------------------------
/app/.cxx/abi_configuration_4c11233e.json:
--------------------------------------------------------------------------------
1 | {
2 | "allAbis": [
3 | "armeabi-v7a",
4 | "arm64-v8a",
5 | "x86",
6 | "x86_64"
7 | ],
8 | "validAbis": [
9 | "ARM64_V8A"
10 | ]
11 | }
--------------------------------------------------------------------------------
/app/.cxx/abi_configuration_4c11233e.log:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "level": "INFO",
4 | "message": "ABIs [arm64-v8a,armeabi-v7a,armeabi] set by \u0027android.injected.build.abi\u0027 gradle flag contained \u0027ARMEABI\u0027 not targeted by this project."
5 | }
6 | ]
--------------------------------------------------------------------------------
/app/.cxx/abi_configuration_4c11233e_key.json:
--------------------------------------------------------------------------------
1 | {
2 | "ndkHandlerSupportedAbis": [
3 | "ARMEABI_V7A",
4 | "ARM64_V8A",
5 | "X86",
6 | "X86_64"
7 | ],
8 | "ndkHandlerDefaultAbis": [
9 | "ARMEABI_V7A",
10 | "ARM64_V8A",
11 | "X86",
12 | "X86_64"
13 | ],
14 | "externalNativeBuildAbiFilters": [],
15 | "ndkConfigAbiFilters": [],
16 | "splitsFilterAbis": [],
17 | "ideBuildOnlyTargetAbi": true,
18 | "ideBuildTargetAbi": "arm64-v8a,armeabi-v7a,armeabi"
19 | }
--------------------------------------------------------------------------------
/app/.cxx/abi_configuration_4o5p5x6f.json:
--------------------------------------------------------------------------------
1 | {
2 | "allAbis": [
3 | "armeabi-v7a",
4 | "arm64-v8a",
5 | "x86",
6 | "x86_64"
7 | ],
8 | "validAbis": [
9 | "ARMEABI_V7A",
10 | "ARM64_V8A",
11 | "X86",
12 | "X86_64"
13 | ]
14 | }
--------------------------------------------------------------------------------
/app/.cxx/abi_configuration_4o5p5x6f.log:
--------------------------------------------------------------------------------
1 | []
--------------------------------------------------------------------------------
/app/.cxx/abi_configuration_4o5p5x6f_key.json:
--------------------------------------------------------------------------------
1 | {
2 | "ndkHandlerSupportedAbis": [
3 | "ARMEABI_V7A",
4 | "ARM64_V8A",
5 | "X86",
6 | "X86_64"
7 | ],
8 | "ndkHandlerDefaultAbis": [
9 | "ARMEABI_V7A",
10 | "ARM64_V8A",
11 | "X86",
12 | "X86_64"
13 | ],
14 | "externalNativeBuildAbiFilters": [],
15 | "ndkConfigAbiFilters": [],
16 | "splitsFilterAbis": [],
17 | "ideBuildOnlyTargetAbi": true
18 | }
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/.ninja_deps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/arm64-v8a/.ninja_deps
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/.ninja_log:
--------------------------------------------------------------------------------
1 | # ninja log v5
2 | 0 238 1647307684 CMakeFiles/native-lib.dir/native-lib.cpp.o 2387df7268cee098
3 | 238 319 1647307684 /Users/king/git_src/MikSandHook/app/build/intermediates/cmake/debug/obj/arm64-v8a/libnative-lib.so 8412bc37a751dfbc
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeSystem.cmake:
--------------------------------------------------------------------------------
1 | set(CMAKE_HOST_SYSTEM "Darwin-21.1.0")
2 | set(CMAKE_HOST_SYSTEM_NAME "Darwin")
3 | set(CMAKE_HOST_SYSTEM_VERSION "21.1.0")
4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
5 |
6 | include("/Users/king/Library/Android/sdk/ndk/21.1.6352462/build/cmake/android.toolchain.cmake")
7 |
8 | set(CMAKE_SYSTEM "Android-1")
9 | set(CMAKE_SYSTEM_NAME "Android")
10 | set(CMAKE_SYSTEM_VERSION "1")
11 | set(CMAKE_SYSTEM_PROCESSOR "aarch64")
12 |
13 | set(CMAKE_CROSSCOMPILING "TRUE")
14 |
15 | set(CMAKE_SYSTEM_LOADED 1)
16 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/TargetDirectories.txt:
--------------------------------------------------------------------------------
1 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/rebuild_cache.dir
2 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/edit_cache.dir
3 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/native-lib.dir
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/cmake.check_cache:
--------------------------------------------------------------------------------
1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file
2 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.c:
--------------------------------------------------------------------------------
1 |
2 | const char features[] = {"\n"
3 | "C_FEATURE:"
4 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304
5 | "1"
6 | #else
7 | "0"
8 | #endif
9 | "c_function_prototypes\n"
10 | "C_FEATURE:"
11 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
12 | "1"
13 | #else
14 | "0"
15 | #endif
16 | "c_restrict\n"
17 | "C_FEATURE:"
18 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
19 | "1"
20 | #else
21 | "0"
22 | #endif
23 | "c_static_assert\n"
24 | "C_FEATURE:"
25 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
26 | "1"
27 | #else
28 | "0"
29 | #endif
30 | "c_variadic_macros\n"
31 |
32 | };
33 |
34 | int main(int argc, char** argv) { (void)argv; return features[argc]; }
35 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/native-lib.dir/native-lib.cpp.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/arm64-v8a/CMakeFiles/native-lib.dir/native-lib.cpp.o
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/android_gradle_build_native-lib_arm64-v8a.command.txt:
--------------------------------------------------------------------------------
1 | Executable : /Users/king/Library/Android/sdk/cmake/3.10.2.4988404/bin/ninja
2 | arguments :
3 | -C
4 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/arm64-v8a
5 | native-lib
6 | jvmArgs :
7 |
8 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/android_gradle_build_native-lib_arm64-v8a.stderr.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/arm64-v8a/android_gradle_build_native-lib_arm64-v8a.stderr.txt
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/android_gradle_build_native-lib_arm64-v8a.stdout.txt:
--------------------------------------------------------------------------------
1 | ninja: Entering directory `/Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/arm64-v8a'
2 | [1/2] Building CXX object CMakeFiles/native-lib.dir/native-lib.cpp.o
3 | [2/2] Linking CXX shared library /Users/king/git_src/MikSandHook/app/build/intermediates/cmake/debug/obj/arm64-v8a/libnative-lib.so
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/build_output.txt:
--------------------------------------------------------------------------------
1 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang
2 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -- works
3 | Detecting C compiler ABI info
4 | Detecting C compiler ABI info - done
5 | Detecting C compile features
6 | Detecting C compile features - done
7 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++
8 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ -- works
9 | Detecting CXX compiler ABI info
10 | Detecting CXX compiler ABI info - done
11 | Detecting CXX compile features
12 | Detecting CXX compile features - done
13 | Configuring done
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/compile_commands.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "directory": "/Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/arm64-v8a",
4 | "command": "/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android28 --gcc-toolchain=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64 --sysroot=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dnative_lib_EXPORTS -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -std=c++11 -O0 -fno-limit-debug-info -fPIC -o CMakeFiles/native-lib.dir/native-lib.cpp.o -c /Users/king/git_src/MikSandHook/app/src/main/cpp/native-lib.cpp",
5 | "file": "/Users/king/git_src/MikSandHook/app/src/main/cpp/native-lib.cpp"
6 | }
7 | ]
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/arm64-v8a/prefab_config.json:
--------------------------------------------------------------------------------
1 | {
2 | "enabled": false,
3 | "packages": []
4 | }
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/.ninja_deps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/armeabi-v7a/.ninja_deps
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/.ninja_log:
--------------------------------------------------------------------------------
1 | # ninja log v5
2 | 0 237 1647307684 CMakeFiles/native-lib.dir/native-lib.cpp.o cb6270dec8930c35
3 | 238 298 1647307684 /Users/king/git_src/MikSandHook/app/build/intermediates/cmake/debug/obj/armeabi-v7a/libnative-lib.so d5312e2305350c1f
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeSystem.cmake:
--------------------------------------------------------------------------------
1 | set(CMAKE_HOST_SYSTEM "Darwin-21.1.0")
2 | set(CMAKE_HOST_SYSTEM_NAME "Darwin")
3 | set(CMAKE_HOST_SYSTEM_VERSION "21.1.0")
4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
5 |
6 | include("/Users/king/Library/Android/sdk/ndk/21.1.6352462/build/cmake/android.toolchain.cmake")
7 |
8 | set(CMAKE_SYSTEM "Android-1")
9 | set(CMAKE_SYSTEM_NAME "Android")
10 | set(CMAKE_SYSTEM_VERSION "1")
11 | set(CMAKE_SYSTEM_PROCESSOR "armv7-a")
12 |
13 | set(CMAKE_CROSSCOMPILING "TRUE")
14 |
15 | set(CMAKE_SYSTEM_LOADED 1)
16 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/TargetDirectories.txt:
--------------------------------------------------------------------------------
1 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/rebuild_cache.dir
2 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/edit_cache.dir
3 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/native-lib.dir
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/cmake.check_cache:
--------------------------------------------------------------------------------
1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file
2 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.c:
--------------------------------------------------------------------------------
1 |
2 | const char features[] = {"\n"
3 | "C_FEATURE:"
4 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304
5 | "1"
6 | #else
7 | "0"
8 | #endif
9 | "c_function_prototypes\n"
10 | "C_FEATURE:"
11 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
12 | "1"
13 | #else
14 | "0"
15 | #endif
16 | "c_restrict\n"
17 | "C_FEATURE:"
18 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
19 | "1"
20 | #else
21 | "0"
22 | #endif
23 | "c_static_assert\n"
24 | "C_FEATURE:"
25 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
26 | "1"
27 | #else
28 | "0"
29 | #endif
30 | "c_variadic_macros\n"
31 |
32 | };
33 |
34 | int main(int argc, char** argv) { (void)argv; return features[argc]; }
35 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/native-lib.dir/native-lib.cpp.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/native-lib.dir/native-lib.cpp.o
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_native-lib_armeabi-v7a.command.txt:
--------------------------------------------------------------------------------
1 | Executable : /Users/king/Library/Android/sdk/cmake/3.10.2.4988404/bin/ninja
2 | arguments :
3 | -C
4 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/armeabi-v7a
5 | native-lib
6 | jvmArgs :
7 |
8 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_native-lib_armeabi-v7a.stderr.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_native-lib_armeabi-v7a.stderr.txt
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_native-lib_armeabi-v7a.stdout.txt:
--------------------------------------------------------------------------------
1 | ninja: Entering directory `/Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/armeabi-v7a'
2 | [1/2] Building CXX object CMakeFiles/native-lib.dir/native-lib.cpp.o
3 | [2/2] Linking CXX shared library /Users/king/git_src/MikSandHook/app/build/intermediates/cmake/debug/obj/armeabi-v7a/libnative-lib.so
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/build_output.txt:
--------------------------------------------------------------------------------
1 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang
2 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -- works
3 | Detecting C compiler ABI info
4 | Detecting C compiler ABI info - done
5 | Detecting C compile features
6 | Detecting C compile features - done
7 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++
8 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ -- works
9 | Detecting CXX compiler ABI info
10 | Detecting CXX compiler ABI info - done
11 | Detecting CXX compile features
12 | Detecting CXX compile features - done
13 | Configuring done
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/compile_commands.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "directory": "/Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/armeabi-v7a",
4 | "command": "/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=armv7-none-linux-androideabi28 --gcc-toolchain=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64 --sysroot=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dnative_lib_EXPORTS -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -std=c++11 -O0 -fno-limit-debug-info -fPIC -o CMakeFiles/native-lib.dir/native-lib.cpp.o -c /Users/king/git_src/MikSandHook/app/src/main/cpp/native-lib.cpp",
5 | "file": "/Users/king/git_src/MikSandHook/app/src/main/cpp/native-lib.cpp"
6 | }
7 | ]
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/armeabi-v7a/prefab_config.json:
--------------------------------------------------------------------------------
1 | {
2 | "enabled": false,
3 | "packages": []
4 | }
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/.ninja_deps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/x86/.ninja_deps
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/.ninja_log:
--------------------------------------------------------------------------------
1 | # ninja log v5
2 | 0 243 1647307684 CMakeFiles/native-lib.dir/native-lib.cpp.o ad7366674c56972
3 | 244 310 1647307684 /Users/king/git_src/MikSandHook/app/build/intermediates/cmake/debug/obj/x86/libnative-lib.so fa1b598710bb90d8
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeSystem.cmake:
--------------------------------------------------------------------------------
1 | set(CMAKE_HOST_SYSTEM "Darwin-21.1.0")
2 | set(CMAKE_HOST_SYSTEM_NAME "Darwin")
3 | set(CMAKE_HOST_SYSTEM_VERSION "21.1.0")
4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
5 |
6 | include("/Users/king/Library/Android/sdk/ndk/21.1.6352462/build/cmake/android.toolchain.cmake")
7 |
8 | set(CMAKE_SYSTEM "Android-1")
9 | set(CMAKE_SYSTEM_NAME "Android")
10 | set(CMAKE_SYSTEM_VERSION "1")
11 | set(CMAKE_SYSTEM_PROCESSOR "i686")
12 |
13 | set(CMAKE_CROSSCOMPILING "TRUE")
14 |
15 | set(CMAKE_SYSTEM_LOADED 1)
16 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/CMakeFiles/TargetDirectories.txt:
--------------------------------------------------------------------------------
1 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/x86/CMakeFiles/rebuild_cache.dir
2 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/x86/CMakeFiles/edit_cache.dir
3 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/x86/CMakeFiles/native-lib.dir
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/CMakeFiles/cmake.check_cache:
--------------------------------------------------------------------------------
1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file
2 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/CMakeFiles/feature_tests.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/x86/CMakeFiles/feature_tests.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/CMakeFiles/feature_tests.c:
--------------------------------------------------------------------------------
1 |
2 | const char features[] = {"\n"
3 | "C_FEATURE:"
4 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304
5 | "1"
6 | #else
7 | "0"
8 | #endif
9 | "c_function_prototypes\n"
10 | "C_FEATURE:"
11 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
12 | "1"
13 | #else
14 | "0"
15 | #endif
16 | "c_restrict\n"
17 | "C_FEATURE:"
18 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
19 | "1"
20 | #else
21 | "0"
22 | #endif
23 | "c_static_assert\n"
24 | "C_FEATURE:"
25 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
26 | "1"
27 | #else
28 | "0"
29 | #endif
30 | "c_variadic_macros\n"
31 |
32 | };
33 |
34 | int main(int argc, char** argv) { (void)argv; return features[argc]; }
35 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/CMakeFiles/native-lib.dir/native-lib.cpp.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/x86/CMakeFiles/native-lib.dir/native-lib.cpp.o
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/android_gradle_build_native-lib_x86.command.txt:
--------------------------------------------------------------------------------
1 | Executable : /Users/king/Library/Android/sdk/cmake/3.10.2.4988404/bin/ninja
2 | arguments :
3 | -C
4 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/x86
5 | native-lib
6 | jvmArgs :
7 |
8 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/android_gradle_build_native-lib_x86.stderr.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/x86/android_gradle_build_native-lib_x86.stderr.txt
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/android_gradle_build_native-lib_x86.stdout.txt:
--------------------------------------------------------------------------------
1 | ninja: Entering directory `/Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/x86'
2 | [1/2] Building CXX object CMakeFiles/native-lib.dir/native-lib.cpp.o
3 | [2/2] Linking CXX shared library /Users/king/git_src/MikSandHook/app/build/intermediates/cmake/debug/obj/x86/libnative-lib.so
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/build_output.txt:
--------------------------------------------------------------------------------
1 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang
2 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -- works
3 | Detecting C compiler ABI info
4 | Detecting C compiler ABI info - done
5 | Detecting C compile features
6 | Detecting C compile features - done
7 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++
8 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ -- works
9 | Detecting CXX compiler ABI info
10 | Detecting CXX compiler ABI info - done
11 | Detecting CXX compile features
12 | Detecting CXX compile features - done
13 | Configuring done
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/compile_commands.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "directory": "/Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/x86",
4 | "command": "/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android28 --gcc-toolchain=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64 --sysroot=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dnative_lib_EXPORTS -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -std=c++11 -O0 -fno-limit-debug-info -fPIC -o CMakeFiles/native-lib.dir/native-lib.cpp.o -c /Users/king/git_src/MikSandHook/app/src/main/cpp/native-lib.cpp",
5 | "file": "/Users/king/git_src/MikSandHook/app/src/main/cpp/native-lib.cpp"
6 | }
7 | ]
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86/prefab_config.json:
--------------------------------------------------------------------------------
1 | {
2 | "enabled": false,
3 | "packages": []
4 | }
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/.ninja_deps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/x86_64/.ninja_deps
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/.ninja_log:
--------------------------------------------------------------------------------
1 | # ninja log v5
2 | 0 244 1647307685 CMakeFiles/native-lib.dir/native-lib.cpp.o 92e1ce11baeb396f
3 | 244 313 1647307685 /Users/king/git_src/MikSandHook/app/build/intermediates/cmake/debug/obj/x86_64/libnative-lib.so a9dbc3096e8399b3
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/x86_64/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/x86_64/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/CMakeFiles/3.10.2/CMakeSystem.cmake:
--------------------------------------------------------------------------------
1 | set(CMAKE_HOST_SYSTEM "Darwin-21.1.0")
2 | set(CMAKE_HOST_SYSTEM_NAME "Darwin")
3 | set(CMAKE_HOST_SYSTEM_VERSION "21.1.0")
4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
5 |
6 | include("/Users/king/Library/Android/sdk/ndk/21.1.6352462/build/cmake/android.toolchain.cmake")
7 |
8 | set(CMAKE_SYSTEM "Android-1")
9 | set(CMAKE_SYSTEM_NAME "Android")
10 | set(CMAKE_SYSTEM_VERSION "1")
11 | set(CMAKE_SYSTEM_PROCESSOR "x86_64")
12 |
13 | set(CMAKE_CROSSCOMPILING "TRUE")
14 |
15 | set(CMAKE_SYSTEM_LOADED 1)
16 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/CMakeFiles/TargetDirectories.txt:
--------------------------------------------------------------------------------
1 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/x86_64/CMakeFiles/rebuild_cache.dir
2 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/x86_64/CMakeFiles/edit_cache.dir
3 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/x86_64/CMakeFiles/native-lib.dir
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/CMakeFiles/cmake.check_cache:
--------------------------------------------------------------------------------
1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file
2 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/CMakeFiles/feature_tests.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/x86_64/CMakeFiles/feature_tests.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/CMakeFiles/feature_tests.c:
--------------------------------------------------------------------------------
1 |
2 | const char features[] = {"\n"
3 | "C_FEATURE:"
4 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304
5 | "1"
6 | #else
7 | "0"
8 | #endif
9 | "c_function_prototypes\n"
10 | "C_FEATURE:"
11 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
12 | "1"
13 | #else
14 | "0"
15 | #endif
16 | "c_restrict\n"
17 | "C_FEATURE:"
18 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
19 | "1"
20 | #else
21 | "0"
22 | #endif
23 | "c_static_assert\n"
24 | "C_FEATURE:"
25 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
26 | "1"
27 | #else
28 | "0"
29 | #endif
30 | "c_variadic_macros\n"
31 |
32 | };
33 |
34 | int main(int argc, char** argv) { (void)argv; return features[argc]; }
35 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/CMakeFiles/native-lib.dir/native-lib.cpp.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/x86_64/CMakeFiles/native-lib.dir/native-lib.cpp.o
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/android_gradle_build_native-lib_x86_64.command.txt:
--------------------------------------------------------------------------------
1 | Executable : /Users/king/Library/Android/sdk/cmake/3.10.2.4988404/bin/ninja
2 | arguments :
3 | -C
4 | /Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/x86_64
5 | native-lib
6 | jvmArgs :
7 |
8 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/android_gradle_build_native-lib_x86_64.stderr.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/debug/x86_64/android_gradle_build_native-lib_x86_64.stderr.txt
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/android_gradle_build_native-lib_x86_64.stdout.txt:
--------------------------------------------------------------------------------
1 | ninja: Entering directory `/Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/x86_64'
2 | [1/2] Building CXX object CMakeFiles/native-lib.dir/native-lib.cpp.o
3 | [2/2] Linking CXX shared library /Users/king/git_src/MikSandHook/app/build/intermediates/cmake/debug/obj/x86_64/libnative-lib.so
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/build_output.txt:
--------------------------------------------------------------------------------
1 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang
2 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -- works
3 | Detecting C compiler ABI info
4 | Detecting C compiler ABI info - done
5 | Detecting C compile features
6 | Detecting C compile features - done
7 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++
8 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ -- works
9 | Detecting CXX compiler ABI info
10 | Detecting CXX compiler ABI info - done
11 | Detecting CXX compile features
12 | Detecting CXX compile features - done
13 | Configuring done
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/compile_commands.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "directory": "/Users/king/git_src/MikSandHook/app/.cxx/cmake/debug/x86_64",
4 | "command": "/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android28 --gcc-toolchain=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64 --sysroot=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dnative_lib_EXPORTS -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -std=c++11 -O0 -fno-limit-debug-info -fPIC -o CMakeFiles/native-lib.dir/native-lib.cpp.o -c /Users/king/git_src/MikSandHook/app/src/main/cpp/native-lib.cpp",
5 | "file": "/Users/king/git_src/MikSandHook/app/src/main/cpp/native-lib.cpp"
6 | }
7 | ]
--------------------------------------------------------------------------------
/app/.cxx/cmake/debug/x86_64/prefab_config.json:
--------------------------------------------------------------------------------
1 | {
2 | "enabled": false,
3 | "packages": []
4 | }
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/3.10.2/CMakeSystem.cmake:
--------------------------------------------------------------------------------
1 | set(CMAKE_HOST_SYSTEM "Darwin-21.1.0")
2 | set(CMAKE_HOST_SYSTEM_NAME "Darwin")
3 | set(CMAKE_HOST_SYSTEM_VERSION "21.1.0")
4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
5 |
6 | include("/Users/king/Library/Android/sdk/ndk/21.1.6352462/build/cmake/android.toolchain.cmake")
7 |
8 | set(CMAKE_SYSTEM "Android-1")
9 | set(CMAKE_SYSTEM_NAME "Android")
10 | set(CMAKE_SYSTEM_VERSION "1")
11 | set(CMAKE_SYSTEM_PROCESSOR "aarch64")
12 |
13 | set(CMAKE_CROSSCOMPILING "TRUE")
14 |
15 | set(CMAKE_SYSTEM_LOADED 1)
16 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/TargetDirectories.txt:
--------------------------------------------------------------------------------
1 | /Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/rebuild_cache.dir
2 | /Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/edit_cache.dir
3 | /Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/native-lib.dir
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/cmake.check_cache:
--------------------------------------------------------------------------------
1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file
2 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/feature_tests.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/feature_tests.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/arm64-v8a/CMakeFiles/feature_tests.c:
--------------------------------------------------------------------------------
1 |
2 | const char features[] = {"\n"
3 | "C_FEATURE:"
4 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304
5 | "1"
6 | #else
7 | "0"
8 | #endif
9 | "c_function_prototypes\n"
10 | "C_FEATURE:"
11 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
12 | "1"
13 | #else
14 | "0"
15 | #endif
16 | "c_restrict\n"
17 | "C_FEATURE:"
18 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
19 | "1"
20 | #else
21 | "0"
22 | #endif
23 | "c_static_assert\n"
24 | "C_FEATURE:"
25 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
26 | "1"
27 | #else
28 | "0"
29 | #endif
30 | "c_variadic_macros\n"
31 |
32 | };
33 |
34 | int main(int argc, char** argv) { (void)argv; return features[argc]; }
35 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/arm64-v8a/build_output.txt:
--------------------------------------------------------------------------------
1 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang
2 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -- works
3 | Detecting C compiler ABI info
4 | Detecting C compiler ABI info - done
5 | Detecting C compile features
6 | Detecting C compile features - done
7 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++
8 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ -- works
9 | Detecting CXX compiler ABI info
10 | Detecting CXX compiler ABI info - done
11 | Detecting CXX compile features
12 | Detecting CXX compile features - done
13 | Configuring done
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/arm64-v8a/compile_commands.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "directory": "/Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/arm64-v8a",
4 | "command": "/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android28 --gcc-toolchain=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64 --sysroot=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dnative_lib_EXPORTS -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -std=c++11 -O2 -DNDEBUG -fPIC -o CMakeFiles/native-lib.dir/native-lib.cpp.o -c /Users/king/AndroidStudioProjects/MikSandHook/app/src/main/cpp/native-lib.cpp",
5 | "file": "/Users/king/AndroidStudioProjects/MikSandHook/app/src/main/cpp/native-lib.cpp"
6 | }
7 | ]
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/arm64-v8a/prefab_config.json:
--------------------------------------------------------------------------------
1 | {
2 | "enabled": false,
3 | "packages": []
4 | }
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/3.10.2/CMakeSystem.cmake:
--------------------------------------------------------------------------------
1 | set(CMAKE_HOST_SYSTEM "Darwin-21.1.0")
2 | set(CMAKE_HOST_SYSTEM_NAME "Darwin")
3 | set(CMAKE_HOST_SYSTEM_VERSION "21.1.0")
4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
5 |
6 | include("/Users/king/Library/Android/sdk/ndk/21.1.6352462/build/cmake/android.toolchain.cmake")
7 |
8 | set(CMAKE_SYSTEM "Android-1")
9 | set(CMAKE_SYSTEM_NAME "Android")
10 | set(CMAKE_SYSTEM_VERSION "1")
11 | set(CMAKE_SYSTEM_PROCESSOR "armv7-a")
12 |
13 | set(CMAKE_CROSSCOMPILING "TRUE")
14 |
15 | set(CMAKE_SYSTEM_LOADED 1)
16 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/TargetDirectories.txt:
--------------------------------------------------------------------------------
1 | /Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/rebuild_cache.dir
2 | /Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/edit_cache.dir
3 | /Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/native-lib.dir
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/cmake.check_cache:
--------------------------------------------------------------------------------
1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file
2 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/feature_tests.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/feature_tests.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/armeabi-v7a/CMakeFiles/feature_tests.c:
--------------------------------------------------------------------------------
1 |
2 | const char features[] = {"\n"
3 | "C_FEATURE:"
4 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304
5 | "1"
6 | #else
7 | "0"
8 | #endif
9 | "c_function_prototypes\n"
10 | "C_FEATURE:"
11 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
12 | "1"
13 | #else
14 | "0"
15 | #endif
16 | "c_restrict\n"
17 | "C_FEATURE:"
18 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
19 | "1"
20 | #else
21 | "0"
22 | #endif
23 | "c_static_assert\n"
24 | "C_FEATURE:"
25 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
26 | "1"
27 | #else
28 | "0"
29 | #endif
30 | "c_variadic_macros\n"
31 |
32 | };
33 |
34 | int main(int argc, char** argv) { (void)argv; return features[argc]; }
35 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/armeabi-v7a/build_output.txt:
--------------------------------------------------------------------------------
1 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang
2 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -- works
3 | Detecting C compiler ABI info
4 | Detecting C compiler ABI info - done
5 | Detecting C compile features
6 | Detecting C compile features - done
7 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++
8 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ -- works
9 | Detecting CXX compiler ABI info
10 | Detecting CXX compiler ABI info - done
11 | Detecting CXX compile features
12 | Detecting CXX compile features - done
13 | Configuring done
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/armeabi-v7a/prefab_config.json:
--------------------------------------------------------------------------------
1 | {
2 | "enabled": false,
3 | "packages": []
4 | }
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/release/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/release/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86/CMakeFiles/3.10.2/CMakeSystem.cmake:
--------------------------------------------------------------------------------
1 | set(CMAKE_HOST_SYSTEM "Darwin-21.1.0")
2 | set(CMAKE_HOST_SYSTEM_NAME "Darwin")
3 | set(CMAKE_HOST_SYSTEM_VERSION "21.1.0")
4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
5 |
6 | include("/Users/king/Library/Android/sdk/ndk/21.1.6352462/build/cmake/android.toolchain.cmake")
7 |
8 | set(CMAKE_SYSTEM "Android-1")
9 | set(CMAKE_SYSTEM_NAME "Android")
10 | set(CMAKE_SYSTEM_VERSION "1")
11 | set(CMAKE_SYSTEM_PROCESSOR "i686")
12 |
13 | set(CMAKE_CROSSCOMPILING "TRUE")
14 |
15 | set(CMAKE_SYSTEM_LOADED 1)
16 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86/CMakeFiles/TargetDirectories.txt:
--------------------------------------------------------------------------------
1 | /Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/x86/CMakeFiles/rebuild_cache.dir
2 | /Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/x86/CMakeFiles/edit_cache.dir
3 | /Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/x86/CMakeFiles/native-lib.dir
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86/CMakeFiles/cmake.check_cache:
--------------------------------------------------------------------------------
1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file
2 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86/CMakeFiles/feature_tests.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/release/x86/CMakeFiles/feature_tests.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86/CMakeFiles/feature_tests.c:
--------------------------------------------------------------------------------
1 |
2 | const char features[] = {"\n"
3 | "C_FEATURE:"
4 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304
5 | "1"
6 | #else
7 | "0"
8 | #endif
9 | "c_function_prototypes\n"
10 | "C_FEATURE:"
11 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
12 | "1"
13 | #else
14 | "0"
15 | #endif
16 | "c_restrict\n"
17 | "C_FEATURE:"
18 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
19 | "1"
20 | #else
21 | "0"
22 | #endif
23 | "c_static_assert\n"
24 | "C_FEATURE:"
25 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
26 | "1"
27 | #else
28 | "0"
29 | #endif
30 | "c_variadic_macros\n"
31 |
32 | };
33 |
34 | int main(int argc, char** argv) { (void)argv; return features[argc]; }
35 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86/build_output.txt:
--------------------------------------------------------------------------------
1 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang
2 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -- works
3 | Detecting C compiler ABI info
4 | Detecting C compiler ABI info - done
5 | Detecting C compile features
6 | Detecting C compile features - done
7 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++
8 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ -- works
9 | Detecting CXX compiler ABI info
10 | Detecting CXX compiler ABI info - done
11 | Detecting CXX compile features
12 | Detecting CXX compile features - done
13 | Configuring done
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86/compile_commands.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "directory": "/Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/x86",
4 | "command": "/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android28 --gcc-toolchain=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64 --sysroot=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dnative_lib_EXPORTS -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -std=c++11 -O2 -DNDEBUG -fPIC -o CMakeFiles/native-lib.dir/native-lib.cpp.o -c /Users/king/AndroidStudioProjects/MikSandHook/app/src/main/cpp/native-lib.cpp",
5 | "file": "/Users/king/AndroidStudioProjects/MikSandHook/app/src/main/cpp/native-lib.cpp"
6 | }
7 | ]
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86/prefab_config.json:
--------------------------------------------------------------------------------
1 | {
2 | "enabled": false,
3 | "packages": []
4 | }
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86_64/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/release/x86_64/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86_64/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/release/x86_64/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86_64/CMakeFiles/3.10.2/CMakeSystem.cmake:
--------------------------------------------------------------------------------
1 | set(CMAKE_HOST_SYSTEM "Darwin-21.1.0")
2 | set(CMAKE_HOST_SYSTEM_NAME "Darwin")
3 | set(CMAKE_HOST_SYSTEM_VERSION "21.1.0")
4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
5 |
6 | include("/Users/king/Library/Android/sdk/ndk/21.1.6352462/build/cmake/android.toolchain.cmake")
7 |
8 | set(CMAKE_SYSTEM "Android-1")
9 | set(CMAKE_SYSTEM_NAME "Android")
10 | set(CMAKE_SYSTEM_VERSION "1")
11 | set(CMAKE_SYSTEM_PROCESSOR "x86_64")
12 |
13 | set(CMAKE_CROSSCOMPILING "TRUE")
14 |
15 | set(CMAKE_SYSTEM_LOADED 1)
16 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86_64/CMakeFiles/TargetDirectories.txt:
--------------------------------------------------------------------------------
1 | /Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/x86_64/CMakeFiles/rebuild_cache.dir
2 | /Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/x86_64/CMakeFiles/edit_cache.dir
3 | /Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/x86_64/CMakeFiles/native-lib.dir
4 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86_64/CMakeFiles/cmake.check_cache:
--------------------------------------------------------------------------------
1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file
2 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86_64/CMakeFiles/feature_tests.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/.cxx/cmake/release/x86_64/CMakeFiles/feature_tests.bin
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86_64/CMakeFiles/feature_tests.c:
--------------------------------------------------------------------------------
1 |
2 | const char features[] = {"\n"
3 | "C_FEATURE:"
4 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304
5 | "1"
6 | #else
7 | "0"
8 | #endif
9 | "c_function_prototypes\n"
10 | "C_FEATURE:"
11 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
12 | "1"
13 | #else
14 | "0"
15 | #endif
16 | "c_restrict\n"
17 | "C_FEATURE:"
18 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
19 | "1"
20 | #else
21 | "0"
22 | #endif
23 | "c_static_assert\n"
24 | "C_FEATURE:"
25 | #if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
26 | "1"
27 | #else
28 | "0"
29 | #endif
30 | "c_variadic_macros\n"
31 |
32 | };
33 |
34 | int main(int argc, char** argv) { (void)argv; return features[argc]; }
35 |
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86_64/build_output.txt:
--------------------------------------------------------------------------------
1 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang
2 | Check for working C compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -- works
3 | Detecting C compiler ABI info
4 | Detecting C compiler ABI info - done
5 | Detecting C compile features
6 | Detecting C compile features - done
7 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++
8 | Check for working CXX compiler: /Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ -- works
9 | Detecting CXX compiler ABI info
10 | Detecting CXX compiler ABI info - done
11 | Detecting CXX compile features
12 | Detecting CXX compile features - done
13 | Configuring done
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86_64/compile_commands.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "directory": "/Users/king/AndroidStudioProjects/MikSandHook/app/.cxx/cmake/release/x86_64",
4 | "command": "/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android28 --gcc-toolchain=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64 --sysroot=/Users/king/Library/Android/sdk/ndk/21.1.6352462/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dnative_lib_EXPORTS -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -std=c++11 -O2 -DNDEBUG -fPIC -o CMakeFiles/native-lib.dir/native-lib.cpp.o -c /Users/king/AndroidStudioProjects/MikSandHook/app/src/main/cpp/native-lib.cpp",
5 | "file": "/Users/king/AndroidStudioProjects/MikSandHook/app/src/main/cpp/native-lib.cpp"
6 | }
7 | ]
--------------------------------------------------------------------------------
/app/.cxx/cmake/release/x86_64/prefab_config.json:
--------------------------------------------------------------------------------
1 | {
2 | "enabled": false,
3 | "packages": []
4 | }
--------------------------------------------------------------------------------
/app/.cxx/ndk_locator_record_3o456k3p.json:
--------------------------------------------------------------------------------
1 | {
2 | "ndk": "/Users/king/Library/Android/sdk/ndk/21.1.6352462",
3 | "revision": {
4 | "mMajor": 21,
5 | "mMinor": 1,
6 | "mMicro": 6352462,
7 | "mPreview": 0,
8 | "mPrecision": "MICRO",
9 | "mPreviewSeparator": " "
10 | }
11 | }
--------------------------------------------------------------------------------
/app/.cxx/ndk_locator_record_3o456k3p.log:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "level": "INFO",
4 | "message": "android.ndkVersion from module build.gradle is [not set]"
5 | },
6 | {
7 | "level": "INFO",
8 | "message": "android.ndkPath from module build.gradle is not set"
9 | },
10 | {
11 | "level": "INFO",
12 | "message": "ndk.dir in local.properties is not set"
13 | },
14 | {
15 | "level": "INFO",
16 | "message": "Not considering ANDROID_NDK_HOME because support was removed after deprecation period."
17 | },
18 | {
19 | "level": "INFO",
20 | "message": "sdkFolder is /Users/king/Library/Android/sdk"
21 | },
22 | {
23 | "level": "INFO",
24 | "message": "Because no explicit NDK was requested, the default version [21.1.6352462] for this Android Gradle Plugin will be used"
25 | }
26 | ]
--------------------------------------------------------------------------------
/app/.cxx/ndk_locator_record_3o456k3p_key.json:
--------------------------------------------------------------------------------
1 | {
2 | "sdkFolder": "/Users/king/Library/Android/sdk",
3 | "sideBySideNdkFolderNames": [
4 | "21.3.6528147",
5 | "21.0.6113669",
6 | "21.1.6352462"
7 | ]
8 | }
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
--------------------------------------------------------------------------------
/app/src/androidTest/java/com/mik/miksandhook/ExampleInstrumentedTest.java:
--------------------------------------------------------------------------------
1 | package com.mik.miksandhook;
2 |
3 | import android.content.Context;
4 |
5 | import androidx.test.platform.app.InstrumentationRegistry;
6 | import androidx.test.ext.junit.runners.AndroidJUnit4;
7 |
8 | import org.junit.Test;
9 | import org.junit.runner.RunWith;
10 |
11 | import static org.junit.Assert.*;
12 |
13 | /**
14 | * Instrumented test, which will execute on an Android device.
15 | *
16 | * @see Testing documentation
17 | */
18 | @RunWith(AndroidJUnit4.class)
19 | public class ExampleInstrumentedTest {
20 | @Test
21 | public void useAppContext() {
22 | // Context of the app under test.
23 | Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
24 | assertEquals("com.mik.miksandhook", appContext.getPackageName());
25 | }
26 | }
--------------------------------------------------------------------------------
/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/cpp/native-lib.cpp:
--------------------------------------------------------------------------------
1 | #include
2 | #include
3 |
4 | extern "C" JNIEXPORT jstring JNICALL
5 | Java_com_mik_miksandhook_MainActivity_stringFromJNI(
6 | JNIEnv* env,
7 | jobject /* this */) {
8 | std::string hello = "Hello from C++";
9 | return env->NewStringUTF(hello.c_str());
10 | }
--------------------------------------------------------------------------------
/app/src/main/java/cn/mik/IMikDex.java:
--------------------------------------------------------------------------------
1 | package cn.mik;
2 | // change mikrom
3 | public interface IMikDex {
4 | void onStart(String path);
5 | }
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FFBB86FC
4 | #FF6200EE
5 | #FF3700B3
6 | #FF03DAC5
7 | #FF018786
8 | #FF000000
9 | #FFFFFFFF
10 |
--------------------------------------------------------------------------------
/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MikSandHook
3 |
--------------------------------------------------------------------------------
/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 |
--------------------------------------------------------------------------------
/app/src/test/java/com/mik/miksandhook/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.mik.miksandhook;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | buildscript {
3 | repositories {
4 | google()
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath "com.android.tools.build:gradle:4.1.2"
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | google()
18 | jcenter()
19 | }
20 | }
21 |
22 | task clean(type: Delete) {
23 | delete rootProject.buildDir
24 | }
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dqzg12300/MikSandHook/e16ccf9759bfaec147a7f0ad4ed6a7cc032b1f00/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Mar 14 16:41:34 CST 2022
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
7 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 | rootProject.name = "MikSandHook"
3 |
4 | include ':MikSdHook:app',':MikSdHook:hooklib',
5 | ':MikSdHook:hookers',':MikSdHook:annotation',
6 | ':MikSdHook:xposedcompat',':MikSdHook:nativehook'
7 |
--------------------------------------------------------------------------------