From 70328c5a655cce9dbfe8ca17d932742ecb067489 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Mon, 12 Jan 2026 17:17:11 +0700 Subject: [PATCH] fix(photomath/Spoof Device Id): Switch import naming --- .../photomath/detection/deviceid/SpoofDeviceIdPatch.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/src/main/kotlin/app/revanced/patches/photomath/detection/deviceid/SpoofDeviceIdPatch.kt b/patches/src/main/kotlin/app/revanced/patches/photomath/detection/deviceid/SpoofDeviceIdPatch.kt index 8e955ed28..303517a70 100644 --- a/patches/src/main/kotlin/app/revanced/patches/photomath/detection/deviceid/SpoofDeviceIdPatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/photomath/detection/deviceid/SpoofDeviceIdPatch.kt @@ -1,7 +1,7 @@ package app.revanced.patches.photomath.detection.deviceid import app.revanced.patcher.patch.creatingBytecodePatch -import app.revanced.patches.photomath.detection.signature.signatureDetectionPatch +import app.revanced.patches.photomath.detection.signature.`Signature detection` import app.revanced.util.returnEarly import kotlin.random.Random @@ -9,7 +9,7 @@ import kotlin.random.Random val `Spoof device ID` by creatingBytecodePatch( description = "Spoofs device ID to mitigate manual bans by developers.", ) { - dependsOn(signatureDetectionPatch) + dependsOn(`Signature detection`) compatibleWith("com.microblink.photomath")