diff options
| author | 2021-02-25 16:00:12 +0000 | |
|---|---|---|
| committer | 2021-02-25 16:00:12 +0000 | |
| commit | fc3bfe54c3593b249aaacf771d9149c15d189c26 (patch) | |
| tree | 48904042d3cc4c39eb3eaf3eed19602e81982e92 /java/app.go | |
| parent | daffef24005f3c98a3acd9ee181a6064f645f7b4 (diff) | |
| parent | 8431282af4ba270d1f6836d061dcc43b3bf78e36 (diff) | |
Merge "Fix the releax_check flag format verb."
Diffstat (limited to 'java/app.go')
| -rwxr-xr-x | java/app.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/app.go b/java/app.go index 518120717..8287533e0 100755 --- a/java/app.go +++ b/java/app.go @@ -1298,7 +1298,7 @@ func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk andr Textf("aapt_binary=%s", aapt.String()).Implicit(aapt). Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")). Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")). - Textf(`relax_check="%b"`, dexpreopt.GetGlobalConfig(ctx).RelaxUsesLibraryCheck). + Textf(`relax_check="%t"`, dexpreopt.GetGlobalConfig(ctx).RelaxUsesLibraryCheck). Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk).Output(statusFile) rule.Command().Text("cp -f").Input(apk).Output(outputFile) |