Prepare v5

This commit is contained in:
osm0sis
2023-12-27 15:18:42 -04:00
parent 29a97b49e3
commit c3ff39c00d
4 changed files with 17 additions and 14 deletions

View File

@@ -1,4 +1,12 @@
# Custom Fork v4 ## Custom Fork v5
- Allow spoofing literally any system property, supporting * lead wildcard to match multiple
- Remove all backwards compat cruft and deprecated entries
- Add log levels with VERBOSE_LOGS last json entry of 0, 1, 2, 3 or 100
- Spoof sys.usb.state to DroidGuard by default to hide USB Debugging
- Update example json for properties
- Add migration script to automatically upgrade old custom.pif.json during install/update (may also be run manually)
## Custom Fork v4
- Very verbose logging (for now) - Very verbose logging (for now)
- Allow spoofing literally any field from android.os.Build or android.os.Build.VERSION - Allow spoofing literally any field from android.os.Build or android.os.Build.VERSION
- Add BUILD_ID and VNDK_VERSION support to keep cross-fork API compatibility - Add BUILD_ID and VNDK_VERSION support to keep cross-fork API compatibility
@@ -6,11 +14,4 @@
- Add empty example.pif.json with reference link - Add empty example.pif.json with reference link
- Fix GMS crashes if a null/bad value was read from json - Fix GMS crashes if a null/bad value was read from json
# Custom Fork v3 ###[Previous changelogs](https://github.com/osm0sis/PlayIntegrityFork/releases)
- Combine system.prop (runs at post-fs-data) entries into service.sh so that they're only set if needed
- Clean up GMS data pif.prop/pif.json files left over from previous releases to ensure they don't trigger detection
- Use custom.pif.json for custom spoofing if it exists, self-contained in the module directory, and restore it after module updates
- Move props that need to be changed earlier into post-fs-data.sh
- Warn of possible conflict if MagiskHidePropsConfig (MHPC) is installed
- Continue to use ShadowHook for now

View File

@@ -25,6 +25,8 @@ You can fill out the included template [example.pif.json](https://raw.githubuser
You can't use values from recent devices due them triggering full hardware backed attestation. You can't use values from recent devices due them triggering full hardware backed attestation.
Older formatted custom.pif.json files from cross-forks and previous releases will be automatically migrated to the latest format.
<details> <details>
<summary>Resources</summary> <summary>Resources</summary>

View File

@@ -1,7 +1,7 @@
id=playintegrityfix id=playintegrityfix
name=Play Integrity Fork name=Play Integrity Fork
version=v4 version=v5
versionCode=4001 versionCode=5000
author=osm0sis & chiteroman @ xda-developers author=osm0sis & chiteroman @ xda-developers
description=Fix CTS profile (SafetyNet) and DEVICE verdict (Play Integrity) description=Fix CTS profile (SafetyNet) and DEVICE verdict (Play Integrity)
updateJson=https://raw.githubusercontent.com/osm0sis/PlayIntegrityFork/main/update.json updateJson=https://raw.githubusercontent.com/osm0sis/PlayIntegrityFork/main/update.json

View File

@@ -1,6 +1,6 @@
{ {
"version": "v4", "version": "v5",
"versionCode": 4000, "versionCode": 5000,
"zipUrl": "https://github.com/osm0sis/PlayIntegrityFork/releases/download/v4/PlayIntegrityFork-v4.zip", "zipUrl": "https://github.com/osm0sis/PlayIntegrityFork/releases/download/v5/PlayIntegrityFork-v5.zip",
"changelog": "https://raw.githubusercontent.com/osm0sis/PlayIntegrityFork/main/CHANGELOG.md" "changelog": "https://raw.githubusercontent.com/osm0sis/PlayIntegrityFork/main/CHANGELOG.md"
} }