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

32 lines
1.2 KiB
Java

package com.fyber.inneractive.sdk.config;
import android.text.TextUtils;
import com.fyber.inneractive.sdk.util.IAlog;
import java.util.HashMap;
import java.util.regex.Pattern;
/* loaded from: classes2.dex */
public final class a {
public static e0 a(String str) {
IAConfigManager iAConfigManager = IAConfigManager.L;
HashMap hashMap = iAConfigManager.b;
if (hashMap != null && hashMap.containsKey(str)) {
return (e0) iAConfigManager.b.get(str);
}
IAlog.c("Requested unit config doesn't exists - %s", str);
return null;
}
public static String a() {
int i = g.a;
String property = System.getProperty("ia.testEnvironmentConfiguration.name");
if (TextUtils.isEmpty(property)) {
return "https://" + IAConfigManager.L.i.f;
}
if (Pattern.compile("^([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])$").matcher(property).matches()) {
return "https://" + property + "/simpleM2M/Event";
}
return "https://" + property + ".inner-active.mobi/simpleM2M/Event";
}
}