Skip to content

Commit

Permalink
v17.4
Browse files Browse the repository at this point in the history
  • Loading branch information
chiteroman committed Sep 5, 2024
1 parent bf00dbf commit 244e037
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 19 deletions.
10 changes: 6 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ android {
applicationId = "es.chiteroman.playintegrityfix"
minSdk = 26
targetSdk = 35
versionCode = 17300
versionName = "v17.4-TEST"
versionCode = 17400
versionName = "v17.4"
multiDexEnabled = false

externalNativeBuild {
Expand All @@ -42,15 +42,17 @@ android {
cFlags(
"-std=gnu23",
"-fvisibility=hidden",
"-fvisibility-inlines-hidden"
"-fvisibility-inlines-hidden",
"-ftrivial-auto-var-init=zero"
)

cppFlags(
"-std=gnu++26",
"-fno-exceptions",
"-fno-rtti",
"-fvisibility=hidden",
"-fvisibility-inlines-hidden"
"-fvisibility-inlines-hidden",
"-ftrivial-auto-var-init=zero"
)
}
}
Expand Down
7 changes: 4 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Stock ROMs gives the best results.

# v17.3
# v17.4

- Fix SELinux prop spoofing
- Remove useless code
- Update fingerprint
- Use Shadowhook instead Dobby
- Improvements in code
4 changes: 2 additions & 2 deletions module/module.prop
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
id=playintegrityfix
name=Play Integrity Fix
version=v17.4-TEST
versionCode=17300
version=v17.4
versionCode=17400
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
18 changes: 11 additions & 7 deletions module/pif.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{
"ID": "AP31.240617.015",
"ID": "AP41.240726.010",
"BRAND": "google",
"DEVICE": "akita",
"FINGERPRINT": "google/akita_beta/akita:15/AP31.240617.015/12207491:user/release-keys",
"DEVICE": "komodo",
"TYPE": "user",
"TAGS": "release-keys",
"FINGERPRINT": "google/komodo_beta/komodo:15/AP41.240726.010/12266677:user/release-keys",
"MANUFACTURER": "Google",
"MODEL": "Pixel 8a",
"PRODUCT": "akita_beta",
"MODEL": "Pixel 9 Pro XL",
"PRODUCT": "komodo_beta",
"INCREMENTAL": "12266677",
"RELEASE": "15",
"SECURITY_PATCH": "2024-08-05",
"DEVICE_INITIAL_SDK_INT": 21,
"spoofProps": true,
"DEVICE_INITIAL_SDK_INT": 32,
"spoofProvider": true,
"spoofProps": false,
"spoofSignature": false
}
6 changes: 3 additions & 3 deletions update.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "v17.3",
"versionCode": 17300,
"zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v17.3/PlayIntegrityFix_v17.3.zip",
"version": "v17.4",
"versionCode": 17400,
"zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v17.4/PlayIntegrityFix_v17.4.zip",
"changelog": "https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/changelog.md"
}

0 comments on commit 244e037

Please sign in to comment.