Merge "Add resources.pb to the apex bundle"
diff --git a/apex/apex.go b/apex/apex.go
index aad7c65..c0dfdd8 100644
--- a/apex/apex.go
+++ b/apex/apex.go
@@ -69,7 +69,11 @@
 		})
 
 	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")