generated from ReVanced/revanced-patches-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d57ec49
commit 1aa098c
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
src/main/kotlin/dropped/patches/nova/prime/fingerprints/UnlockPrimeFingerprint.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,16 @@ | ||
package app.revanced.patches.nova.prime.fingerprints | ||
|
||
import app.revanced.patcher.fingerprint.MethodFingerprint | ||
import org.jf.dexlib2.Opcode | ||
|
||
object UnlockPrimeFingerprint : MethodFingerprint( | ||
"V", | ||
opcodes = listOf( | ||
Opcode.IPUT_OBJECT, | ||
Opcode.CONST_STRING, | ||
Opcode.CONST_4, | ||
Opcode.INVOKE_INTERFACE, | ||
Opcode.MOVE_RESULT | ||
), | ||
strings = listOf("1") | ||
) |
45 changes: 45 additions & 0 deletions
45
src/main/kotlin/dropped/patches/nova/prime/patch/UnlockPrimePatch.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,45 @@ | ||
package app.revanced.patches.nova.prime.patch | ||
|
||
import app.revanced.patcher.patch.PatchException | ||
import app.revanced.patcher.data.BytecodeContext | ||
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction | ||
import app.revanced.patcher.patch.BytecodePatch | ||
import app.revanced.patcher.patch.PatchResult | ||
import app.revanced.patcher.patch.annotations.Patch | ||
import app.revanced.patches.nova.prime.fingerprints.UnlockPrimeFingerprint | ||
import org.jf.dexlib2.builder.instruction.BuilderInstruction11x | ||
|
||
@Patch( | ||
name = "Unlock prime", | ||
description = "Unlocks Nova Prime and all functions of the app.", | ||
compatiblePackages = [CompatiblePackage("com.teslacoilsw.launcher")] | ||
) | ||
object UnlockPrimePatch : BytecodePatch( | ||
setOf( | ||
UnlockPrimeFingerprint | ||
) | ||
) { | ||
private companion object { | ||
// Any value except 0 unlocks prime, but 512 is needed for a protection mechanism | ||
// which would reset the preferences if the value on disk had changed after a restart. | ||
const val PRIME_STATUS: Int = 512 | ||
} | ||
|
||
override fun execute(context: BytecodeContext): PatchResult { | ||
UnlockPrimeFingerprint.result?.apply { | ||
val insertIndex = scanResult.patternScanResult!!.endIndex + 1 | ||
|
||
val primeStatusRegister = | ||
(mutableMethod.implementation!!.instructions[insertIndex - 1] as BuilderInstruction11x).registerA | ||
|
||
mutableMethod.addInstruction( | ||
insertIndex, | ||
""" | ||
const/16 v$primeStatusRegister, $PRIME_STATUS | ||
""" | ||
) | ||
} ?: return UnlockPrimeFingerprint.PatchException() | ||
|
||
return PatchResult() | ||
} | ||
} |