Guide How To Disable Signature From services.jar

In this tutorial, we will discuss how to disable signature. As we know, to modify the Android system application, we need to first disable the signature in the framework / service.jar.

Here we will use the help of the Lucky Patcher application to complete this task. To use Lucky Patcher first, your Android device is rooted.

How To Disable Signature Check Using Lucky Patcher

  • Download Lucky Patcher And Install.
  • Open Lucky Patcher.
  • Tap ToolboxPatch To AndroidDisassemble Signature Manager
  • Tap Apply And Automatic Reboot.

If you dont like using lucky patcher, you can using this tutorial to disable signature with decompile services.jar. here this tutorial:

Decompile services.jar
Open smali\com\android\server\pm\PackageManagerService. smali With Notepad++
Find This Method :

.method static compareSignatures

Delete That Line Until Its End Method :

.method static compareSignatures([Landroid/content/pm/Signature;[Landroid/content/pm/Signature;)I
-
-
-
- Delete Until Its End Method
-
-
-
.end method

And Replace With :

.method static compareSignatures([Landroid/content/pm/Signature;[Landroid/content/pm/Signature;)I
    .registers 9

    const/4 v0, 0x0

    return v0
.end method

After you change the PackageManagerService.smali code as above, save and recompile it.

Now, you know the way you can disable signature on service jar in just some clicks with the help of Lucky Patcher. I hope you will find this article very useful and the way you can install this application on your phone.

Thank you for visiting and keep visiting for more tips and tricks like this, and I will meet you in the next one. If you find any difficulty while following this article, then you can comment below, and I will help you out with an immediate fix.