From 578066be90d3e1960c02b5c80c29e92bca70a70b Mon Sep 17 00:00:00 2001 From: Charlie Boutier Date: Thu, 11 Apr 2024 16:10:00 +0000 Subject: Revert "Make embedded_launcher true by default" This reverts commit 8a038ed871230ba6280642b5c0e83a37d076aa79. Reason for revert: investigate breaking test suits Avatar and BumbleBluetoothTests Change-Id: I8e4498fb5854bf62df6d161ac0c6cce49d471afe --- 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 c84eeeedb..d6750c655 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 BoolDefault(p.properties.Embedded_launcher, true) + return Bool(p.properties.Embedded_launcher) } func (b *PythonBinaryModule) autorun() bool { -- cgit v1.2.3-59-g8ed1b