This is the D8 and R8 integration specification for Xamarin.Android.
At a high level, here are the steps that occur during an Android application's Java compilation:
javaccompiles Java codedesugarremove's the "sugar" (from Java 8 features) that are not fully supported on Android- ProGuard shrinks compiled Java code
dx"dexes" compiled Java code into Android dex format. This is an alternate Java bytecode format supported by the Android platform.
This process has a few issues, such as:
- proguard is made by a third party, and aimed for Java in general (not Android specific)
dxis slower than it could be
So in 2017, Google announced a "next-generation" dex compiler named D8.
- D8 is a direct replacement for
dx - R8 is a replacement for ProGuard, that also "dexes" at the same time. If using R8, a D8 call is not needed.
Both tools have support for various other Android-specifics:
- Both
desugarby default unless the--no-desugaringswitch is specified - Both support multidex, although
d8does not have support for using the ProGuard rules format (the--main-dex-rulesswitch). - R8 has full support for multidex.
Additionally, R8 is geared to be backwards compatible to ProGuard. It uses the same file format for configuration and command-line parameters as ProGuard. However, at the time of writing this, there are still several flags/features not implemented in R8 yet.
For more information on how R8 compares to ProGuard, please see this comparison from the ProGuard team.
You can find the source for D8 and R8 at: https://r8.googlesource.com/r8/
For reference, d8 --help:
Usage: d8 [options] <input-files>
where <input-files> are any combination of dex, class, zip, jar, or apk files
and options are:
--debug # Compile with debugging information (default).
--release # Compile without debugging information.
--output <file> # Output result in <outfile>.
# <file> must be an existing directory or a zip file.
--lib <file> # Add <file> as a library resource.
--classpath <file> # Add <file> as a classpath resource.
--min-api # Minimum Android API level compatibility
--intermediate # Compile an intermediate result intended for later
# merging.
--file-per-class # Produce a separate dex file per input class
--no-desugaring # Force disable desugaring.
--main-dex-list <file> # List of classes to place in the primary dex file.
--version # Print the version of d8.
--help # Print this message.
For reference, r8 --help:
Usage: r8 [options] <input-files>
where <input-files> are any combination of dex, class, zip, jar, or apk files
and options are:
--release # Compile without debugging information (default).
--debug # Compile with debugging information.
--output <file> # Output result in <file>.
# <file> must be an existing directory or a zip file.
--lib <file> # Add <file> as a library resource.
--min-api # Minimum Android API level compatibility.
--pg-conf <file> # Proguard configuration <file>.
--pg-map-output <file> # Output the resulting name and line mapping to <file>.
--no-tree-shaking # Force disable tree shaking of unreachable classes.
--no-minification # Force disable minification of names.
--no-desugaring # Force disable desugaring.
--main-dex-rules <file> # Proguard keep rules for classes to place in the
# primary dex file.
--main-dex-list <file> # List of classes to place in the primary dex file.
--main-dex-list-output <file> # Output the full main-dex list in <file>.
--version # Print the version of r8.
--help # Print this message.
In other words, what is currently happening before we introduce D8/R8 support?
- The Javac
MSBuild task compiles
*.javafiles to aclasses.zipfile. - The Desugar
MSBuild task "desugars" using
desugar_deploy.jarif$(AndroidEnableDesugar)isTrue. - The Proguard
MSBuild task shrinks the compiled Java code if
$(AndroidEnableProguard)isTrue. Developers may also supply custom proguard configuration files viaProguardConfigurationbuild items. - The CreateMultiDexMainDexClassList
MSBuild task runs
proguardto generate a final, combinedmultidex.keepfile if$(AndroidEnableMultiDex)isTrue. Developers can also supply custommultidex.keepfiles viaMultiDexMainDexListbuild items. - The CompileToDalvik
MSBuild task runs
dx.jarto generate a finalclasses.dexfile in$(IntermediateOutputPath)android\bin. Ifmultidexis enabled, aclasses2.dex(and potentially more) are also generated in this location.
Xamarin.Android now has two new MSBuild tasks: <R8/> and <D8/>.
- The Javac MSBuild task will remain unchanged.
D8will run if$(AndroidEnableMultiDex)isFalse,$(AndroidLinkTool)is notr8, and "desugar" by default.- Otherwise,
R8will run if$(AndroidEnableMultiDex)isTrueor$(AndroidLinkTool)isr8and will also "desugar" by default.
So in addition to be being faster in general (if Google's claims are true), we will be calling a single command line tool to produce dex files!
Currently, a csproj file might have the following properties:
<Project>
<PropertyGroup>
<AndroidEnableProguard>True</AndroidEnableProguard>
<AndroidEnableMultiDex>True</AndroidEnableMultiDex>
<AndroidEnableDesugar>True</AndroidEnableDesugar>
</PropertyGroup>
</Project>To enable the new behavior, we have introduced two new enum-style properties:
$(AndroidDexTool)- supportsdxord8$(AndroidLinkTool)- supportsproguardorr8
But for an existing project, a developer could opt-in to the new behavior with two properties:
<Project>
<PropertyGroup>
<AndroidEnableProguard>True</AndroidEnableProguard>
<AndroidEnableMultiDex>True</AndroidEnableMultiDex>
<AndroidEnableDesugar>True</AndroidEnableDesugar>
<!--New properties-->
<AndroidDexTool>d8</AndroidDexTool>
<AndroidLinkTool>r8</AndroidLinkTool>
</PropertyGroup>
</Project>There should be two new MSBuild properties to configure here, because:
- You could use
D8in combination withproguard, asR8is not "feature complete" in comparison toproguard. - You may not want to use code shrinking at all, but still use
D8instead ofdx. - You shouldn't be able to use
dxin combination withR8, it doesn't make sense. - Developers should be able to use the existing properties for
enabling code shrinking,
multidex, anddesugar.
Our reasonable defaults would be:
- If
AndroidDexToolis omitted,dxandCompileToDalvikshould be used. Until D8/R8 integration is deemed stable and enabled by default. - If
AndroidDexToolisd8andAndroidEnableDesugaris omitted,AndroidEnableDesugarshould be enabled. - If
AndroidLinkToolis omitted andAndroidEnableProguardistrue, we should defaultAndroidLinkTooltoproguard.
MSBuild properties default to:
<AndroidDexTool Condition=" '$(AndroidDexTool)' == '' ">dx</AndroidDexTool>
<!--NOTE: $(AndroidLinkTool) would be blank if code shrinking is not used at all-->
<AndroidLinkTool Condition=" '$(AndroidLinkTool)' == '' And '$(AndroidEnableProguard)' == 'True' ">proguard</AndroidLinkTool>
<AndroidEnableDesugar Condition=" '$(AndroidEnableDesugar)' == '' And ('$(AndroidDexTool)' == 'd8' Or '$(AndroidLinkTool)' == 'r8') ">True</AndroidEnableDesugar>If a user specifies combinations of properties:
AndroidDexTool=d8andAndroidEnableProguard=TrueAndroidLinkToolwill get set toproguard
AndroidDexTool=dxandAndroidLinkTool=r8- This combination doesn't really make sense, but we don't need to
do anything: only
R8will be called because it dexes and shrinks at the same time.
- This combination doesn't really make sense, but we don't need to
do anything: only
AndroidEnableDesugaris enabled when omitted, if eitherd8orr8are used
For new projects that want to use D8/R8, code shrinking, and
multidex, it would make sense to specify:
<Project>
<PropertyGroup>
<AndroidEnableMultiDex>True</AndroidEnableMultiDex>
<AndroidDexTool>d8</AndroidDexTool>
<AndroidLinkTool>r8</AndroidLinkTool>
</PropertyGroup>
</Project>--debug or --release needs to be explicitly specified for both D8
and R8. We use the AndroidIncludeDebugSymbols
property for this.
$(AndroidD8ExtraArguments) and $(AndroidR8ExtraArguments) can be
used to explicitly pass additional flags to D8 and R8.
We have added a submodule to xamarin-android for
r8. It will be pinned to a commit
with a reasonable release tag, such as 1.2.50 for now.
To build r8, we have to:
- Download and unzip a tool named depot_tools from the Chromium project
- Put the path to
depot_toolsin$PATH - Run
gclientso it will download/bootstrap gradle, python, and other tools - Run
python tools\gradle.py d8 r8to compiled8.jarandr8.jar - We will need to ship
d8.jarandr8.jarin our installers, similar to how we are shippingdesugar_deploy.jar
| MSBuild Target | Options Enabled | Time | APK size (bytes) | dex size (bytes) |
|---|---|---|---|---|
| _CompileToDalvikWithDx | n/a | 11074ms | 13378157 | 3894720 |
| _CompileToDalvikWithD8 | d8, (desugar enabled) | 8543ms | 13124205 | 3314064 |
| _CompileToDalvikWithD8 | d8, (desugar disabled) | 9550ms | 13124205 | 3314064 |
| _CompileToDalvikWithDx | multi-dex | 15632ms | 13390498 | 3916496 |
| _CompileToDalvikWithD8 | d8, multi-dex | 25979ms | 13054626 | 3264096 |
| _CompileToDalvikWithDx | proguard | 11903ms | 12804717 | 2446964 |
| _CompileToDalvikWithD8 | d8, r8 | 13799ms | 12513901 | 1835588 |
| _CompileToDalvikWithDx | multi-dex, proguard | 17279ms | 12804770 | 2449512 |
| _CompileToDalvikWithD8 | d8, multi-dex, r8 | 13792ms | 12513954 | 1837588 |
NOTE: desugar is enabled by default with d8/r8
I timed this builds with this script, with a "Hello World" Xamarin.Forms app. Build logs here: d8andr8.zip
One can draw their own conclusions on which options are faster, better, smaller.
Some of my thoughts:
- Default options for d8 and r8 seem to be faster?
- Disabling
desugaris slower? - Enabling
multi-dexmakes the dex file larger, because new classes are required. The app wasn't large enough to warrant aclasses2.dex. d8does not support multi-dex, and so choosingd8+multi-dexactually runsr8with--no-tree-shaking --no-minification. These options are slower?