diff options
Diffstat (limited to 'java/app.go')
-rw-r--r-- | java/app.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/app.go b/java/app.go index 827b23526..c2aa8a474 100644 --- a/java/app.go +++ b/java/app.go @@ -1175,7 +1175,7 @@ func collectAppDeps(ctx android.ModuleContext, app appDepsInterface, apkInApex := ctx.Module().(android.ApexModule).NotInPlatform() childLinkable, _ := android.OtherModuleProvider(ctx, child, cc.LinkableInfoProvider) parentIsLinkable := false - if ctx.EqualModules(ctx.Module(), parent) { + if android.EqualModules(ctx.Module(), parent) { parentLinkable, _ := ctx.Module().(cc.LinkableInterface) parentIsLinkable = parentLinkable != nil } else { |