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

Commit 803b41fe authored by Nan Zhang's avatar Nan Zhang Committed by android-build-merger
Browse files

Enable prebuilt jar installation in framework

am: 4973ecff

Change-Id: I6044f89f6215c417a6c03f318cb9219a8f796f53
parents 0f74d7fa 4973ecff
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1573,6 +1573,10 @@ func (j *Import) GenerateAndroidBuildActions(ctx android.ModuleContext) {
	})

	j.exportedSdkLibs = android.FirstUniqueStrings(j.exportedSdkLibs)
	if Bool(j.properties.Installable) {
		ctx.InstallFile(android.PathForModuleInstall(ctx, "framework"),
			ctx.ModuleName()+".jar", outputFile)
	}
}

var _ Dependency = (*Import)(nil)