mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-02-23 06:38:49 +08:00
add recognize !
and ?
format
This commit is contained in:
parent
a4086509f9
commit
68255f3601
@ -173,8 +173,14 @@ static void playIntegrityApiHandleNewChecks() {
|
|||||||
if (len > 0 && line[len - 1] == '\n') {
|
if (len > 0 && line[len - 1] == '\n') {
|
||||||
line[len - 1] = '\0';
|
line[len - 1] = '\0';
|
||||||
}
|
}
|
||||||
if (strcmp(line, "android") == 0) android_found = true;
|
|
||||||
else if (strcmp(line, "com.android.vending") == 0) vending_found = true;
|
if (strcmp(line, "android") == 0 || strcmp(line, "android!") == 0 || strcmp(line, "android?") == 0) {
|
||||||
|
android_found = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (strcmp(line, "com.android.vending") == 0 || strcmp(line, "com.android.vending!") == 0 || strcmp(line, "com.android.vending?") == 0) {
|
||||||
|
vending_found = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fseek(file, 0, SEEK_END);
|
fseek(file, 0, SEEK_END);
|
||||||
|
Loading…
Reference in New Issue
Block a user