diff options
Diffstat (limited to 'java/java.go')
| -rw-r--r-- | java/java.go | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/java/java.go b/java/java.go index 7c84e766f..318a36b88 100644 --- a/java/java.go +++ b/java/java.go @@ -1322,11 +1322,9 @@ func (j *Module) compile(ctx android.ModuleContext, aaptSrcJar android.Path) {  			return  		} -		if !ctx.Config().UnbundledBuild() { -			// Hidden API CSV generation and dex encoding -			dexOutputFile = j.hiddenAPI.hiddenAPI(ctx, dexOutputFile, j.implementationJarFile, -				j.deviceProperties.UncompressDex) -		} +		// Hidden API CSV generation and dex encoding +		dexOutputFile = j.hiddenAPI.hiddenAPI(ctx, dexOutputFile, j.implementationJarFile, +			j.deviceProperties.UncompressDex)  		// merge dex jar with resources if necessary  		if j.resourceJar != nil {  |