Merge "Stem name should be fixed the same was as masterFile"

This commit is contained in:
Treehugger Robot 2020-06-23 01:41:57 +00:00 committed by Gerrit Code Review
commit bb28b8c9ca
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ func (as *AndroidAppSet) GenerateAndroidBuildActions(ctx android.ModuleContext)
"allow-prereleased": strconv.FormatBool(proptools.Bool(as.properties.Prerelease)), "allow-prereleased": strconv.FormatBool(proptools.Bool(as.properties.Prerelease)),
"screen-densities": screenDensities, "screen-densities": screenDensities,
"sdk-version": ctx.Config().PlatformSdkVersion(), "sdk-version": ctx.Config().PlatformSdkVersion(),
"stem": ctx.ModuleName(), "stem": as.BaseModuleName(),
}, },
}) })
} }