Skip to content

Commit c3ff39c

Browse files
committed
Prepare v5
1 parent 29a97b4 commit c3ff39c

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

CHANGELOG.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
# Custom Fork v4
1+
## Custom Fork v5
2+
- Allow spoofing literally any system property, supporting * lead wildcard to match multiple
3+
- Remove all backwards compat cruft and deprecated entries
4+
- Add log levels with VERBOSE_LOGS last json entry of 0, 1, 2, 3 or 100
5+
- Spoof sys.usb.state to DroidGuard by default to hide USB Debugging
6+
- Update example json for properties
7+
- Add migration script to automatically upgrade old custom.pif.json during install/update (may also be run manually)
8+
9+
## Custom Fork v4
210
- Very verbose logging (for now)
311
- Allow spoofing literally any field from android.os.Build or android.os.Build.VERSION
412
- Add BUILD_ID and VNDK_VERSION support to keep cross-fork API compatibility
513
- Add exceptions for FIRST_API_VERSION (actually DEVICE_INITIAL_SDK_INT) and BUILD_ID (actually ID) for backwards API compatibility
614
- Add empty example.pif.json with reference link
715
- Fix GMS crashes if a null/bad value was read from json
816

9-
# Custom Fork v3
10-
- Combine system.prop (runs at post-fs-data) entries into service.sh so that they're only set if needed
11-
- Clean up GMS data pif.prop/pif.json files left over from previous releases to ensure they don't trigger detection
12-
- Use custom.pif.json for custom spoofing if it exists, self-contained in the module directory, and restore it after module updates
13-
- Move props that need to be changed earlier into post-fs-data.sh
14-
- Warn of possible conflict if MagiskHidePropsConfig (MHPC) is installed
15-
- Continue to use ShadowHook for now
16-
17+
###[Previous changelogs](https://github.com/osm0sis/PlayIntegrityFork/releases)

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ You can fill out the included template [example.pif.json](https://raw.githubuser
2525

2626
You can't use values from recent devices due them triggering full hardware backed attestation.
2727

28+
Older formatted custom.pif.json files from cross-forks and previous releases will be automatically migrated to the latest format.
29+
2830
<details>
2931
<summary>Resources</summary>
3032

module/module.prop

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
id=playintegrityfix
22
name=Play Integrity Fork
3-
version=v4
4-
versionCode=4001
3+
version=v5
4+
versionCode=5000
55
author=osm0sis & chiteroman @ xda-developers
66
description=Fix CTS profile (SafetyNet) and DEVICE verdict (Play Integrity)
77
updateJson=https://raw.githubusercontent.com/osm0sis/PlayIntegrityFork/main/update.json

update.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"version": "v4",
3-
"versionCode": 4000,
4-
"zipUrl": "https://github.com/osm0sis/PlayIntegrityFork/releases/download/v4/PlayIntegrityFork-v4.zip",
2+
"version": "v5",
3+
"versionCode": 5000,
4+
"zipUrl": "https://github.com/osm0sis/PlayIntegrityFork/releases/download/v5/PlayIntegrityFork-v5.zip",
55
"changelog": "https://raw.githubusercontent.com/osm0sis/PlayIntegrityFork/main/CHANGELOG.md"
66
}

0 commit comments

Comments
 (0)