forked from ReVanced/revanced-patches-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(google-recorder): add
remove-device-restrictions
patch
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
...anced/patches/googlerecorder/restrictions/fingereprints/OnApplicationCreateFingerprint.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.googlerecorder.restrictions.fingereprints | ||
|
||
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint | ||
|
||
object OnApplicationCreateFingerprint : MethodFingerprint( | ||
strings = listOf("com.google.android.feature.PIXEL_2017_EXPERIENCE"), | ||
customFingerprint = custom@{ methodDef, classDef -> | ||
if (methodDef.name != "onCreate") return@custom false | ||
|
||
classDef.type.endsWith("RecorderApplication;") | ||
} | ||
) |
42 changes: 42 additions & 0 deletions
42
...kotlin/app/revanced/patches/googlerecorder/restrictions/patch/RemoveDeviceRestrictions.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,42 @@ | ||
package app.revanced.patches.googlerecorder.restrictions.patch | ||
|
||
import app.revanced.extensions.toErrorResult | ||
import app.revanced.patcher.annotation.Description | ||
import app.revanced.patcher.annotation.Name | ||
import app.revanced.patcher.annotation.Version | ||
import app.revanced.patcher.data.BytecodeContext | ||
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction | ||
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction | ||
import app.revanced.patcher.extensions.InstructionExtensions.removeInstructions | ||
import app.revanced.patcher.patch.BytecodePatch | ||
import app.revanced.patcher.patch.PatchResult | ||
import app.revanced.patcher.patch.PatchResultSuccess | ||
import app.revanced.patcher.patch.annotations.Patch | ||
import app.revanced.patches.googlerecorder.restrictions.fingereprints.OnApplicationCreateFingerprint | ||
import org.jf.dexlib2.iface.instruction.OneRegisterInstruction | ||
|
||
@Patch | ||
@Name("remove-device-restrictions") | ||
@Description("Removes restrictions from using the app on any device.") | ||
@Version("0.0.1") | ||
class RemoveDeviceRestrictions : BytecodePatch( | ||
listOf(OnApplicationCreateFingerprint) | ||
) { | ||
override fun execute(context: BytecodeContext): PatchResult { | ||
OnApplicationCreateFingerprint.result?.let { | ||
val featureStringIndex = it.scanResult.stringsScanResult!!.matches.first().index | ||
|
||
it.mutableMethod.apply { | ||
// Remove check for device restrictions. | ||
removeInstructions(featureStringIndex - 2, 5) | ||
|
||
val featureAvailableRegister = getInstruction<OneRegisterInstruction>(featureStringIndex).registerA | ||
|
||
// Override "isPixelDevice()" to return true. | ||
addInstruction(featureStringIndex, "const/4 v$featureAvailableRegister, 0x1") | ||
} | ||
} ?: return OnApplicationCreateFingerprint.toErrorResult() | ||
|
||
return PatchResultSuccess() | ||
} | ||
} |