-
-
Notifications
You must be signed in to change notification settings - Fork 455
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Spotify - Hide premium navbar): Support latest version
- Loading branch information
Showing
5 changed files
with
53 additions
and
52 deletions.
There are no files selected for viewing
57 changes: 19 additions & 38 deletions
57
src/main/kotlin/app/revanced/patches/spotify/navbar/PremiumNavbarTabPatch.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,32 @@ | ||
package app.revanced.patches.spotify.navbar | ||
|
||
import app.revanced.extensions.exception | ||
import app.revanced.patcher.data.BytecodeContext | ||
import app.revanced.patcher.extensions.InstructionExtensions.removeInstruction | ||
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions | ||
import app.revanced.patcher.patch.BytecodePatch | ||
import app.revanced.patcher.patch.annotation.CompatiblePackage | ||
import app.revanced.patcher.patch.annotation.Patch | ||
import app.revanced.patches.shared.mapping.misc.ResourceMappingPatch | ||
import app.revanced.patches.spotify.navbar.fingerprints.AddPremiumNavbarTabFingerprint | ||
import app.revanced.patches.spotify.navbar.fingerprints.AddPremiumNavbarTabParentFingerprint | ||
import com.android.tools.smali.dexlib2.Opcode | ||
import com.android.tools.smali.dexlib2.iface.instruction.WideLiteralInstruction | ||
import app.revanced.patches.spotify.navbar.fingerprints.AddNavBarItemFingerprint | ||
|
||
@Patch( | ||
name = "Hide premium navbar", | ||
description = "Removes the premium tab from the navbar.", | ||
dependencies = [ResourceMappingPatch::class], | ||
dependencies = [PremiumNavbarTabResourcePatch::class], | ||
compatiblePackages = [CompatiblePackage("com.spotify.music")] | ||
) | ||
@Suppress("unused") | ||
object PremiumNavbarTabPatch : BytecodePatch(setOf(AddPremiumNavbarTabParentFingerprint)) { | ||
override fun execute(context: BytecodeContext) { | ||
val parentResult = AddPremiumNavbarTabParentFingerprint.result!! | ||
AddPremiumNavbarTabFingerprint.resolve(context, parentResult.classDef) | ||
|
||
val result = AddPremiumNavbarTabFingerprint.result!! | ||
|
||
val method = result.mutableMethod | ||
val methodInstructions = method.implementation!!.instructions | ||
val lastInstructionIdx = methodInstructions.size - 1 | ||
|
||
val premiumTabId = | ||
ResourceMappingPatch.resourceMappings.single { it.type == "id" && it.name == "premium_tab" }.id | ||
|
||
var removeAmount = 2 | ||
// 2nd const remove method | ||
for ((i, instruction) in methodInstructions.asReversed().withIndex()) { | ||
if (instruction.opcode.ordinal != Opcode.CONST.ordinal) continue | ||
if ((instruction as WideLiteralInstruction).wideLiteral != premiumTabId) continue | ||
|
||
val findThreshold = 10 | ||
val constIndex = lastInstructionIdx - i | ||
val invokeInstruction = methodInstructions.subList(constIndex, constIndex + findThreshold).first { | ||
it.opcode.ordinal == Opcode.INVOKE_VIRTUAL_RANGE.ordinal | ||
} | ||
method.removeInstruction(methodInstructions.indexOf(invokeInstruction)) | ||
|
||
if (--removeAmount == 0) break | ||
} | ||
} | ||
} | ||
object PremiumNavbarTabPatch : BytecodePatch( | ||
setOf(AddNavBarItemFingerprint) | ||
) { | ||
// If the navigation bar item is the premium tab, do not add it. | ||
override fun execute(context: BytecodeContext) = AddNavBarItemFingerprint.result?.mutableMethod?.addInstructions( | ||
0, | ||
""" | ||
const v1, ${PremiumNavbarTabResourcePatch.premiumTabId} | ||
if-ne p5, v1, :continue | ||
return-void | ||
:continue | ||
nop | ||
""" | ||
) ?: throw AddNavBarItemFingerprint.exception | ||
} |
22 changes: 22 additions & 0 deletions
22
src/main/kotlin/app/revanced/patches/spotify/navbar/PremiumNavbarTabResourcePatch.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package app.revanced.patches.spotify.navbar | ||
|
||
import app.revanced.patcher.data.ResourceContext | ||
import app.revanced.patcher.patch.ResourcePatch | ||
import app.revanced.patcher.patch.annotation.Patch | ||
import app.revanced.patches.shared.mapping.misc.ResourceMappingPatch | ||
|
||
@Patch(dependencies = [ResourceMappingPatch::class]) | ||
object PremiumNavbarTabResourcePatch : ResourcePatch() { | ||
internal var showBottomNavigationItemsTextId = -1L | ||
internal var premiumTabId = -1L | ||
|
||
override fun execute(context: ResourceContext) { | ||
premiumTabId = ResourceMappingPatch.resourceMappings.single { | ||
it.type == "id" && it.name == "premium_tab" | ||
}.id | ||
|
||
showBottomNavigationItemsTextId = ResourceMappingPatch.resourceMappings.single { | ||
it.type == "bool" && it.name == "show_bottom_navigation_items_text" | ||
}.id | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/app/revanced/patches/spotify/navbar/fingerprints/AddNavBarItemFingerprint.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package app.revanced.patches.spotify.navbar.fingerprints | ||
|
||
import app.revanced.patcher.extensions.or | ||
import app.revanced.patches.spotify.navbar.PremiumNavbarTabResourcePatch | ||
import app.revanced.util.patch.LiteralValueFingerprint | ||
import com.android.tools.smali.dexlib2.AccessFlags | ||
|
||
object AddNavBarItemFingerprint : LiteralValueFingerprint( | ||
returnType = "V", | ||
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL, | ||
literalSupplier = { PremiumNavbarTabResourcePatch.showBottomNavigationItemsTextId }, | ||
) |
7 changes: 0 additions & 7 deletions
7
...kotlin/app/revanced/patches/spotify/navbar/fingerprints/AddPremiumNavbarTabFingerprint.kt
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
.../app/revanced/patches/spotify/navbar/fingerprints/AddPremiumNavbarTabParentFingerprint.kt
This file was deleted.
Oops, something went wrong.