I modded the Clock.smali file by decompiling only the classes.dex file from the SystemUI.apk. Search for the line:
invoke-virtual {p0}, Lcom/android/systemui/statusbar/Clock;->updateClock()V
Paste the following two lines (shown below in
RED) above the line we searched for, so the finished product looks like:
const v1, 0x8
invoke-virtual {p0, v1}, Lcom/android/systemui/statusbar/Clock;->setVisibility(I)V
invoke-virtual {p0}, Lcom/android/systemui/statusbar/Clock;->updateClock()V
The SystemUI.apk attached has the clock hidden from the status bar, as well as the location icon. Feel free to use as needed, no permission needed to use it. This is the SystemUI.apk from 4.08, so it may not work with the prior OTA of 4.06 since it was modified.
Let me know if it works.