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

Commit 39acfc8f authored by Spandan Das's avatar Spandan Das
Browse files

Fix LOCAL_CERTIFICATE of autogenerated RROs

This is case sensitive. lower case `presigned` implies that the apk was signed with a file named `presigned` at the root of the workspace.

Change-Id: I8236f56883b0ca68517e8cade09edb664c3660d9
parent df3543cf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -437,7 +437,7 @@ func (a *AutogenRuntimeResourceOverlay) AndroidMkEntries() []android.AndroidMkEn
		Include:    "$(BUILD_SYSTEM)/soong_app_prebuilt.mk",
		ExtraEntries: []android.AndroidMkExtraEntriesFunc{
			func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
				entries.SetString("LOCAL_CERTIFICATE", "presigned") // The apk will be signed by soong
				entries.SetString("LOCAL_CERTIFICATE", "PRESIGNED") // The apk will be signed by soong
			},
		},
	}}