diff options
Diffstat (limited to 'filesystem/android_device.go')
-rw-r--r-- | filesystem/android_device.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filesystem/android_device.go b/filesystem/android_device.go index a616ee053..ebfe43c3d 100644 --- a/filesystem/android_device.go +++ b/filesystem/android_device.go @@ -927,7 +927,7 @@ func (a *androidDevice) buildApkCertsInfo(ctx android.ModuleContext, allInstalle apkCerts := []string{} for _, installedModule := range allInstalledModules { partition := "" - if commonInfo, ok := android.OtherModuleProvider(ctx, installedModule, android.CommonModuleInfoKey); ok { + if commonInfo, ok := android.OtherModuleProvider(ctx, installedModule, android.CommonModuleInfoProvider); ok { partition = commonInfo.PartitionTag } else { ctx.ModuleErrorf("%s does not set CommonModuleInfoKey", installedModule.Name()) |