0

I built my own custom ROM from AOSP Source using Google Cloud Platform. I synced and compiled everything into a flash able zip. Everything works fine except the signal strength keeps flickering (empty cellular signal strength) which I've never seen on any stock ROM. Like this:

enter image description here

I am very new to compiling custom ROM so I'd like some guide on which files to edit from the files I've synced from source to "fake" the empty cellular signal strength to a minimum signal strength like this.

enter image description here

Any guidance is really appreciated. Thank you!

esQmo_
  • 1,464
  • 3
  • 18
  • 43
iJusPan
  • 15
  • 8

1 Answers1

0

Afaik, SystemUI package is the place to start. (frameworks/base/packages/SystemUI).

// Android N based.
// Mobile network Signal Strength icons
com.android.systemui.statusbar.policy.TelephonyIcons

// Control which icons to be displayed?
com.android.systemui.statusbar.policy.MobileSignalController

// Place holder where signal icon is displayed.
com.android.systemui.statusbar.SignalClusterView
You Kim
  • 2,355
  • 1
  • 10
  • 11