You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
350 B
16 lines
350 B
Test for two files with an odd size in a vdex file.
|
|
|
|
The code in boths file 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.
|
|
|