mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-04-30 01:52:08 +08:00
Fix
This commit is contained in:
parent
24fde42573
commit
595cffeb51
@ -1,6 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$/app/src/main/cpp/Dobby" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$/app/src/main/cpp/libcxx" vcs="Git" />
|
||||
</component>
|
||||
|
5
README.md
Normal file
5
README.md
Normal file
@ -0,0 +1,5 @@
|
||||
# Play Integrity Fix
|
||||
|
||||
Fix CTS profile and DEVICE verdict.
|
||||
|
||||
XDA: https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/
|
@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.22.1)
|
||||
|
||||
project(zygisk)
|
||||
|
||||
include_directories(libcxx/include libcxx/include/abi)
|
||||
include_directories(libcxx/include)
|
||||
|
||||
link_libraries(${CMAKE_SOURCE_DIR}/libcxx/${CMAKE_ANDROID_ARCH_ABI}.a)
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
typedef void (*T_Callback)(void *, const char *, const char *, uint32_t);
|
||||
|
||||
std::map<void *, T_Callback> map;
|
||||
static std::map<void *, T_Callback> map;
|
||||
|
||||
static void
|
||||
handle_system_property(void *cookie, const char *name, const char *value, uint32_t serial) {
|
||||
@ -87,7 +87,7 @@ public:
|
||||
|
||||
auto fd = api->connectCompanion();
|
||||
|
||||
long size = -1;
|
||||
long size;
|
||||
read(fd, &size, sizeof(size));
|
||||
|
||||
char buffer[size];
|
||||
|
3
changelog.md
Normal file
3
changelog.md
Normal file
@ -0,0 +1,3 @@
|
||||
# v9.9
|
||||
|
||||
Fix crash issues in few devices.
|
6
update.json
Normal file
6
update.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"version": "v9.9",
|
||||
"versionCode": 99,
|
||||
"zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v9.9/PlayIntegrityFix_v9.9.zip",
|
||||
"changelog": "https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/changelog.md"
|
||||
}
|
Loading…
Reference in New Issue
Block a user