Merge "Increase the limit on the size of PowerStats log element" into tm-qpr-dev

This commit is contained in:
Dmitri Plotnikov
2022-10-10 23:18:42 +00:00
committed by Android (Google) Code Review

View File

@@ -53,7 +53,7 @@ public class PowerStatsDataStorage {
private static class DataElement {
private static final int LENGTH_FIELD_WIDTH = 4;
private static final int MAX_DATA_ELEMENT_SIZE = 1000;
private static final int MAX_DATA_ELEMENT_SIZE = 32768;
private byte[] mData;