ACRA proguard configuration changed
This commit is contained in:
parent
2396de20a4
commit
3e01244c70
@ -85,26 +85,22 @@
|
|||||||
#*********************************************************************
|
#*********************************************************************
|
||||||
#
|
#
|
||||||
|
|
||||||
# we need line numbers in our stack traces otherwise they are pretty useless
|
|
||||||
-renamesourcefileattribute SourceFile
|
|
||||||
-keepattributes SourceFile,LineNumberTable
|
|
||||||
|
|
||||||
# ACRA needs "annotations" so add this...
|
|
||||||
-keepattributes *Annotation*
|
|
||||||
|
|
||||||
# keep this class so that logging will show 'ACRA' and not a obfuscated name like 'a'.
|
# keep this class so that logging will show 'ACRA' and not a obfuscated name like 'a'.
|
||||||
# Note: if you are removing log messages elsewhere in this file then this isn't necessary
|
# Note: if you are removing log messages elsewhere in this file then this isn't necessary
|
||||||
-keep class org.acra.ACRA {
|
-keep class org.acra.ACRA {
|
||||||
*;
|
*;
|
||||||
}
|
}
|
||||||
|
|
||||||
-keep class org.acra.ReportField {
|
# keep this around for some enums that ACRA needs
|
||||||
|
-keep class org.acra.ReportingInteractionMode {
|
||||||
*;
|
*;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-keepnames class org.acra.sender.HttpSender$** {
|
||||||
|
*;
|
||||||
|
}
|
||||||
|
|
||||||
# keep this around for some enums that ACRA needs
|
-keepnames class org.acra.ReportField {
|
||||||
-keep class org.acra.ReportingInteractionMode {
|
|
||||||
*;
|
*;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -112,10 +108,12 @@
|
|||||||
-keep public class org.acra.ErrorReporter
|
-keep public class org.acra.ErrorReporter
|
||||||
{
|
{
|
||||||
public void addCustomData(java.lang.String,java.lang.String);
|
public void addCustomData(java.lang.String,java.lang.String);
|
||||||
|
public void putCustomData(java.lang.String,java.lang.String);
|
||||||
|
public void removeCustomData(java.lang.String);
|
||||||
}
|
}
|
||||||
|
|
||||||
# keep this otherwise it is removed by ProGuard
|
# keep this otherwise it is removed by ProGuard
|
||||||
-keep public class org.acra.ErrorReporter
|
-keep public class org.acra.ErrorReporter
|
||||||
{
|
{
|
||||||
public org.acra.ErrorReporter$ReportsSenderWorker handleSilentException(java.lang.Throwable);
|
public void handleSilentException(java.lang.Throwable);
|
||||||
}
|
}
|
@ -99,26 +99,22 @@
|
|||||||
#*********************************************************************
|
#*********************************************************************
|
||||||
#
|
#
|
||||||
|
|
||||||
# we need line numbers in our stack traces otherwise they are pretty useless
|
|
||||||
-renamesourcefileattribute SourceFile
|
|
||||||
-keepattributes SourceFile,LineNumberTable
|
|
||||||
|
|
||||||
# ACRA needs "annotations" so add this...
|
|
||||||
-keepattributes *Annotation*
|
|
||||||
|
|
||||||
# keep this class so that logging will show 'ACRA' and not a obfuscated name like 'a'.
|
# keep this class so that logging will show 'ACRA' and not a obfuscated name like 'a'.
|
||||||
# Note: if you are removing log messages elsewhere in this file then this isn't necessary
|
# Note: if you are removing log messages elsewhere in this file then this isn't necessary
|
||||||
-keep class org.acra.ACRA {
|
-keep class org.acra.ACRA {
|
||||||
*;
|
*;
|
||||||
}
|
}
|
||||||
|
|
||||||
-keep class org.acra.ReportField {
|
# keep this around for some enums that ACRA needs
|
||||||
|
-keep class org.acra.ReportingInteractionMode {
|
||||||
*;
|
*;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-keepnames class org.acra.sender.HttpSender$** {
|
||||||
|
*;
|
||||||
|
}
|
||||||
|
|
||||||
# keep this around for some enums that ACRA needs
|
-keepnames class org.acra.ReportField {
|
||||||
-keep class org.acra.ReportingInteractionMode {
|
|
||||||
*;
|
*;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -126,10 +122,12 @@
|
|||||||
-keep public class org.acra.ErrorReporter
|
-keep public class org.acra.ErrorReporter
|
||||||
{
|
{
|
||||||
public void addCustomData(java.lang.String,java.lang.String);
|
public void addCustomData(java.lang.String,java.lang.String);
|
||||||
|
public void putCustomData(java.lang.String,java.lang.String);
|
||||||
|
public void removeCustomData(java.lang.String);
|
||||||
}
|
}
|
||||||
|
|
||||||
# keep this otherwise it is removed by ProGuard
|
# keep this otherwise it is removed by ProGuard
|
||||||
-keep public class org.acra.ErrorReporter
|
-keep public class org.acra.ErrorReporter
|
||||||
{
|
{
|
||||||
public org.acra.ErrorReporter$ReportsSenderWorker handleSilentException(java.lang.Throwable);
|
public void handleSilentException(java.lang.Throwable);
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user