Can jdk 11 generate java 7 byte code? Normally, yes, but after trying
jar files are generated but looking at the version:
$ javap -v org/iq80/leveldb/DB.class | grep major
major version: 52
it seems that the java 8 (What version of javac built my jar?) is targeted instead of 7 (which is needed for an android build).
How can I force a build for 7?