mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-01-19 03:22:39 +02:00
v15.4 release!
This commit is contained in:
parent
c17885ab4a
commit
000057c818
@ -300,23 +300,19 @@ private:
|
|||||||
|
|
||||||
json.erase("FIRST_API_LEVEL");
|
json.erase("FIRST_API_LEVEL");
|
||||||
|
|
||||||
|
} else if (json.contains("DEVICE_INITIAL_SDK_INT")) {
|
||||||
|
|
||||||
|
if (json["DEVICE_INITIAL_SDK_INT"].is_number_integer()) {
|
||||||
|
|
||||||
|
FIRST_API_LEVEL = std::to_string(json["DEVICE_INITIAL_SDK_INT"].get<int>());
|
||||||
|
|
||||||
|
} else if (json["DEVICE_INITIAL_SDK_INT"].is_string()) {
|
||||||
|
|
||||||
|
FIRST_API_LEVEL = json["DEVICE_INITIAL_SDK_INT"].get<std::string>();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
if (json.contains("DEVICE_INITIAL_SDK_INT")) {
|
LOGD("JSON file doesn't contain FIRST_API_LEVEL or DEVICE_INITIAL_SDK_INT keys :(");
|
||||||
|
|
||||||
if (json["DEVICE_INITIAL_SDK_INT"].is_number_integer()) {
|
|
||||||
|
|
||||||
FIRST_API_LEVEL = std::to_string(json["DEVICE_INITIAL_SDK_INT"].get<int>());
|
|
||||||
|
|
||||||
} else if (json["DEVICE_INITIAL_SDK_INT"].is_string()) {
|
|
||||||
|
|
||||||
FIRST_API_LEVEL = json["DEVICE_INITIAL_SDK_INT"].get<std::string>();
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
|
|
||||||
LOGD("JSON file doesn't contain FIRST_API_LEVEL or DEVICE_INITIAL_SDK_INT keys :(");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (json.contains("SECURITY_PATCH")) {
|
if (json.contains("SECURITY_PATCH")) {
|
||||||
|
11
changelog.md
11
changelog.md
@ -2,8 +2,11 @@ We have a Telegram group!
|
|||||||
If you want to share your knowledge join:
|
If you want to share your knowledge join:
|
||||||
https://t.me/playintegrityfix
|
https://t.me/playintegrityfix
|
||||||
|
|
||||||
# v15.3
|
# v15.4
|
||||||
|
|
||||||
- New way to spoof field values!
|
- Spoof Kernel release name! (uname hook)
|
||||||
- Update code logic.
|
- Xiaomi.eu spoofing apps are now replaced correctly!
|
||||||
- Fixed few bugs.
|
- Fixed BUILD_ID / ID spoof code.
|
||||||
|
- Added DEVICE_INITIAL_SDK_INT spoof support from @osm0sis fork!
|
||||||
|
- New way to spoof Java fields from Zygisk.
|
||||||
|
- Using Dobby instead ShadowHook due issues...
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": "v15.2",
|
"version": "v15.4",
|
||||||
"versionCode": 15200,
|
"versionCode": 15400,
|
||||||
"zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v15.2/PlayIntegrityFix_v15.2.zip",
|
"zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v15.4/PlayIntegrityFix_v15.4.zip",
|
||||||
"changelog": "https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/changelog.md"
|
"changelog": "https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/changelog.md"
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user