diff options
Diffstat (limited to 'apex/apex.go')
-rw-r--r-- | apex/apex.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apex/apex.go b/apex/apex.go index 35a87824d..29d59e589 100644 --- a/apex/apex.go +++ b/apex/apex.go @@ -2382,8 +2382,9 @@ func (a *apexBundle) provideApexExportsInfo(ctx android.ModuleContext) { ctx.VisitDirectDepsWithTag(bcpfTag, func(child android.Module) { if info, ok := android.OtherModuleProvider(ctx, child, java.BootclasspathFragmentApexContentInfoProvider); ok { exports := android.ApexExportsInfo{ - ApexName: a.ApexVariationName(), - ProfilePathOnHost: info.ProfilePathOnHost(), + ApexName: a.ApexVariationName(), + ProfilePathOnHost: info.ProfilePathOnHost(), + LibraryNameToDexJarPathOnHost: info.DexBootJarPathMap(), } ctx.SetProvider(android.ApexExportsInfoProvider, exports) } |