Merge "Installed APKs should not have prebuilt_
prefix"
This commit is contained in:
commit
001ad5a6fc
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ func (as *AndroidAppSet) GenerateAndroidBuildActions(ctx android.ModuleContext)
|
|||
// We are assuming here that the master file in the APK
|
||||
// set has `.apk` suffix. If it doesn't the build will fail.
|
||||
// APK sets containing APEX files are handled elsewhere.
|
||||
as.masterFile = ctx.ModuleName() + ".apk"
|
||||
as.masterFile = as.BaseModuleName() + ".apk"
|
||||
screenDensities := "all"
|
||||
if dpis := ctx.Config().ProductAAPTPrebuiltDPI(); len(dpis) > 0 {
|
||||
screenDensities = strings.ToUpper(strings.Join(dpis, ","))
|
||||
|
|
Loading…
Reference in a new issue