Skip to content
This repository has been archived by the owner on Jan 19, 2025. It is now read-only.

Commit

Permalink
feat(All - Signature): Add Bypass signature verification checks patch
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Gboard's `Bypass signature verification checks` patch has been removed and replaced with a universal patch.
  • Loading branch information
jkennethcarino committed Apr 1, 2024
1 parent cb632c1 commit 6198c05
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 23 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package dev.jkcarino.revanced.integrations.shared
package dev.jkcarino.revanced.integrations.all.signature

import android.annotation.SuppressLint
import android.app.Application
import android.content.Context
import android.content.pm.PackageInfo
import android.content.pm.PackageManager
import android.content.pm.Signature
import android.util.Base64
import java.io.ByteArrayInputStream
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package dev.jkcarino.revanced.integrations.all.signature

import android.app.Application
import android.content.Context

class SignatureHookApp : Application() {

override fun attachBaseContext(base: Context) {
val pmsHookApplication = PmsHookApplication("<signature>")
pmsHookApplication.hook(base)
super.attachBaseContext(base)
}
}

This file was deleted.

This file was deleted.

0 comments on commit 6198c05

Please sign in to comment.