Skip to content

Commit

Permalink
chore: Update fingerprint
Browse files Browse the repository at this point in the history
The compiler of ReVanced Integrations now compiles the target method without `AccessFlags.Public`.
  • Loading branch information
oSumAtrIX committed Feb 22, 2024
1 parent 6b0fda1 commit cb3d715
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import app.revanced.patcher.fingerprint.MethodFingerprint
import com.android.tools.smali.dexlib2.AccessFlags

internal object LithoFilterFingerprint : MethodFingerprint(
accessFlags = AccessFlags.PUBLIC or AccessFlags.STATIC or AccessFlags.CONSTRUCTOR,
accessFlags = AccessFlags.STATIC or AccessFlags.CONSTRUCTOR,
returnType = "V",
customFingerprint = { _, classDef ->
classDef.type.endsWith("LithoFilterPatch;")
}
)
},
)

0 comments on commit cb3d715

Please sign in to comment.