This commit is contained in:
chiteroman 2024-09-05 21:11:05 +02:00
parent bf00dbf143
commit 244e037f85
No known key found for this signature in database
5 changed files with 26 additions and 19 deletions

View File

@ -22,8 +22,8 @@ android {
applicationId = "es.chiteroman.playintegrityfix" applicationId = "es.chiteroman.playintegrityfix"
minSdk = 26 minSdk = 26
targetSdk = 35 targetSdk = 35
versionCode = 17300 versionCode = 17400
versionName = "v17.4-TEST" versionName = "v17.4"
multiDexEnabled = false multiDexEnabled = false
externalNativeBuild { externalNativeBuild {
@ -42,7 +42,8 @@ android {
cFlags( cFlags(
"-std=gnu23", "-std=gnu23",
"-fvisibility=hidden", "-fvisibility=hidden",
"-fvisibility-inlines-hidden" "-fvisibility-inlines-hidden",
"-ftrivial-auto-var-init=zero"
) )
cppFlags( cppFlags(
@ -50,7 +51,8 @@ android {
"-fno-exceptions", "-fno-exceptions",
"-fno-rtti", "-fno-rtti",
"-fvisibility=hidden", "-fvisibility=hidden",
"-fvisibility-inlines-hidden" "-fvisibility-inlines-hidden",
"-ftrivial-auto-var-init=zero"
) )
} }
} }

View File

@ -15,7 +15,8 @@ If you are using TrickyStore and you have a valid keybox, but Strong
isn't passing, maybe you should change the ROM. isn't passing, maybe you should change the ROM.
Stock ROMs gives the best results. Stock ROMs gives the best results.
# v17.3 # v17.4
- Fix SELinux prop spoofing - Update fingerprint
- Remove useless code - Use Shadowhook instead Dobby
- Improvements in code

View File

@ -1,7 +1,7 @@
id=playintegrityfix id=playintegrityfix
name=Play Integrity Fix name=Play Integrity Fix
version=v17.4-TEST version=v17.4
versionCode=17300 versionCode=17400
author=chiteroman author=chiteroman
description=Universal modular fix for Play Integrity (and SafetyNet) on devices running Android 8-15 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 updateJson=https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/update.json

View File

@ -1,14 +1,18 @@
{ {
"ID": "AP31.240617.015", "ID": "AP41.240726.010",
"BRAND": "google", "BRAND": "google",
"DEVICE": "akita", "DEVICE": "komodo",
"FINGERPRINT": "google/akita_beta/akita:15/AP31.240617.015/12207491:user/release-keys", "TYPE": "user",
"TAGS": "release-keys",
"FINGERPRINT": "google/komodo_beta/komodo:15/AP41.240726.010/12266677:user/release-keys",
"MANUFACTURER": "Google", "MANUFACTURER": "Google",
"MODEL": "Pixel 8a", "MODEL": "Pixel 9 Pro XL",
"PRODUCT": "akita_beta", "PRODUCT": "komodo_beta",
"INCREMENTAL": "12266677",
"RELEASE": "15",
"SECURITY_PATCH": "2024-08-05", "SECURITY_PATCH": "2024-08-05",
"DEVICE_INITIAL_SDK_INT": 21, "DEVICE_INITIAL_SDK_INT": 32,
"spoofProps": true,
"spoofProvider": true, "spoofProvider": true,
"spoofProps": false,
"spoofSignature": false "spoofSignature": false
} }

View File

@ -1,6 +1,6 @@
{ {
"version": "v17.3", "version": "v17.4",
"versionCode": 17300, "versionCode": 17400,
"zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v17.3/PlayIntegrityFix_v17.3.zip", "zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v17.4/PlayIntegrityFix_v17.4.zip",
"changelog": "https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/changelog.md" "changelog": "https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/changelog.md"
} }