From f09101e78da3aafa7f2a28959d0d3366f4767aa1 Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Thu, 18 Apr 2024 18:33:15 +0000 Subject: Revert^2 "Make embedded_launcher true by default" This reverts commit 578066be90d3e1960c02b5c80c29e92bca70a70b. Reason for revert: Relanding Change-Id: I63f01362cc11c02c4800ae1c21652c7cf4b8a799 --- python/binary.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/binary.go') diff --git a/python/binary.go b/python/binary.go index d6750c655..c84eeeedb 100644 --- a/python/binary.go +++ b/python/binary.go @@ -203,7 +203,7 @@ func (p *PythonBinaryModule) OutputFiles(tag string) (android.Paths, error) { } func (p *PythonBinaryModule) isEmbeddedLauncherEnabled() bool { - return Bool(p.properties.Embedded_launcher) + return BoolDefault(p.properties.Embedded_launcher, true) } func (b *PythonBinaryModule) autorun() bool { -- cgit v1.2.3-59-g8ed1b