Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 41db7a81 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Add resources.pb to the apex bundle"

parents b7817402 1ed0fc53
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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")