├── .github ├── FUNDING.yml └── workflows │ └── android.yml ├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── deploymentTargetDropDown.xml ├── deploymentTargetSelector.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── migrations.xml ├── misc.xml └── vcs.xml ├── COPYING ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ ├── Dobby │ │ ├── .clang-format │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README_zh-cn.md │ │ ├── builtin-plugin │ │ │ ├── ApplicationEventMonitor │ │ │ │ ├── MGCopyAnswerMonitor.cc │ │ │ │ ├── dynamic_loader_monitor.cc │ │ │ │ ├── file_operation_monitor.cc │ │ │ │ ├── memory_operation_instrument.cc │ │ │ │ ├── posix_file_descriptor_operation_monitor.cc │ │ │ │ └── posix_socket_network_monitor.cc │ │ │ ├── BionicLinkerUtil │ │ │ │ ├── bionic_linker_demo.cc │ │ │ │ ├── bionic_linker_util.cc │ │ │ │ └── bionic_linker_util.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ImportTableReplace │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dobby_import_replace.cc │ │ │ │ └── dobby_import_replace.h │ │ │ ├── ObjcRuntimeReplace │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dobby_objc_runtime_repalce.h │ │ │ │ └── dobby_objc_runtime_replace.mm │ │ │ ├── SupervisorCallMonitor │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README │ │ │ │ ├── mach_system_call_log_handler.cc │ │ │ │ ├── misc_utility.cc │ │ │ │ ├── misc_utility.h │ │ │ │ ├── sensitive_api_monitor.cc │ │ │ │ ├── supervisor_call_monitor.cc │ │ │ │ ├── supervisor_call_monitor.h │ │ │ │ ├── system_call_log_handler.cc │ │ │ │ └── test_supervisor_call_monitor.cc │ │ │ └── SymbolResolver │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dobby_symbol_resolver.h │ │ │ │ ├── elf │ │ │ │ └── dobby_symbol_resolver.cc │ │ │ │ ├── macho │ │ │ │ ├── dobby_symbol_resolver.cc │ │ │ │ ├── dobby_symbol_resolver_priv.h │ │ │ │ ├── macho_ctx.cc │ │ │ │ ├── macho_ctx.h │ │ │ │ ├── macho_file_symbol_resolver.cpp │ │ │ │ ├── macho_file_symbol_resolver.h │ │ │ │ ├── shared-cache │ │ │ │ │ └── dyld_cache_format.h │ │ │ │ ├── shared_cache_ctx.cpp │ │ │ │ └── shared_cache_ctx.h │ │ │ │ ├── mmap_file_util.h │ │ │ │ └── pe │ │ │ │ └── dobby_symbol_resolver.cc │ │ ├── cmake │ │ │ ├── Macros.cmake │ │ │ ├── Util.cmake │ │ │ ├── auto_source_group.cmake │ │ │ ├── build_environment_check.cmake │ │ │ ├── compiler_and_linker.cmake │ │ │ ├── dobby.xcode.source.cmake │ │ │ ├── platform │ │ │ │ └── platform-darwin.cmake │ │ │ └── xcode_generator_helper.cmake │ │ ├── docs │ │ │ └── compile.md │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cc │ │ │ └── socket_example.cc │ │ ├── external │ │ │ ├── TINYSTL │ │ │ │ ├── README │ │ │ │ ├── algorithm.h │ │ │ │ ├── allocator.h │ │ │ │ ├── buffer.h │ │ │ │ ├── function.h │ │ │ │ ├── hash.h │ │ │ │ ├── hash_base.h │ │ │ │ ├── new.h │ │ │ │ ├── stddef.h │ │ │ │ ├── string.h │ │ │ │ ├── string_view.h │ │ │ │ ├── traits.h │ │ │ │ ├── unordered_map.h │ │ │ │ ├── unordered_set.h │ │ │ │ └── vector.h │ │ │ ├── deprecated │ │ │ │ └── misc-helper │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── async_logger.cc │ │ │ │ │ ├── deprecated │ │ │ │ │ ├── pthread_helper.cc │ │ │ │ │ ├── pthread_helper.h │ │ │ │ │ └── unistd_helper.h │ │ │ │ │ ├── format_printer.cc │ │ │ │ │ ├── misc-helper │ │ │ │ │ ├── async_logger.h │ │ │ │ │ ├── format_printer.h │ │ │ │ │ └── variable_cache.h │ │ │ │ │ └── variable_cache.c │ │ │ ├── logging │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── logging.cc │ │ │ │ ├── logging │ │ │ │ │ ├── check_logging.h │ │ │ │ │ └── logging.h │ │ │ │ ├── logging_kern.cc │ │ │ │ └── priv_headers │ │ │ │ │ └── _simple.h │ │ │ └── osbase │ │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── dobby.h │ │ ├── scripts │ │ │ ├── Dockerfile │ │ │ ├── platform_builder.py │ │ │ ├── setup_linux_cross_compile.sh │ │ │ └── setup_macos_cross_compile.sh │ │ ├── source │ │ │ ├── Backend │ │ │ │ ├── KernelMode │ │ │ │ │ ├── ExecMemory │ │ │ │ │ │ ├── clear-cache-tool-all.c │ │ │ │ │ │ └── code-patch-tool-darwin.cc │ │ │ │ │ ├── PlatformUtil │ │ │ │ │ │ └── Darwin │ │ │ │ │ │ │ └── ProcessRuntimeUtility.cc │ │ │ │ │ └── UnifiedInterface │ │ │ │ │ │ └── platform-darwin.cc │ │ │ │ └── UserMode │ │ │ │ │ ├── ExecMemory │ │ │ │ │ ├── clear-cache-tool-all.c │ │ │ │ │ ├── clear-cache-tool │ │ │ │ │ │ ├── clear-cache-tool-arm-dummy.cc │ │ │ │ │ │ └── clear-cache-tool-arm64-dummy.cc │ │ │ │ │ ├── code-patch-tool-darwin.cc │ │ │ │ │ ├── code-patch-tool-posix.cc │ │ │ │ │ ├── code-patch-tool-windows.cc │ │ │ │ │ └── substrated │ │ │ │ │ │ └── mach_interface_support │ │ │ │ │ │ └── substrated.defs │ │ │ │ │ ├── MultiThreadSupport │ │ │ │ │ ├── ThreadSupport.cpp │ │ │ │ │ └── ThreadSupport.h │ │ │ │ │ ├── PlatformUtil │ │ │ │ │ ├── Darwin │ │ │ │ │ │ └── ProcessRuntimeUtility.cc │ │ │ │ │ ├── Linux │ │ │ │ │ │ └── ProcessRuntimeUtility.cc │ │ │ │ │ └── Windows │ │ │ │ │ │ └── ProcessRuntimeUtility.cc │ │ │ │ │ ├── Thread │ │ │ │ │ ├── PlatformThread.cc │ │ │ │ │ ├── PlatformThread.h │ │ │ │ │ ├── platform-thread-posix.cc │ │ │ │ │ └── platform-thread-windows.cc │ │ │ │ │ └── UnifiedInterface │ │ │ │ │ ├── platform-darwin │ │ │ │ │ └── mach_vm.h │ │ │ │ │ ├── platform-posix.cc │ │ │ │ │ ├── platform-windows.cc │ │ │ │ │ ├── semaphore.cc │ │ │ │ │ └── semaphore.h │ │ │ ├── InstructionRelocation │ │ │ │ ├── InstructionRelocation.h │ │ │ │ ├── arm │ │ │ │ │ ├── InstructionRelocationARM.cc │ │ │ │ │ └── InstructionRelocationARM.h │ │ │ │ ├── arm64 │ │ │ │ │ ├── InstructionRelocationARM64.cc │ │ │ │ │ ├── InstructionRelocationARM64.h │ │ │ │ │ ├── inst_constants.h │ │ │ │ │ └── inst_decode_encode_kit.h │ │ │ │ ├── x64 │ │ │ │ │ ├── InstructionRelocationX64.cc │ │ │ │ │ └── InstructionRelocationX64.h │ │ │ │ └── x86 │ │ │ │ │ ├── InstructionRelocationX86.cc │ │ │ │ │ ├── InstructionRelocationX86.h │ │ │ │ │ ├── InstructionRelocationX86Shared.cc │ │ │ │ │ ├── InstructionRelocationX86Shared.h │ │ │ │ │ ├── X86DecodeKit.h │ │ │ │ │ ├── deprecated │ │ │ │ │ ├── Ia32Disassembler.cc │ │ │ │ │ ├── X86OpcodoDecodeTable.cc │ │ │ │ │ └── X86OpcodoDecodeTable.h │ │ │ │ │ └── x86_insn_decode │ │ │ │ │ ├── build_config.h │ │ │ │ │ ├── x86_insn_decode.c │ │ │ │ │ ├── x86_insn_decode.h │ │ │ │ │ ├── x86_insn_reader.c │ │ │ │ │ ├── x86_opcode_modrm_reg_group.c │ │ │ │ │ ├── x86_opcode_one_byte.c │ │ │ │ │ ├── x86_opcode_sse_group.c │ │ │ │ │ └── x86_opcode_two_byte.c │ │ │ ├── InterceptEntry.cpp │ │ │ ├── InterceptEntry.h │ │ │ ├── InterceptRouting │ │ │ │ ├── InterceptRouting.cpp │ │ │ │ ├── InterceptRouting.h │ │ │ │ ├── Routing │ │ │ │ │ ├── FunctionInlineHook │ │ │ │ │ │ ├── FunctionInlineHook.cc │ │ │ │ │ │ ├── FunctionInlineHookRouting.h │ │ │ │ │ │ └── RoutingImpl.cc │ │ │ │ │ ├── FunctionWrapper │ │ │ │ │ │ ├── FunctionWrapperExport.cc │ │ │ │ │ │ ├── function-wrapper.cc │ │ │ │ │ │ ├── function-wrapper.h │ │ │ │ │ │ ├── intercept_routing_handler.cc │ │ │ │ │ │ └── intercept_routing_handler.h │ │ │ │ │ └── InstructionInstrument │ │ │ │ │ │ ├── InstructionInstrument.cc │ │ │ │ │ │ ├── InstructionInstrumentRouting.h │ │ │ │ │ │ ├── RoutingImpl.cc │ │ │ │ │ │ ├── instrument_routing_handler.cc │ │ │ │ │ │ └── instrument_routing_handler.h │ │ │ │ └── RoutingPlugin │ │ │ │ │ ├── NearBranchTrampoline │ │ │ │ │ ├── NearBranchTrampoline.cc │ │ │ │ │ ├── NearBranchTrampoline.h │ │ │ │ │ └── near_trampoline_arm64.cc │ │ │ │ │ ├── RoutingPlugin.cc │ │ │ │ │ └── RoutingPlugin.h │ │ │ ├── Interceptor.cpp │ │ │ ├── Interceptor.h │ │ │ ├── MemoryAllocator │ │ │ │ ├── AssemblyCodeBuilder.cc │ │ │ │ ├── AssemblyCodeBuilder.h │ │ │ │ ├── CodeBuffer │ │ │ │ │ ├── CodeBufferBase.cc │ │ │ │ │ ├── CodeBufferBase.h │ │ │ │ │ ├── code-buffer-arm.h │ │ │ │ │ ├── code-buffer-arm64.h │ │ │ │ │ ├── code-buffer-x64.h │ │ │ │ │ ├── code-buffer-x86.cc │ │ │ │ │ ├── code-buffer-x86.h │ │ │ │ │ ├── code_buffer_arm.h │ │ │ │ │ ├── code_buffer_arm64.h │ │ │ │ │ ├── code_buffer_x64.h │ │ │ │ │ └── code_buffer_x86.h │ │ │ │ ├── MemoryAllocator.cc │ │ │ │ ├── NearMemoryAllocator.cc │ │ │ │ └── NearMemoryAllocator.h │ │ │ ├── PlatformUnifiedInterface │ │ │ │ ├── ExecMemory │ │ │ │ │ ├── ClearCacheTool.h │ │ │ │ │ └── CodePatchTool.h │ │ │ │ ├── MemoryAllocator.h │ │ │ │ └── platform.h │ │ │ ├── PlatformUtil │ │ │ │ └── ProcessRuntimeUtility.h │ │ │ ├── TrampolineBridge │ │ │ │ ├── ClosureTrampolineBridge │ │ │ │ │ ├── ClosureTrampoline.h │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ClosureTrampolineARM.cc │ │ │ │ │ │ ├── closure_bridge_arm.cc │ │ │ │ │ │ ├── dummy │ │ │ │ │ │ │ ├── closure-bridge-template-arm.cc │ │ │ │ │ │ │ └── closure-trampoline-template-arm.S │ │ │ │ │ │ └── helper_arm.cc │ │ │ │ │ ├── arm64 │ │ │ │ │ │ ├── ClosureTrampolineARM64.cc │ │ │ │ │ │ ├── closure_bridge_arm64.cc │ │ │ │ │ │ ├── dummy │ │ │ │ │ │ │ ├── closure-bridge-template-arm64.c │ │ │ │ │ │ │ ├── closure-trampoline-template-arm64.S │ │ │ │ │ │ │ └── dynamic-closure-trampoline-template-arm64.S │ │ │ │ │ │ └── helper_arm64.cc │ │ │ │ │ ├── common_bridge_handler.cc │ │ │ │ │ ├── common_bridge_handler.h │ │ │ │ │ ├── x64 │ │ │ │ │ │ ├── ClosureTrampolineX64.cc │ │ │ │ │ │ ├── closure_bridge_x64.cc │ │ │ │ │ │ ├── dummy │ │ │ │ │ │ │ ├── closure-bridge-template-x64.c │ │ │ │ │ │ │ └── closure-trampoline-template-x64.S │ │ │ │ │ │ └── helper_x64.cc │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── ClosureTrampolineX86.cc │ │ │ │ │ │ ├── closure_bridge_x86.cc │ │ │ │ │ │ └── helper_x86.cc │ │ │ │ └── Trampoline │ │ │ │ │ ├── Trampoline.h │ │ │ │ │ ├── arm │ │ │ │ │ └── trampoline_arm.cc │ │ │ │ │ ├── arm64 │ │ │ │ │ └── trampoline_arm64.cc │ │ │ │ │ ├── x64 │ │ │ │ │ └── trampoline_x64.cc │ │ │ │ │ └── x86 │ │ │ │ │ └── trampoline_x86.cc │ │ │ ├── core │ │ │ │ ├── arch │ │ │ │ │ ├── Cpu.cc │ │ │ │ │ ├── Cpu.h │ │ │ │ │ ├── CpuFeature.cc │ │ │ │ │ ├── CpuFeature.h │ │ │ │ │ ├── CpuRegister.cc │ │ │ │ │ ├── CpuRegister.h │ │ │ │ │ ├── CpuUtils.h │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── constants-arm.h │ │ │ │ │ │ └── registers-arm.h │ │ │ │ │ ├── arm64 │ │ │ │ │ │ ├── constants-arm64.h │ │ │ │ │ │ └── registers-arm64.h │ │ │ │ │ ├── x64 │ │ │ │ │ │ ├── constants-x64.h │ │ │ │ │ │ └── registers-x64.h │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── constants-x86.h │ │ │ │ │ │ ├── cpu-x86.cc │ │ │ │ │ │ ├── cpu-x86.h │ │ │ │ │ │ └── registers-x86.h │ │ │ │ ├── assembler │ │ │ │ │ ├── AssemblerPseudoLabel.h │ │ │ │ │ ├── assembler-arch.h │ │ │ │ │ ├── assembler-arm.cc │ │ │ │ │ ├── assembler-arm.h │ │ │ │ │ ├── assembler-arm64.cc │ │ │ │ │ ├── assembler-arm64.h │ │ │ │ │ ├── assembler-ia32.cc │ │ │ │ │ ├── assembler-ia32.h │ │ │ │ │ ├── assembler-x64.cc │ │ │ │ │ ├── assembler-x64.h │ │ │ │ │ ├── assembler-x86-shared.cc │ │ │ │ │ ├── assembler-x86-shared.h │ │ │ │ │ ├── assembler.cc │ │ │ │ │ └── assembler.h │ │ │ │ ├── codegen │ │ │ │ │ ├── codegen-arm.cc │ │ │ │ │ ├── codegen-arm.h │ │ │ │ │ ├── codegen-arm64.cc │ │ │ │ │ ├── codegen-arm64.h │ │ │ │ │ ├── codegen-ia32.cc │ │ │ │ │ ├── codegen-ia32.h │ │ │ │ │ ├── codegen-x64.cc │ │ │ │ │ ├── codegen-x64.h │ │ │ │ │ └── codegen.h │ │ │ │ └── emulator │ │ │ │ │ └── dummy.cc │ │ │ ├── dobby.cpp │ │ │ └── dobby │ │ │ │ ├── common.h │ │ │ │ ├── dobby_internal.h │ │ │ │ ├── kernel_mode_header.h │ │ │ │ ├── pac_kit.h │ │ │ │ ├── platform_detect_macro.h │ │ │ │ ├── platform_features.h │ │ │ │ ├── types.h │ │ │ │ └── utility_macro.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── UniconEmulator.cpp │ │ │ ├── UniconEmulator.h │ │ │ ├── test_insn_decoder_x86.cpp │ │ │ ├── test_insn_relo_arm.cpp │ │ │ ├── test_insn_relo_arm64.cpp │ │ │ ├── test_insn_relo_x64.cpp │ │ │ └── test_native.cpp │ ├── json.hpp │ ├── main.cpp │ └── zygisk.hpp │ └── java │ └── es │ └── chiteroman │ └── playintegrityfix │ ├── CustomKeyStoreSpi.java │ ├── CustomProvider.java │ └── EntryPoint.java ├── changelog.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── module ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script ├── customize.sh ├── module.prop ├── pif.json ├── post-fs-data.sh └── service.sh ├── settings.gradle.kts └── update.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/.clang-format -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/.gitignore -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/LICENSE -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/README.md -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/README_zh-cn.md: -------------------------------------------------------------------------------- 1 | ## Dobby 2 | 3 | **待更新** -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/ApplicationEventMonitor/MGCopyAnswerMonitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/ApplicationEventMonitor/MGCopyAnswerMonitor.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/ApplicationEventMonitor/dynamic_loader_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/ApplicationEventMonitor/dynamic_loader_monitor.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/ApplicationEventMonitor/file_operation_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/ApplicationEventMonitor/file_operation_monitor.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/ApplicationEventMonitor/memory_operation_instrument.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/ApplicationEventMonitor/memory_operation_instrument.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/ApplicationEventMonitor/posix_file_descriptor_operation_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/ApplicationEventMonitor/posix_file_descriptor_operation_monitor.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/ApplicationEventMonitor/posix_socket_network_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/ApplicationEventMonitor/posix_socket_network_monitor.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/BionicLinkerUtil/bionic_linker_demo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/BionicLinkerUtil/bionic_linker_demo.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/BionicLinkerUtil/bionic_linker_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/BionicLinkerUtil/bionic_linker_util.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/BionicLinkerUtil/bionic_linker_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/BionicLinkerUtil/bionic_linker_util.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/ImportTableReplace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/ImportTableReplace/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/ImportTableReplace/dobby_import_replace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/ImportTableReplace/dobby_import_replace.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/ImportTableReplace/dobby_import_replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/ImportTableReplace/dobby_import_replace.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/ObjcRuntimeReplace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/ObjcRuntimeReplace/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/ObjcRuntimeReplace/dobby_objc_runtime_repalce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/ObjcRuntimeReplace/dobby_objc_runtime_repalce.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/ObjcRuntimeReplace/dobby_objc_runtime_replace.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/ObjcRuntimeReplace/dobby_objc_runtime_replace.mm -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/README -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/mach_system_call_log_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/mach_system_call_log_handler.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/misc_utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/misc_utility.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/misc_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/misc_utility.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/sensitive_api_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/sensitive_api_monitor.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/supervisor_call_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/supervisor_call_monitor.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/supervisor_call_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/supervisor_call_monitor.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/system_call_log_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/system_call_log_handler.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/test_supervisor_call_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SupervisorCallMonitor/test_supervisor_call_monitor.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/dobby_symbol_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/dobby_symbol_resolver.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/elf/dobby_symbol_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/elf/dobby_symbol_resolver.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/dobby_symbol_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/dobby_symbol_resolver.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/dobby_symbol_resolver_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/dobby_symbol_resolver_priv.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/macho_ctx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/macho_ctx.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/macho_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/macho_ctx.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/macho_file_symbol_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/macho_file_symbol_resolver.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/macho_file_symbol_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/macho_file_symbol_resolver.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/shared-cache/dyld_cache_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/shared-cache/dyld_cache_format.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/shared_cache_ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/shared_cache_ctx.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/shared_cache_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/macho/shared_cache_ctx.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/mmap_file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/mmap_file_util.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/pe/dobby_symbol_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/builtin-plugin/SymbolResolver/pe/dobby_symbol_resolver.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/cmake/Macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/cmake/Macros.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/cmake/Util.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/cmake/Util.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/cmake/auto_source_group.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/cmake/auto_source_group.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/cmake/build_environment_check.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/cmake/build_environment_check.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/cmake/compiler_and_linker.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/cmake/compiler_and_linker.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/cmake/dobby.xcode.source.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/cmake/dobby.xcode.source.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/cmake/platform/platform-darwin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/cmake/platform/platform-darwin.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/cmake/xcode_generator_helper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/cmake/xcode_generator_helper.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/docs/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/docs/compile.md -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/examples/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/examples/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/examples/main.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/examples/socket_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/examples/socket_example.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/README: -------------------------------------------------------------------------------- 1 | ref: https://github.com/mendsley/tinystl -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/algorithm.h: -------------------------------------------------------------------------------- 1 | #pragma once -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/allocator.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/buffer.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/function.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/hash.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/hash_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/hash_base.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/new.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/stddef.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/string.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/string_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/string_view.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/traits.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/unordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/unordered_map.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/unordered_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/unordered_set.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/TINYSTL/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/TINYSTL/vector.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/deprecated/misc-helper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/deprecated/misc-helper/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/deprecated/misc-helper/async_logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/deprecated/misc-helper/async_logger.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/deprecated/misc-helper/deprecated/pthread_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/deprecated/misc-helper/deprecated/pthread_helper.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/deprecated/misc-helper/deprecated/pthread_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/deprecated/misc-helper/deprecated/pthread_helper.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/deprecated/misc-helper/deprecated/unistd_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/deprecated/misc-helper/deprecated/unistd_helper.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/deprecated/misc-helper/format_printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/deprecated/misc-helper/format_printer.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/deprecated/misc-helper/misc-helper/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/deprecated/misc-helper/misc-helper/async_logger.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/deprecated/misc-helper/misc-helper/format_printer.h: -------------------------------------------------------------------------------- 1 | #include "dobby/common.h" 2 | 3 | void hexdump(const uint8_t *bytes, size_t len); -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/deprecated/misc-helper/misc-helper/variable_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/deprecated/misc-helper/misc-helper/variable_cache.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/deprecated/misc-helper/variable_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/deprecated/misc-helper/variable_cache.c -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/logging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/logging/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/logging/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/logging/logging.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/logging/logging/check_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/logging/logging/check_logging.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/logging/logging/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/logging/logging/logging.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/logging/logging_kern.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/logging/priv_headers/_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/external/logging/priv_headers/_simple.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/external/osbase/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_library(osbase STATIC 2 | ${PROJECT_SOURCE_DIR}/source/Backend/UserMode/UnifiedInterface/platform-posix.cc 3 | ) -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/include/dobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/include/dobby.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/scripts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/scripts/Dockerfile -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/scripts/platform_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/scripts/platform_builder.py -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/scripts/setup_linux_cross_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/scripts/setup_linux_cross_compile.sh -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/scripts/setup_macos_cross_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/scripts/setup_macos_cross_compile.sh -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/KernelMode/ExecMemory/clear-cache-tool-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/KernelMode/ExecMemory/clear-cache-tool-all.c -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/KernelMode/ExecMemory/code-patch-tool-darwin.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/KernelMode/PlatformUtil/Darwin/ProcessRuntimeUtility.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/KernelMode/UnifiedInterface/platform-darwin.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/clear-cache-tool-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/clear-cache-tool-all.c -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/clear-cache-tool/clear-cache-tool-arm-dummy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/clear-cache-tool/clear-cache-tool-arm-dummy.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/clear-cache-tool/clear-cache-tool-arm64-dummy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/clear-cache-tool/clear-cache-tool-arm64-dummy.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/code-patch-tool-darwin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/code-patch-tool-darwin.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/code-patch-tool-posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/code-patch-tool-posix.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/code-patch-tool-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/code-patch-tool-windows.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/substrated/mach_interface_support/substrated.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/ExecMemory/substrated/mach_interface_support/substrated.defs -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/MultiThreadSupport/ThreadSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/MultiThreadSupport/ThreadSupport.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/MultiThreadSupport/ThreadSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/MultiThreadSupport/ThreadSupport.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/PlatformUtil/Darwin/ProcessRuntimeUtility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/PlatformUtil/Darwin/ProcessRuntimeUtility.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/PlatformUtil/Linux/ProcessRuntimeUtility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/PlatformUtil/Linux/ProcessRuntimeUtility.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/PlatformUtil/Windows/ProcessRuntimeUtility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/PlatformUtil/Windows/ProcessRuntimeUtility.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/Thread/PlatformThread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/Thread/PlatformThread.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/Thread/PlatformThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/Thread/PlatformThread.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/Thread/platform-thread-posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/Thread/platform-thread-posix.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/Thread/platform-thread-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/Thread/platform-thread-windows.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/UnifiedInterface/platform-darwin/mach_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/UnifiedInterface/platform-darwin/mach_vm.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/UnifiedInterface/platform-posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/UnifiedInterface/platform-posix.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/UnifiedInterface/platform-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/UnifiedInterface/platform-windows.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/UnifiedInterface/semaphore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/UnifiedInterface/semaphore.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Backend/UserMode/UnifiedInterface/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Backend/UserMode/UnifiedInterface/semaphore.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/InstructionRelocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/InstructionRelocation.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/arm/InstructionRelocationARM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/arm/InstructionRelocationARM.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/arm/InstructionRelocationARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/arm/InstructionRelocationARM.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/arm64/InstructionRelocationARM64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/arm64/InstructionRelocationARM64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/arm64/InstructionRelocationARM64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/arm64/InstructionRelocationARM64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/arm64/inst_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/arm64/inst_constants.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/arm64/inst_decode_encode_kit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/arm64/inst_decode_encode_kit.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x64/InstructionRelocationX64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x64/InstructionRelocationX64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x64/InstructionRelocationX64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x64/InstructionRelocationX64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/InstructionRelocationX86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/InstructionRelocationX86.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/InstructionRelocationX86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/InstructionRelocationX86.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/InstructionRelocationX86Shared.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/InstructionRelocationX86Shared.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/InstructionRelocationX86Shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/InstructionRelocationX86Shared.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/X86DecodeKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/X86DecodeKit.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/deprecated/Ia32Disassembler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/deprecated/Ia32Disassembler.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/deprecated/X86OpcodoDecodeTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/deprecated/X86OpcodoDecodeTable.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/deprecated/X86OpcodoDecodeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/deprecated/X86OpcodoDecodeTable.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/build_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/build_config.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_insn_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_insn_decode.c -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_insn_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_insn_decode.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_insn_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_insn_reader.c -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_modrm_reg_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_modrm_reg_group.c -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_one_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_one_byte.c -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_sse_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_sse_group.c -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_two_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_two_byte.c -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptEntry.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptEntry.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/InterceptRouting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/InterceptRouting.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/InterceptRouting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/InterceptRouting.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionInlineHook/FunctionInlineHook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionInlineHook/FunctionInlineHook.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionInlineHook/FunctionInlineHookRouting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionInlineHook/FunctionInlineHookRouting.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionInlineHook/RoutingImpl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionInlineHook/RoutingImpl.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionWrapper/FunctionWrapperExport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionWrapper/FunctionWrapperExport.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionWrapper/function-wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionWrapper/function-wrapper.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionWrapper/function-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionWrapper/function-wrapper.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionWrapper/intercept_routing_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionWrapper/intercept_routing_handler.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionWrapper/intercept_routing_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/FunctionWrapper/intercept_routing_handler.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/InstructionInstrument/InstructionInstrument.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/InstructionInstrument/InstructionInstrument.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/InstructionInstrument/InstructionInstrumentRouting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/InstructionInstrument/InstructionInstrumentRouting.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/InstructionInstrument/RoutingImpl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/InstructionInstrument/RoutingImpl.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/InstructionInstrument/instrument_routing_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/InstructionInstrument/instrument_routing_handler.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/Routing/InstructionInstrument/instrument_routing_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/Routing/InstructionInstrument/instrument_routing_handler.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/RoutingPlugin/NearBranchTrampoline/NearBranchTrampoline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/RoutingPlugin/NearBranchTrampoline/NearBranchTrampoline.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/RoutingPlugin/NearBranchTrampoline/NearBranchTrampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/RoutingPlugin/NearBranchTrampoline/NearBranchTrampoline.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/RoutingPlugin/NearBranchTrampoline/near_trampoline_arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/RoutingPlugin/NearBranchTrampoline/near_trampoline_arm64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/RoutingPlugin/RoutingPlugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/RoutingPlugin/RoutingPlugin.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/InterceptRouting/RoutingPlugin/RoutingPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/InterceptRouting/RoutingPlugin/RoutingPlugin.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Interceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Interceptor.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/Interceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/Interceptor.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/AssemblyCodeBuilder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/AssemblyCodeBuilder.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/AssemblyCodeBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/AssemblyCodeBuilder.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/CodeBufferBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/CodeBufferBase.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/CodeBufferBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/CodeBufferBase.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code-buffer-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code-buffer-arm.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code-buffer-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code-buffer-arm64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code-buffer-x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code-buffer-x64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code-buffer-x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code-buffer-x86.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code-buffer-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code-buffer-x86.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code_buffer_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code_buffer_arm.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code_buffer_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code_buffer_arm64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code_buffer_x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code_buffer_x64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code_buffer_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/CodeBuffer/code_buffer_x86.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/MemoryAllocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/MemoryAllocator.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/NearMemoryAllocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/NearMemoryAllocator.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/MemoryAllocator/NearMemoryAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/MemoryAllocator/NearMemoryAllocator.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/PlatformUnifiedInterface/ExecMemory/ClearCacheTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/PlatformUnifiedInterface/ExecMemory/ClearCacheTool.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/PlatformUnifiedInterface/ExecMemory/CodePatchTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/PlatformUnifiedInterface/ExecMemory/CodePatchTool.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/PlatformUnifiedInterface/MemoryAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/PlatformUnifiedInterface/MemoryAllocator.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/PlatformUnifiedInterface/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/PlatformUnifiedInterface/platform.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/PlatformUtil/ProcessRuntimeUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/PlatformUtil/ProcessRuntimeUtility.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/ClosureTrampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/ClosureTrampoline.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm/ClosureTrampolineARM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm/ClosureTrampolineARM.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm/closure_bridge_arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm/closure_bridge_arm.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm/dummy/closure-bridge-template-arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm/dummy/closure-bridge-template-arm.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm/dummy/closure-trampoline-template-arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm/dummy/closure-trampoline-template-arm.S -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm/helper_arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm/helper_arm.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm64/ClosureTrampolineARM64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm64/ClosureTrampolineARM64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm64/closure_bridge_arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm64/closure_bridge_arm64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm64/dummy/closure-bridge-template-arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm64/dummy/closure-bridge-template-arm64.c -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm64/dummy/closure-trampoline-template-arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm64/dummy/closure-trampoline-template-arm64.S -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm64/dummy/dynamic-closure-trampoline-template-arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm64/dummy/dynamic-closure-trampoline-template-arm64.S -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm64/helper_arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/arm64/helper_arm64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/common_bridge_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/common_bridge_handler.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/common_bridge_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/common_bridge_handler.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x64/ClosureTrampolineX64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x64/ClosureTrampolineX64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x64/closure_bridge_x64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x64/closure_bridge_x64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x64/dummy/closure-bridge-template-x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x64/dummy/closure-bridge-template-x64.c -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x64/dummy/closure-trampoline-template-x64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x64/dummy/closure-trampoline-template-x64.S -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x64/helper_x64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x64/helper_x64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x86/ClosureTrampolineX86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x86/ClosureTrampolineX86.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x86/closure_bridge_x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x86/closure_bridge_x86.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x86/helper_x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/ClosureTrampolineBridge/x86/helper_x86.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/Trampoline/Trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/Trampoline/Trampoline.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/Trampoline/arm/trampoline_arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/Trampoline/arm/trampoline_arm.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/Trampoline/arm64/trampoline_arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/Trampoline/arm64/trampoline_arm64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/Trampoline/x64/trampoline_x64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/Trampoline/x64/trampoline_x64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/TrampolineBridge/Trampoline/x86/trampoline_x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/TrampolineBridge/Trampoline/x86/trampoline_x86.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/Cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/Cpu.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/Cpu.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/CpuFeature.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/CpuFeature.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/CpuFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/CpuFeature.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/CpuRegister.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/CpuRegister.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/CpuRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/CpuRegister.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/CpuUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/CpuUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/arm/constants-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/arm/constants-arm.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/arm/registers-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/arm/registers-arm.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/arm64/constants-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/arm64/constants-arm64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/arm64/registers-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/arm64/registers-arm64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/x64/constants-x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/x64/constants-x64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/x64/registers-x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/x64/registers-x64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/x86/constants-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/x86/constants-x86.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/x86/cpu-x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/x86/cpu-x86.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/x86/cpu-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/x86/cpu-x86.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/arch/x86/registers-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/arch/x86/registers-x86.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/AssemblerPseudoLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/AssemblerPseudoLabel.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler-arch.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler-arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler-arm.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler-arm.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler-arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler-arm64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler-arm64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler-ia32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler-ia32.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler-ia32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler-ia32.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler-x64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler-x64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler-x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler-x64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler-x86-shared.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler-x86-shared.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler-x86-shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler-x86-shared.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/assembler/assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/assembler/assembler.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/codegen/codegen-arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/codegen/codegen-arm.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/codegen/codegen-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/codegen/codegen-arm.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/codegen/codegen-arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/codegen/codegen-arm64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/codegen/codegen-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/codegen/codegen-arm64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/codegen/codegen-ia32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/codegen/codegen-ia32.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/codegen/codegen-ia32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/codegen/codegen-ia32.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/codegen/codegen-x64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/codegen/codegen-x64.cc -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/codegen/codegen-x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/codegen/codegen-x64.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/codegen/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/core/codegen/codegen.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/core/emulator/dummy.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/dobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/dobby.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/dobby/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/dobby/common.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/dobby/dobby_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/dobby/dobby_internal.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/dobby/kernel_mode_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/dobby/kernel_mode_header.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/dobby/pac_kit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/dobby/pac_kit.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/dobby/platform_detect_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/dobby/platform_detect_macro.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/dobby/platform_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/dobby/platform_features.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/dobby/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/dobby/types.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/source/dobby/utility_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/source/dobby/utility_macro.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/tests/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/tests/UniconEmulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/tests/UniconEmulator.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/tests/UniconEmulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/tests/UniconEmulator.h -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/tests/test_insn_decoder_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/tests/test_insn_decoder_x86.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/tests/test_insn_relo_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/tests/test_insn_relo_arm.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/tests/test_insn_relo_arm64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/tests/test_insn_relo_arm64.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/tests/test_insn_relo_x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/tests/test_insn_relo_x64.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Dobby/tests/test_native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/Dobby/tests/test_native.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/json.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/main.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/zygisk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/cpp/zygisk.hpp -------------------------------------------------------------------------------- /app/src/main/java/es/chiteroman/playintegrityfix/CustomKeyStoreSpi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/java/es/chiteroman/playintegrityfix/CustomKeyStoreSpi.java -------------------------------------------------------------------------------- /app/src/main/java/es/chiteroman/playintegrityfix/CustomProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/java/es/chiteroman/playintegrityfix/CustomProvider.java -------------------------------------------------------------------------------- /app/src/main/java/es/chiteroman/playintegrityfix/EntryPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/app/src/main/java/es/chiteroman/playintegrityfix/EntryPoint.java -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/changelog.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/gradlew.bat -------------------------------------------------------------------------------- /module/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/module/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /module/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK -------------------------------------------------------------------------------- /module/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/module/customize.sh -------------------------------------------------------------------------------- /module/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/module/module.prop -------------------------------------------------------------------------------- /module/pif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/module/pif.json -------------------------------------------------------------------------------- /module/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/module/post-fs-data.sh -------------------------------------------------------------------------------- /module/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/module/service.sh -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyotidwi/PlayIntegrityFix/HEAD/update.json --------------------------------------------------------------------------------