what-the-bank/sources/com/facetec/sdk/at.java

50 lines
1.4 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package com.facetec.sdk;
import android.content.Context;
import java.io.FileInputStream;
import java.io.FileOutputStream;
/* loaded from: classes.dex */
final class at {
at() {
}
/* JADX INFO: Access modifiers changed from: package-private */
public static void c(final Context context) {
cy.c(new Runnable(context) { // from class: com.facetec.sdk.at$$ExternalSyntheticLambda0
public final Context f$0;
@Override // java.lang.Runnable
public final void run() {
at.a(this.f$0);
}
{
this.f$0 = context;
}
});
}
/* JADX INFO: Access modifiers changed from: private */
public static /* synthetic */ void a(Context context) {
aw.c("BT");
aw.e("BT");
aw.c("RWT");
try {
FileOutputStream openFileOutput = context.openFileOutput("tmp_rw", 0);
openFileOutput.write("abcdefghijklmnopqrstuvwxyz1234567890".getBytes());
openFileOutput.flush();
openFileOutput.close();
} catch (Exception unused) {
}
try {
FileInputStream openFileInput = context.openFileInput("tmp_rw");
do {
} while (openFileInput.read() != -1);
openFileInput.close();
} catch (Exception unused2) {
}
aw.e("RWT");
}
}