HPK

mesothelioma survival rates,structured settlement annuity companies,mesothelioma attorneys california,structured settlements annuities,structured settlement buyer,mesothelioma suit,mesothelioma claim,small business administration sba,structured settlement purchasers,wisconsin mesothelioma attorney,houston tx auto insurance,mesotheliama,mesothelioma lawyer virginia,seattle mesothelioma lawyer,selling my structured settlement,mesothelioma attorney illinois,selling annuity,mesothelioma trial attorney,injury lawyer houston tx,baltimore mesothelioma attorneys,mesothelioma care,mesothelioma lawyer texas,structered settlement,houston motorcycle accident lawyer,p0135 honda civic 2004,structured settlement investments,mesothelioma lawyer dallas,caraccidentlawyer,structured settlemen,houston mesothelioma attorney,structured settlement sell,new york mesothelioma law firm,cash out structured settlement,mesothelioma lawyer chicago,lawsuit mesothelioma,truck accident attorney los angeles,asbestos exposure lawyers,mesothelioma cases,emergency response plan ppt,support.peachtree.com,structured settlement quote,semi truck accident lawyers,auto accident attorney Torrance,mesothelioma lawyer asbestos cancer lawsuit,mesothelioma lawyers san diego,asbestos mesothelioma lawsuit,buying structured settlements,mesothelioma attorney assistance,tennessee mesothelioma lawyer,earthlink business internet,meso lawyer,tucson car accident attorney,accident attorney orange county,mesothelioma litigation,mesothelioma settlements amounts,mesothelioma law firms,new mexico mesothelioma lawyer,accident attorneys orange county,mesothelioma lawsuit,personal injury accident lawyer,purchase structured settlements,firm law mesothelioma,car accident lawyers los angeles,mesothelioma attorneys,structured settlement company,auto accident lawyer san francisco,mesotheolima,los angeles motorcycle accident lawyer,mesothelioma attorney florida,broward county dui lawyer,state of california car insurance,selling a structured settlement,best accident attorneys,accident attorney san bernardino,mesothelioma ct,hughes net business,california motorcycle accident lawyer,mesothelioma help,washington mesothelioma attorney,best mesothelioma lawyers,diagnosed with mesothelioma,motorcycle accident attorney chicago,structured settlement need cash now,mesothelioma settlement amounts,motorcycle accident attorney sacramento,alcohol rehab center in florida,fast cash for house,car accident lawyer michigan,maritime lawyer houston,mesothelioma personal injury lawyers,personal injury attorney ocala fl,business voice mail service,california mesothelioma attorney,offshore accident lawyer,buy structured settlements,philadelphia mesothelioma lawyer,selling structured settlement,workplace accident attorney,illinois mesothelioma lawyer

Menu Navigasi

Cara Disable Signature Verification

System di android selalu melakukan verifikasi signature jika terjadi perubahan pada AndroidManifest nya, jika ternyata berbeda system akan gagal memverifikasi alias aplikasi akan terhenti.

Cara ini merupakan lanjutan dari postingan saya sebelumnya, setelah kita melakukan decompile dan recompile pada salah satu aplikasi, sebelum memasukannya kedalam system langkah yang harus ditempuh adalah merubah atau disable signature verification terlebih dahulu di services.jar nya supaya tidak terjadi force close saat dimasukkan kembali.

Saya akan share ulang Guide dari forum xda yang sudah berhasil diterapkan di hp saya. Tutorial ini sangat simpel cuma copas kode saja dan yang penting tahu cara decompile recompile terlebih dahulu.

Yang pertama, decompile services.jar yang ada di system/framework/disini.

Kedua, buka
smali\com\android\server\pm\PackageManagerService.smali
Bisa memakai 920 Text Editor ataupun Notepad++ jika pakai PC.

Ketiga, Cari kode ini method static compareSignatures

Keempat, block semua kode dibawah ini (setiap hp berbeda line nya)
method static compareSignatures([Landroid/content/pm/Signature;[Landroid/content/pm/Signature;)I
.locals 7
.parameter "s1"
.parameter "s2"

.prologue
.line 2160
if-nez p0, :cond_8

.line 2161
if-nez p1, :cond_6

const/4 v6, 0x1

.line 2180
:goto_5
return v6

.line 2161
:cond_6
const/4 v6, -0x1

goto :goto_5

.line 2165
:cond_8
if-nez p1, :cond_c

.line 2166
const/4 v6, -0x2

goto :goto_5

.line 2168
:cond_c
new-instance v3, Ljava/util/HashSet;

invoke-direct {v3}, Ljava/util/HashSet;->()V

.line 2169
.local v3, set1:Ljava/util/HashSet;,"Ljava/util/HashSet;"
move-object v0, p0

.local v0, arr$:[Landroid/content/pm/Signature;
array-length v2, v0

.local v2, len$:I
const/4 v1, 0x0

.local v1, i$:I
:goto_14
if-ge v1, v2, :cond_1e

aget-object v5, v0, v1

.line 2170
.local v5, sig:Landroid/content/pm/Signature;
invoke-virtual {v3, v5}, Ljava/util/HashSet;->add(Ljava/lang/Object;)Z

.line 2169
add-int/lit8 v1, v1, 0x1

goto :goto_14

.line 2172
.end local v5 #sig:Landroid/content/pm/Signature;
:cond_1e
new-instance v4, Ljava/util/HashSet;

invoke-direct {v4}, Ljava/util/HashSet;->()V

.line 2173
.local v4, set2:Ljava/util/HashSet;,"Ljava/util/HashSet;"
move-object v0, p1

array-length v2, v0

const/4 v1, 0x0

:goto_26
if-ge v1, v2, :cond_30

aget-object v5, v0, v1

.line 2174
.restart local v5 #sig:Landroid/content/pm/Signature;
invoke-virtual {v4, v5}, Ljava/util/HashSet;->add(Ljava/lang/Object;)Z

.line 2173
add-int/lit8 v1, v1, 0x1

goto :goto_26

.line 2177
.end local v5 #sig:Landroid/content/pm/Signature;
:cond_30
invoke-virtual {v3, v4}, Ljava/util/HashSet;->equals(Ljava/lang/Object;)Z

move-result v6

if-eqz v6, :cond_38

.line 2178
const/4 v6, 0x0

goto :goto_5

.line 2180
:cond_38
const/4 v6, -0x3

goto :goto_5
.end method

Kelima, Replace atau ganti semua kode diatas dengan kode dibawah ini
.method static compareSignatures([Landroid/content/pm/Signature;[Landroid/content/pm/Signature;)I
.locals 7

const/4 v0, 0x0

return v0
.end method

Jika selesai simpan dan recompile kembali. Rename dan pindahkan keasalnya set permission rw-r--r-- (0644) lalu reboot. Atau bisa juga dibuat flashable zip dan flash via recovery tapi untuk tutor mungkin next.
(DWYOR)
Bagikan ke Facebook

Artikel Terkait