1Test for an aligned dex file followed by a dex file with an odd size.
2
3The code in classes.dex is:
4
5class Foo {
6}
7
8The code in classes2.dex is:
9
10class Main {
11  public static void main(String[] args) {
12    System.out.println("HelloWorld");
13  }
14}
15
16The generated dex file was then manually edited to:
171) Add 1 to the size value in the dex header.
182) Add 1 byte to the file.
193) Change the checksum in the dex header.
20