blob: 256c77de9c0c492d34d9af808d3f7a25cfa82d23 [file] [log] [blame]
Test for a dex file with an odd size followed by an aligned dex file.
The code in classes.dex is:
class Main {
public static void main(String[] args) {
System.out.println("HelloWorld");
}
}
The generated dex file was then manually edited to:
1) Add 1 to the size value in the dex header.
2) Add 1 byte to the file.
3) Change the checksum in the dex header.
The code in classes2.dex is:
class Foo {
}