Merge "Add resources.pb to the apex bundle"

This commit is contained in:
Treehugger Robot
2018-11-23 07:55:35 +00:00
committed by Gerrit Code Review

View File

@@ -69,7 +69,11 @@ var (
})
apexBundleRule = pctx.StaticRule("apexBundleRule", blueprint.RuleParams{
Command: `${zip2zip} -i $in -o $out image.img:apex/${abi}.img manifest.json:root/manifest.json AndroidManifest.xml:manifest/AndroidManifest.xml`,
Command: `${zip2zip} -i $in -o $out ` +
`image.img:apex/${abi}.img ` +
`manifest.json:root/manifest.json ` +
`AndroidManifest.xml:manifest/AndroidManifest.xml ` +
`resources.pb`,
CommandDeps: []string{"${zip2zip}"},
Description: "app bundle",
}, "abi")