This commit is contained in:
chiteroman 2023-10-31 12:57:15 +01:00
parent 24fde42573
commit 595cffeb51
6 changed files with 18 additions and 3 deletions

View File

@ -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
View 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/

View File

@ -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)

View File

@ -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
View File

@ -0,0 +1,3 @@
# v9.9
Fix crash issues in few devices.

6
update.json Normal file
View 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"
}