Skip to content

Commit

Permalink
fix(youtube-music/bypass-certificate-checks): fix fingerprint for the…
Browse files Browse the repository at this point in the history
… latest target app (#2567)
  • Loading branch information
LisoUseInAIKyrios committed Jul 2, 2023
1 parent 58abb9e commit 8eacb5b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
package app.revanced.patches.music.misc.androidauto.fingerprints

import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import org.jf.dexlib2.AccessFlags

object CheckCertificateFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL,
returnType = "Z",
parameters = listOf("Ljava/lang/String;"),
strings = listOf("X509", "Failed to get public key.", "Failed to get certificate.")
strings = listOf("X509", "Failed to get certificate.")
)

0 comments on commit 8eacb5b

Please sign in to comment.