You've already forked PlayIntegrityFork
mirror of
https://github.com/osm0sis/PlayIntegrityFork.git
synced 2025-09-06 06:37:06 +00:00
Fix
This commit is contained in:
1
.idea/vcs.xml
generated
1
.idea/vcs.xml
generated
@@ -1,6 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="VcsDirectoryMappings">
|
<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/Dobby" vcs="Git" />
|
||||||
<mapping directory="$PROJECT_DIR$/app/src/main/cpp/libcxx" vcs="Git" />
|
<mapping directory="$PROJECT_DIR$/app/src/main/cpp/libcxx" vcs="Git" />
|
||||||
</component>
|
</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)
|
project(zygisk)
|
||||||
|
|
||||||
include_directories(libcxx/include libcxx/include/abi)
|
include_directories(libcxx/include)
|
||||||
|
|
||||||
link_libraries(${CMAKE_SOURCE_DIR}/libcxx/${CMAKE_ANDROID_ARCH_ABI}.a)
|
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);
|
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
|
static void
|
||||||
handle_system_property(void *cookie, const char *name, const char *value, uint32_t serial) {
|
handle_system_property(void *cookie, const char *name, const char *value, uint32_t serial) {
|
||||||
@@ -87,7 +87,7 @@ public:
|
|||||||
|
|
||||||
auto fd = api->connectCompanion();
|
auto fd = api->connectCompanion();
|
||||||
|
|
||||||
long size = -1;
|
long size;
|
||||||
read(fd, &size, sizeof(size));
|
read(fd, &size, sizeof(size));
|
||||||
|
|
||||||
char buffer[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"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user