- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
36 lines
783 B
Java
36 lines
783 B
Java
package com.ironsource.sdk.utils;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public class IronSourceQaProperties {
|
|
private static IronSourceQaProperties a;
|
|
private static Map<String, String> b = new HashMap();
|
|
|
|
private IronSourceQaProperties() {
|
|
}
|
|
|
|
public static IronSourceQaProperties getInstance() {
|
|
if (a == null) {
|
|
a = new IronSourceQaProperties();
|
|
}
|
|
return a;
|
|
}
|
|
|
|
public static boolean isInitialized() {
|
|
return a != null;
|
|
}
|
|
|
|
public Map<String, String> getParameters() {
|
|
return b;
|
|
}
|
|
|
|
public void setQaParameter(String str, String str2) {
|
|
if (str == null || str2 == null) {
|
|
return;
|
|
}
|
|
b.put(str, str2);
|
|
}
|
|
}
|