diff options
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/QSTileHost.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/QSTileHost.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/QSTileHost.java index c77e7e4..0b19cf6 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/QSTileHost.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/QSTileHost.java @@ -343,6 +343,7 @@ public class QSTileHost implements QSTile.Host, Tunable { else if (tileSpec.equals("cast")) return new CastTile(this); else if (tileSpec.equals("hotspot")) return new HotspotTile(this); else if (tileSpec.equals("edit")) return new EditTile(this); + else if (tileSpec.equals("adb_network")) return new AdbOverNetworkTile(this); else if (tileSpec.equals("compass")) return new CompassTile(this); else if (tileSpec.equals("nfc")) return new NfcTile(this); else if (tileSpec.equals("profiles")) return new ProfilesTile(this); |