Quote:
Originally Posted by scrosler
Do you know how to properly remove the GPS Icon from stat bar?
|
This MOD will hide the GPS status reticle and
This was made possible by RMarkwald!
This guide is a reference for the smali code change that must be made inside of SystemUI.apk to properly hide the GPS icons.
You need to edit \com\android\systemui\statusbar\policy\HtcCdmaStat usBar.smali
Search for:
Code:
.method private updateMtGpsIcon()V
.registers 8
.prologue
const/4 v5, 0x3
const/4 v4, 0x1
const/4 v3, 0x0
const-string v6, "gpsone"
Replace with:
Code:
.method private updateMtGpsIcon()V
.registers 8
.prologue
const/4 v5, 0x3
const/4 v4, 0x0
const/4 v3, 0x0
const-string v6, "gpsone"