From abc527d3960fa3006b62c5c1da4da102a86039f9 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Wed, 3 Apr 2013 15:01:31 -0700 Subject: [PATCH] Don't optimize method signatures out of facebook sdk, they needs them --- astrid/proguard.cfg | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/astrid/proguard.cfg b/astrid/proguard.cfg index 175e9d6b8..5d0c546b8 100644 --- a/astrid/proguard.cfg +++ b/astrid/proguard.cfg @@ -7,7 +7,7 @@ # astrid-specific -dontobfuscate --keepattributes SourceFile, SourceDir, LineNumberTable, LocalVariableTable, LocalVariableTypeTable +-keepattributes SourceFile, SourceDir, LineNumberTable, LocalVariableTable, LocalVariableTypeTable, Signature -keep, allowshrinking, allowoptimization class com.todoroo.** -keep class com.mdimension.** -keep class com.google.common.base.Preconditions @@ -47,6 +47,10 @@ *; } +-keep class com.facebook.** { + *; +} + -keepclassmembers public class com.todoroo.astrid.data.* { *; }