Merge "Add a tagged output for app's exportPackage"

This commit is contained in:
Anton Hansson 2020-08-18 11:38:46 +00:00 committed by Gerrit Code Review
commit 72ce814def
1 changed files with 2 additions and 0 deletions

View File

@ -963,6 +963,8 @@ func (a *AndroidApp) OutputFiles(tag string) (android.Paths, error) {
switch tag {
case ".aapt.srcjar":
return []android.Path{a.aaptSrcJar}, nil
case ".export-package.apk":
return []android.Path{a.exportPackage}, nil
}
return a.Library.OutputFiles(tag)
}