diff options
Diffstat (limited to 'apex/builder.go')
-rw-r--r-- | apex/builder.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/builder.go b/apex/builder.go index a62f63c61..7248d9788 100644 --- a/apex/builder.go +++ b/apex/builder.go @@ -543,7 +543,7 @@ func (a *apexBundle) buildUnflattenedApex(ctx android.ModuleContext) { if len(installMapSet) > 0 { var installs []string - installs = append(installs, android.SortedStringKeys(installMapSet)...) + installs = append(installs, android.SortedKeys(installMapSet)...) a.SetLicenseInstallMap(installs) } |