# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /Users/chenjian/Library/Android/sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}

-dontskipnonpubliclibraryclassmembers
-printconfiguration
-keep,allowobfuscation @interface android.support.annotation.Keep

-keep @android.support.annotation.Keep class *
-keepclassmembers class * {
    @android.support.annotation.Keep *;
}

-keep class com.bytedance.crash.nativecrash.NativeImpl {
  private static void handleNativeCrashInJava(String, String, String[], String[]);
  private static void reportEventForAnrMonitor();
}

-keep class com.bytedance.crash.Npth{*;}
-keep class com.bytedance.crash.AttachUserData{*;}
-keep class com.bytedance.crash.ICrashCallback{*;}
-keep class com.bytedance.crash.IOOMCallback{*;}
-keep class com.bytedance.crash.ICrashFilter{*;}
-keep class com.bytedance.crash.CrashType{*;}
-keep class com.bytedance.crash.ICommonParams{*;}
-keep class com.bytedance.crash.NpthInit{*;}
-keep class com.bytedance.crash.MonitorCrash{*;}
-keep class com.bytedance.crash.MonitorCrash$Config{*;}
-keep class com.bytedance.crash.MonitorCrash$HeaderParams{*;}
-keep class com.bytedance.crash.runtime.ConfigManager{*;}
-keep class com.bytedance.crash.entity.Header {
    public static void addOtherHeader(org.json.JSONObject);
    public static void addRuntimeHeader(org.json.JSONObject);
}