fix: sony sound connect
This commit is contained in:
parent
547657109b
commit
9eb35aeebd
1 changed files with 5 additions and 1 deletions
|
|
@ -23,7 +23,11 @@ internal val BytecodePatchContext.createTabsMethod by gettingFirstMethodDeclarat
|
|||
internal val BytecodePatchContext.showNotificationMethod by gettingFirstMethodDeclaratively {
|
||||
accessFlags(AccessFlags.PUBLIC)
|
||||
returnType("V")
|
||||
instructions(method { MethodUtil.methodSignaturesMatch(this, expectedReference) })
|
||||
instructions(method {
|
||||
definingClass == expectedReference.definingClass
|
||||
&& parameterTypes == expectedReference.parameterTypes
|
||||
&& returnType == expectedReference.returnType
|
||||
})
|
||||
}
|
||||
|
||||
internal val expectedReference = ImmutableMethodReference(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue