Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bce06b68 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "soong_zip after dex should not fail when no *.dex files were generated"

parents 4f41bc2b d3cf4ee8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -177,9 +177,9 @@ func (j *Module) compileDex(ctx android.ModuleContext, flags javaBuilderFlags,
	javalibJar := android.PathForModuleOut(ctx, "dex", jarName)
	outDir := android.PathForModuleOut(ctx, "dex")

	zipFlags := ""
	zipFlags := "--ignore_missing_files"
	if j.deviceProperties.UncompressDex {
		zipFlags = "-L 0"
		zipFlags += " -L 0"
	}

	if useR8 {