Bugtags – is an Android libarary that reports bugs, diagnosis information and captures crashes automatically.
ProGuard rules for Bugtags
ProGuard optimizes the code and and removes unused classes, and attributes and methods. By default, short names like 'a', 'b', etc. are used as obfuscated names. Specify the next ProGuard-style specification for your configuration file.
# Bugtags -keepattributes LineNumberTable,SourceFile -keep class com.bugtags.library.** {*;} -dontwarn com.bugtags.library.** -keep class io.bugtags.** {*;} -dontwarn io.bugtags.** -dontwarn org.apache.http.** -dontwarn android.net.http.AndroidHttpClient
For more information about Bugtags please see the website.