mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-01-18 11:02:40 +02:00
v18.2
This commit is contained in:
parent
18da0cee2a
commit
fde296fb2a
@ -25,8 +25,8 @@ android {
|
||||
applicationId = "es.chiteroman.playintegrityfix"
|
||||
minSdk = 26
|
||||
targetSdk = 35
|
||||
versionCode = 18100
|
||||
versionName = "v18.1"
|
||||
versionCode = 18200
|
||||
versionName = "v18.2"
|
||||
multiDexEnabled = false
|
||||
|
||||
externalNativeBuild {
|
||||
|
@ -468,7 +468,10 @@ static void companion(int fd) {
|
||||
xwrite(fd, json.data(), jsonSize * sizeof(uint8_t));
|
||||
}
|
||||
|
||||
bool trickyStore = std::filesystem::exists(TS_PATH);
|
||||
std::string ts(TS_PATH);
|
||||
bool trickyStore = std::filesystem::exists(ts) &&
|
||||
!std::filesystem::exists(ts + "/disable") &&
|
||||
!std::filesystem::exists(ts + "/remove");
|
||||
xwrite(fd, &trickyStore, sizeof(trickyStore));
|
||||
|
||||
bool testSignedRom = checkOtaZip();
|
||||
|
@ -11,6 +11,9 @@ If you are using TrickyStore and you have a valid keybox, but Strong
|
||||
isn't passing, maybe you should change the ROM.
|
||||
Stock ROMs gives the best results.
|
||||
|
||||
# v18.1
|
||||
# v18.2
|
||||
|
||||
- Update fingerprint
|
||||
- Add action.sh (to auto update fingerprint to latest beta)
|
||||
|
||||
Thanks to osm0sis, backslashxx and KOWX712
|
||||
|
@ -62,7 +62,6 @@ fi
|
||||
|
||||
# Check custom fingerprint
|
||||
if [ -f "/data/adb/pif.json" ]; then
|
||||
ui_print "!!! WARNING !!!"
|
||||
ui_print "- You are using custom pif.json (/data/adb/pif.json)"
|
||||
ui_print "- Remove that file if you can't pass attestation test!"
|
||||
ui_print "- Backup custom pif.json"
|
||||
mv -f /data/adb/pif.json /data/adb/pif.json.old
|
||||
fi
|
||||
|
@ -1,7 +1,7 @@
|
||||
id=playintegrityfix
|
||||
name=Play Integrity Fix
|
||||
version=v18.1
|
||||
versionCode=18100
|
||||
version=v18.2
|
||||
versionCode=18200
|
||||
author=chiteroman
|
||||
description=Universal modular fix for Play Integrity (and SafetyNet) on devices running Android 8-15
|
||||
updateJson=https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/update.json
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"FINGERPRINT": "google/tokay_beta/tokay:15/BP11.241025.006/12620009:user/release-keys",
|
||||
"FINGERPRINT": "google/oriole_beta/oriole:Baklava/BP21.241121.009/12787338:user/release-keys",
|
||||
"MANUFACTURER": "Google",
|
||||
"MODEL": "Pixel 9",
|
||||
"SECURITY_PATCH": "2024-11-05",
|
||||
"MODEL": "Pixel 6",
|
||||
"SECURITY_PATCH": "2024-12-05",
|
||||
"DEVICE_INITIAL_SDK_INT": 21
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"version": "v18.1",
|
||||
"versionCode": 18100,
|
||||
"zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v18.1/PlayIntegrityFix_v18.1.zip",
|
||||
"version": "v18.2",
|
||||
"versionCode": 18200,
|
||||
"zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v18.2/PlayIntegrityFix_v18.2.zip",
|
||||
"changelog": "https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/changelog.md"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user