feat(photoshopmix): Fix improper fingerprints
This commit is contained in:
parent
9dd341e461
commit
5ac0bb6e47
1 changed files with 13 additions and 8 deletions
|
|
@ -2,22 +2,27 @@ package app.revanced.patches.photoshopmix
|
|||
|
||||
import app.revanced.patcher.definingClass
|
||||
import app.revanced.patcher.gettingFirstMethodDeclaratively
|
||||
import app.revanced.patcher.name
|
||||
import app.revanced.patcher.patch.BytecodePatchContext
|
||||
import app.revanced.patcher.returnType
|
||||
|
||||
internal val BytecodePatchContext.disableLoginMethod by gettingFirstMethodDeclaratively("isLoggedIn") {
|
||||
internal val BytecodePatchContext.disableLoginMethod by gettingFirstMethodDeclaratively{
|
||||
name("isLoggedIn")
|
||||
definingClass("CreativeCloudSource;")
|
||||
returnType("Z")
|
||||
definingClass("/CreativeCloudSource;")
|
||||
}
|
||||
|
||||
internal val BytecodePatchContext.libButtonClickedMethod by gettingFirstMethodDeclaratively("ccLibButtonClickHandler") {
|
||||
definingClass("/PSMixFragment;")
|
||||
internal val BytecodePatchContext.libButtonClickedMethod by gettingFirstMethodDeclaratively {
|
||||
name("ccLibButtonClickHandler")
|
||||
definingClass("PSMixFragment;")
|
||||
}
|
||||
|
||||
internal val BytecodePatchContext.lightroomButtonClickedMethod by gettingFirstMethodDeclaratively("lightroomButtonClickHandler") {
|
||||
definingClass("/PSMixFragment;")
|
||||
internal val BytecodePatchContext.lightroomButtonClickedMethod by gettingFirstMethodDeclaratively {
|
||||
name("lightroomButtonClickHandler")
|
||||
definingClass("PSMixFragment;")
|
||||
}
|
||||
|
||||
internal val BytecodePatchContext.ccButtonClickedMethod by gettingFirstMethodDeclaratively("ccButtonClickHandler") {
|
||||
definingClass("/PSMixFragment;")
|
||||
internal val BytecodePatchContext.ccButtonClickedMethod by gettingFirstMethodDeclaratively {
|
||||
name("ccButtonClickHandler")
|
||||
definingClass("PSMixFragment;")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue