I'm trying out Android's D8 and R8.
As the documentation says the command to run D8 is the following:
java -jar build/libs/d8.jar --release --output out input.jar
And for R8:
java -jar build/libs/r8.jar --release --output out --pg-conf proguard.cfg input.jar
I found the d8.jar inside %ANDROID_HOME%\build-tools\28.0.3\lib, but I can't find the r8.jar.
Where r8.jar is located inside Android SDK?