Files
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

111 lines
4.5 KiB
Java

package com.mbridge.msdk.foundation.tools;
import android.content.Context;
import android.content.SharedPreferences;
import com.mbridge.msdk.foundation.tools.FastKV;
/* loaded from: classes4.dex */
public final class an {
static FastKV a;
public static Object a(Context context, String str, Object obj) {
if (context == null) {
return obj;
}
String simpleName = obj != null ? obj.getClass().getSimpleName() : "";
com.mbridge.msdk.foundation.controller.d.a();
if (a == null) {
try {
a = new FastKV.Builder(com.mbridge.msdk.foundation.same.b.e.a(com.mbridge.msdk.foundation.same.b.c.MBRIDGE_700_CONFIG), "share_date").build();
} catch (Exception unused) {
a = null;
}
}
if (a != null) {
try {
if ("String".equals(simpleName)) {
return a.getString(str, (String) obj);
}
if ("Integer".equals(simpleName)) {
return Integer.valueOf(a.getInt(str, ((Integer) obj).intValue()));
}
if ("Boolean".equals(simpleName)) {
return Boolean.valueOf(a.getBoolean(str, ((Boolean) obj).booleanValue()));
}
if ("Float".equals(simpleName)) {
return Float.valueOf(a.getFloat(str, ((Float) obj).floatValue()));
}
if ("Long".equals(simpleName)) {
return Long.valueOf(a.getLong(str, ((Long) obj).longValue()));
}
} catch (Exception unused2) {
return obj;
}
} else {
SharedPreferences sharedPreferences = context.getSharedPreferences("share_date", 0);
if ("String".equals(simpleName)) {
return sharedPreferences.getString(str, (String) obj);
}
if ("Integer".equals(simpleName)) {
return Integer.valueOf(sharedPreferences.getInt(str, ((Integer) obj).intValue()));
}
if ("Boolean".equals(simpleName)) {
return Boolean.valueOf(sharedPreferences.getBoolean(str, ((Boolean) obj).booleanValue()));
}
if ("Float".equals(simpleName)) {
return Float.valueOf(sharedPreferences.getFloat(str, ((Float) obj).floatValue()));
}
if ("Long".equals(simpleName)) {
return Long.valueOf(sharedPreferences.getLong(str, ((Long) obj).longValue()));
}
}
return obj;
}
public static void b(Context context, String str, Object obj) {
String simpleName = obj.getClass().getSimpleName();
if (context == null) {
return;
}
com.mbridge.msdk.foundation.controller.d.a();
if (a == null) {
try {
a = new FastKV.Builder(com.mbridge.msdk.foundation.same.b.e.a(com.mbridge.msdk.foundation.same.b.c.MBRIDGE_700_CONFIG), "share_date").build();
} catch (Exception unused) {
a = null;
}
}
if (a != null) {
try {
if ("String".equals(simpleName)) {
a.putString(str, (String) obj);
} else if ("Integer".equals(simpleName)) {
a.putInt(str, ((Integer) obj).intValue());
} else if ("Boolean".equals(simpleName)) {
a.putBoolean(str, ((Boolean) obj).booleanValue());
} else if ("Float".equals(simpleName)) {
a.putFloat(str, ((Float) obj).floatValue());
} else if ("Long".equals(simpleName)) {
a.putLong(str, ((Long) obj).longValue());
}
return;
} catch (Exception unused2) {
return;
}
}
SharedPreferences.Editor edit = context.getApplicationContext().getSharedPreferences("share_date", 0).edit();
if ("String".equals(simpleName)) {
edit.putString(str, (String) obj);
} else if ("Integer".equals(simpleName)) {
edit.putInt(str, ((Integer) obj).intValue());
} else if ("Boolean".equals(simpleName)) {
edit.putBoolean(str, ((Boolean) obj).booleanValue());
} else if ("Float".equals(simpleName)) {
edit.putFloat(str, ((Float) obj).floatValue());
} else if ("Long".equals(simpleName)) {
edit.putLong(str, ((Long) obj).longValue());
}
edit.apply();
}
}