jareddantis / simple-deodexer

A simple Android application deodexer for Linux & macOS
17 stars 11 forks source link

Adapted java version check to work with newer versions #9

Closed sthocs closed 5 years ago

sthocs commented 5 years ago

Recent java versions have a 2 digit version number (e.g. 11.0.4) so the string comparison against 1.7 fails. -> Added first an integer check against the major version.

jareddantis commented 5 years ago

Good catch, thanks!