24 lines
900 B
Java
24 lines
900 B
Java
package com.google.android.gms.common.util;
|
|
|
|
import android.content.Context;
|
|
import android.util.Log;
|
|
import com.google.android.gms.common.internal.Preconditions;
|
|
import com.google.errorprone.annotations.ResultIgnorabilityUnspecified;
|
|
|
|
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
public final class CrashUtils {
|
|
private static final String[] zza = {"android.", "com.android.", "dalvik.", "java.", "javax."};
|
|
|
|
@ResultIgnorabilityUnspecified
|
|
public static boolean addDynamiteErrorToDropBox(Context context, Throwable th) {
|
|
try {
|
|
Preconditions.checkNotNull(context);
|
|
Preconditions.checkNotNull(th);
|
|
return false;
|
|
} catch (Exception e) {
|
|
Log.e("CrashUtils", "Error adding exception to DropBox!", e);
|
|
return false;
|
|
}
|
|
}
|
|
} |