Loading packages/SystemUI/src/com/android/systemui/qs/external/TileServices.java +17 −0 Original line number Diff line number Diff line Loading @@ -344,9 +344,26 @@ public class TileServices extends IQSService.Stub { verifyCaller(customTile); return customTile.getQsTile(); } Log.e(TAG, "Tile for token " + token + "not found. " + "Tiles in map: " + availableTileComponents()); return null; } private String availableTileComponents() { StringBuilder sb = new StringBuilder("["); synchronized (mServices) { mTokenMap.forEach((iBinder, customTile) -> sb.append(iBinder.toString()) .append(":") .append(customTile.getComponent().flattenToShortString()) .append(":") .append(customTile.getUser()) .append(",")); } sb.append("]"); return sb.toString(); } @Override public void startUnlockAndRun(IBinder token) { CustomTile customTile = getTileForToken(token); Loading Loading
packages/SystemUI/src/com/android/systemui/qs/external/TileServices.java +17 −0 Original line number Diff line number Diff line Loading @@ -344,9 +344,26 @@ public class TileServices extends IQSService.Stub { verifyCaller(customTile); return customTile.getQsTile(); } Log.e(TAG, "Tile for token " + token + "not found. " + "Tiles in map: " + availableTileComponents()); return null; } private String availableTileComponents() { StringBuilder sb = new StringBuilder("["); synchronized (mServices) { mTokenMap.forEach((iBinder, customTile) -> sb.append(iBinder.toString()) .append(":") .append(customTile.getComponent().flattenToShortString()) .append(":") .append(customTile.getUser()) .append(",")); } sb.append("]"); return sb.toString(); } @Override public void startUnlockAndRun(IBinder token) { CustomTile customTile = getTileForToken(token); Loading