diff options
| author | 2021-02-25 16:33:55 +0000 | |
|---|---|---|
| committer | 2021-02-25 16:33:55 +0000 | |
| commit | cfeffdc6ec702b27ad5469259940f76b77dc3a6b (patch) | |
| tree | c9f366ca9c518dd06d501a7fcdd8b8040255859d /java | |
| parent | c5203038268552da33c9248f3c6c3988c05912be (diff) | |
| parent | fc3bfe54c3593b249aaacf771d9149c15d189c26 (diff) | |
Merge "Fix the releax_check flag format verb." am: fc3bfe54c3
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1607177
MUST ONLY BE SUBMITTED BY AUTOMERGER
Change-Id: If62452c3652dcd84713b2e34258067852b4a063a
Diffstat (limited to 'java')
| -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) |