Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
24
apk_decompiled/sources/O0/a.java
Normal file
24
apk_decompiled/sources/O0/a.java
Normal file
@@ -0,0 +1,24 @@
|
||||
package O0;
|
||||
|
||||
import S0.o;
|
||||
import java.io.File;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class a implements b {
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public final boolean f1316a;
|
||||
|
||||
public a(boolean z3) {
|
||||
this.f1316a = z3;
|
||||
}
|
||||
|
||||
@Override // O0.b
|
||||
public final String a(Object obj, o oVar) {
|
||||
File file = (File) obj;
|
||||
if (!this.f1316a) {
|
||||
return file.getPath();
|
||||
}
|
||||
return file.getPath() + ':' + file.lastModified();
|
||||
}
|
||||
}
|
||||
8
apk_decompiled/sources/O0/b.java
Normal file
8
apk_decompiled/sources/O0/b.java
Normal file
@@ -0,0 +1,8 @@
|
||||
package O0;
|
||||
|
||||
import S0.o;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface b {
|
||||
String a(Object obj, o oVar);
|
||||
}
|
||||
26
apk_decompiled/sources/O0/c.java
Normal file
26
apk_decompiled/sources/O0/c.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package O0;
|
||||
|
||||
import S0.o;
|
||||
import W0.f;
|
||||
import android.content.res.Configuration;
|
||||
import android.graphics.Bitmap;
|
||||
import android.net.Uri;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class c implements b {
|
||||
@Override // O0.b
|
||||
public final String a(Object obj, o oVar) {
|
||||
Uri uri = (Uri) obj;
|
||||
if (!Intrinsics.areEqual(uri.getScheme(), "android.resource")) {
|
||||
return uri.toString();
|
||||
}
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(uri);
|
||||
sb.append('-');
|
||||
Configuration configuration = oVar.f1502a.getResources().getConfiguration();
|
||||
Bitmap.Config[] configArr = f.f1887a;
|
||||
sb.append(configuration.uiMode & 48);
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user