Device Fingerprint Generator

Generate PRODUCT_PROPERTY_OVERRIDES to spoof a certified device's fingerprint and pass Play Integrity API checks on custom ROMs.

Select Certified Device

Choose a device to mimic its build properties.

Selected Device Properties

Manufacturer:
Google
Model:
Pixel 8 Pro
Security Patch:
2023-10-05

device.mk Snippet

# Device Spoofing for Play Integrity / SafetyNet
PRODUCT_PROPERTY_OVERRIDES += \
    ro.product.brand=google \
    ro.product.manufacturer=Google \
    ro.product.model=Pixel 8 Pro \
    ro.product.device=husky \
    ro.product.name=husky \
    ro.build.fingerprint=google/husky/husky:14/UD1A.230803.041/10822603:user/release-keys \
    ro.build.version.security_patch=2023-10-05
Note: Some advanced detections may require hooking the kernel or bypassing hardware-backed attestation (e.g., via PlayIntegrityFix module), but these properties are a required baseline.