Merge "Reland "Enable R8 full mode by default for apps"" into main

This commit is contained in:
Treehugger Robot
2023-08-02 21:38:29 +00:00
committed by Gerrit Code Review
2 changed files with 3 additions and 2 deletions

View File

@@ -1055,6 +1055,7 @@ func AndroidAppFactory() android.Module {
module.Module.dexProperties.Optimize.EnabledByDefault = true module.Module.dexProperties.Optimize.EnabledByDefault = true
module.Module.dexProperties.Optimize.Shrink = proptools.BoolPtr(true) module.Module.dexProperties.Optimize.Shrink = proptools.BoolPtr(true)
module.Module.dexProperties.Optimize.Proguard_compatibility = proptools.BoolPtr(false)
module.Module.properties.Instrument = true module.Module.properties.Instrument = true
module.Module.properties.Supports_static_instrumentation = true module.Module.properties.Supports_static_instrumentation = true

View File

@@ -45,8 +45,8 @@ type DexProperties struct {
// Whether to continue building even if warnings are emitted. Defaults to true. // Whether to continue building even if warnings are emitted. Defaults to true.
Ignore_warnings *bool Ignore_warnings *bool
// If true, runs R8 in Proguard compatibility mode (default). // If true, runs R8 in Proguard compatibility mode, otherwise runs R8 in full mode.
// Otherwise, runs R8 in full mode. // Defaults to false for apps, true for libraries and tests.
Proguard_compatibility *bool Proguard_compatibility *bool
// If true, optimize for size by removing unused code. Defaults to true for apps, // If true, optimize for size by removing unused code. Defaults to true for apps,