This commit is contained in:
chiteroman 2023-11-29 15:39:55 +01:00
parent 08986d312e
commit 22cb0e60a8
No known key found for this signature in database
GPG Key ID: 19171A27D600CC72
4 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<component name="GradleSettings"> <component name="GradleSettings">
<option name="linkedExternalProjectsSettings"> <option name="linkedExternalProjectsSettings">
<GradleProjectSettings> <GradleProjectSettings>

View File

@ -96,6 +96,7 @@ public:
read(fd, vector.data(), size); read(fd, vector.data(), size);
LOGD("Read %ld bytes from fd!", size); LOGD("Read %ld bytes from fd!", size);
} else { } else {
close(fd);
LOGD("Couldn't read classes.dex from fd!"); LOGD("Couldn't read classes.dex from fd!");
api->setOption(zygisk::DLCLOSE_MODULE_LIBRARY); api->setOption(zygisk::DLCLOSE_MODULE_LIBRARY);
return; return;
@ -175,6 +176,8 @@ static void companion(int fd) {
write(fd, &size, sizeof(long)); write(fd, &size, sizeof(long));
write(fd, vector.data(), size); write(fd, vector.data(), size);
vector.clear();
} }
REGISTER_ZYGISK_MODULE(PlayIntegrityFix) REGISTER_ZYGISK_MODULE(PlayIntegrityFix)

View File

@ -2,10 +2,6 @@ We have a Telegram channel!
If you want to share your knowledge join: If you want to share your knowledge join:
https://t.me/playintegrityfix https://t.me/playintegrityfix
# v13.8 # v13.9
Google banned old fingerprints :( Google banned v13.8 fingerprint.
This build has hardcoded the fix into Zygisk native libs like v13.0.
You can't use pif.json or pif.prop files to spoof custom props.

View File

@ -1,6 +1,6 @@
{ {
"version": "v13.8", "version": "v13.9",
"versionCode": 138, "versionCode": 139,
"zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v13.8/PlayIntegrityFix_v13.8.zip", "zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v13.9/PlayIntegrityFix_v13.9.zip",
"changelog": "https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/changelog.md" "changelog": "https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/changelog.md"
} }