3
0
Fork 0

PIHooks: Update fingerprint to Pixel 9 Pro XL

Change-Id: Ib29c9d619a362945979c290cf69f7993319eb6c0
This commit is contained in:
ralph950412 2024-08-14 21:27:31 +08:00
parent df11180a57
commit 15c6646d40
1 changed files with 10 additions and 10 deletions

View File

@ -56,15 +56,15 @@ public class PropImitationHooks {
private static final ComponentName GMS_ADD_ACCOUNT_ACTIVITY = ComponentName.unflattenFromString(
"com.google.android.gms/.auth.uiflows.minutemaid.MinuteMaidActivity");
private static final Map<String, String> sPixelEightProps = Map.of(
"PRODUCT", "husky",
"DEVICE", "husky",
"HARDWARE", "husky",
private static final Map<String, String> sPixelNineProps = Map.of(
"PRODUCT", "komodo",
"DEVICE", "komodo",
"HARDWARE", "komodo",
"MANUFACTURER", "Google",
"BRAND", "google",
"MODEL", "Pixel 8 Pro",
"ID", "AP2A.240805.005",
"FINGERPRINT", "google/husky/husky:14/AP2A.240805.005/12025142:user/release-keys"
"MODEL", "Pixel 9 Pro XL",
"ID", "AD1A.240530.047",
"FINGERPRINT", "google/komodo/komodo:14/AD1A.240530.047/12143574:user/release-keys"
);
private static final Map<String, String> sPixelTabletProps = Map.of(
@ -136,7 +136,7 @@ public class PropImitationHooks {
/* Set certified properties for GMSCore
* Set stock fingerprint for ARCore
* Set Pixel 8 Pro / Pixel Tablet for Google, ASI and GMS device configurator
* Set Pixel 9 Pro XL / Pixel Tablet for Google, ASI and GMS device configurator
*/
switch (processName) {
case PROCESS_GMS_UNSTABLE:
@ -154,8 +154,8 @@ public class PropImitationHooks {
dlog("Spoofing Pixel Tablet for: " + packageName + " process: " + processName);
setProps(sPixelTabletProps);
} else {
dlog("Spoofing Pixel 8 Pro for: " + packageName + " process: " + processName);
setProps(sPixelEightProps);
dlog("Spoofing Pixel 9 Pro XL for: " + packageName + " process: " + processName);
setProps(sPixelNineProps);
}
return;
case PACKAGE_ARCORE: