This commit is contained in:
chiteroman 2024-01-22 23:37:59 +01:00
parent da6b4d479d
commit abbe5ffb88
4 changed files with 7 additions and 6 deletions

View File

@ -12,8 +12,8 @@ android {
applicationId = "es.chiteroman.playintegrityfix" applicationId = "es.chiteroman.playintegrityfix"
minSdk = 26 minSdk = 26
targetSdk = 34 targetSdk = 34
versionCode = 15300 versionCode = 15310
versionName = "v15.3" versionName = "v15.3.1"
externalNativeBuild { externalNativeBuild {
ndk { ndk {

View File

@ -113,7 +113,6 @@ public:
void onLoad(zygisk::Api *api, JNIEnv *env) override { void onLoad(zygisk::Api *api, JNIEnv *env) override {
this->api = api; this->api = api;
this->env = env; this->env = env;
env->GetJavaVM(&jvm);
} }
void preAppSpecialize(zygisk::AppSpecializeArgs *args) override { void preAppSpecialize(zygisk::AppSpecializeArgs *args) override {
@ -142,6 +141,8 @@ public:
return; return;
} }
env->GetJavaVM(&jvm);
long dexSize = 0, jsonSize = 0; long dexSize = 0, jsonSize = 0;
int fd = api->connectCompanion(); int fd = api->connectCompanion();

View File

@ -1,7 +1,7 @@
id=playintegrityfix id=playintegrityfix
name=Play Integrity Fix name=Play Integrity Fix
version=v15.3 version=v15.3.1
versionCode=15300 versionCode=15310
author=chiteroman author=chiteroman
description=Universal modular fix for Play Integrity (and SafetyNet) on devices running Android 8+. description=Universal modular fix for Play Integrity (and SafetyNet) on devices running Android 8+.
updateJson=https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/update.json updateJson=https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/update.json

View File

@ -1,6 +1,6 @@
{ {
"version": "v15.3", "version": "v15.3",
"versionCode": 15300, "versionCode": 15300,
"zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v15.3/PlayIntegrityFix_v15.3.zip", "zipUrl": "https://github.com/chiteroman/PlayIntegrityFix/releases/download/v15.3/PlayIntegrityFix_v15.3.1.zip",
"changelog": "https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/changelog.md" "changelog": "https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/changelog.md"
} }