From d5efe26f8959cde75dd3865ec3c2df4b05210e4a Mon Sep 17 00:00:00 2001 From: johnconner122 <107796137+johnconner122@users.noreply.github.com> Date: Fri, 16 Jun 2023 16:09:40 +0500 Subject: [PATCH] fix(googlerecorder/remove-device-restrictions): add missing app constraint (#2438) --- .../restrictions/patch/RemoveDeviceRestrictions.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/patches/googlerecorder/restrictions/patch/RemoveDeviceRestrictions.kt b/src/main/kotlin/app/revanced/patches/googlerecorder/restrictions/patch/RemoveDeviceRestrictions.kt index 292d43fcf3..cf996cd3b0 100644 --- a/src/main/kotlin/app/revanced/patches/googlerecorder/restrictions/patch/RemoveDeviceRestrictions.kt +++ b/src/main/kotlin/app/revanced/patches/googlerecorder/restrictions/patch/RemoveDeviceRestrictions.kt @@ -18,6 +18,7 @@ import org.jf.dexlib2.iface.instruction.OneRegisterInstruction @Patch @Name("remove-device-restrictions") @Description("Removes restrictions from using the app on any device.") +@Compatibility([Package("com.google.android.apps.recorder")]) @Version("0.0.1") class RemoveDeviceRestrictions : BytecodePatch( listOf(OnApplicationCreateFingerprint) @@ -39,4 +40,4 @@ class RemoveDeviceRestrictions : BytecodePatch( return PatchResultSuccess() } -} \ No newline at end of file +}