From c5deeb2cda07d978c70b1517b152e457f323a5a4 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Wed, 29 Jul 2009 10:33:39 -0600 Subject: [PATCH] preserve Thread.run(Thread) from elimination by ProGuard --- vm.pro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vm.pro b/vm.pro index 9e790fbc02..3ba4620c0e 100644 --- a/vm.pro +++ b/vm.pro @@ -73,7 +73,9 @@ # Thread.run is called by name in the VM --keepclassmembernames class java.lang.Thread { void run(); } +-keepclassmembers class java.lang.Thread { + private static void run(java.lang.Thread); + } # when continuations are enabled, the VM may call these methods by name: