Unverified Commit b5ca595d authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Remove icudtl.dat from APK asset size checks (#27505)

parent 5b828764
......@@ -359,7 +359,6 @@ class CompileTest {
fileToMetadata[entry.path] = entry;
}
final _UnzipListEntry icudtl = fileToMetadata['assets/flutter_shared/icudtl.dat'];
final _UnzipListEntry libflutter = fileToMetadata['lib/armeabi-v7a/libflutter.so'];
final _UnzipListEntry isolateSnapshotData = fileToMetadata['assets/isolate_snapshot_data'];
final _UnzipListEntry isolateSnapshotInstr = fileToMetadata['assets/isolate_snapshot_instr'];
......@@ -368,8 +367,6 @@ class CompileTest {
final _UnzipListEntry license = fileToMetadata['assets/flutter_assets/LICENSE'];
return <String, dynamic>{
'icudtl_uncompressed_bytes': icudtl.uncompressedSize,
'icudtl_compressed_bytes': icudtl.compressedSize,
'libflutter_uncompressed_bytes': libflutter.uncompressedSize,
'libflutter_compressed_bytes': libflutter.compressedSize,
'snapshot_uncompressed_bytes': isolateSnapshotData.uncompressedSize +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment