Support including apk inside an apex

New property "apps" is added to APEX soong module. This property
configure a list of APKs to package inside APEX payload. For each
android_app module package it's APK into /app/$(android_app module Name)
directory.

Bug: 139906763
Test: m -j
Change-Id: Ic6655f211951af08097c76e157a07ebc52425718
This commit is contained in:
Sundong Ahn
2019-08-27 13:55:42 +09:00
parent e942e32f97
commit e1f05aaf44
3 changed files with 89 additions and 25 deletions

View File

@@ -139,6 +139,10 @@ func (a *AndroidApp) ExportedStaticPackages() android.Paths {
return nil
}
func (a *AndroidApp) OutputFile() android.Path {
return a.outputFile
}
var _ AndroidLibraryDependency = (*AndroidApp)(nil)
type Certificate struct {