diff options
Diffstat (limited to 'apex/apex.go')
-rw-r--r-- | apex/apex.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apex/apex.go b/apex/apex.go index bad382aa8..2820b4848 100644 --- a/apex/apex.go +++ b/apex/apex.go @@ -2268,8 +2268,10 @@ func (a *apexBundle) checkJavaStableSdkVersion(ctx android.ModuleContext) { tag := ctx.OtherModuleDependencyTag(module) switch tag { case javaLibTag, androidAppTag: - if m, ok := module.(interface{ CheckStableSdkVersion() error }); ok { - if err := m.CheckStableSdkVersion(); err != nil { + if m, ok := module.(interface { + CheckStableSdkVersion(ctx android.BaseModuleContext) error + }); ok { + if err := m.CheckStableSdkVersion(ctx); err != nil { ctx.ModuleErrorf("cannot depend on \"%v\": %v", ctx.OtherModuleName(module), err) } } |