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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,68 @@
package com.ironsource.mediationsdk;
import com.ironsource.mediationsdk.model.NetworkSettings;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
/* loaded from: classes4.dex */
public class h {
public static final int c = -1;
public static final int d = 0;
private ConcurrentHashMap<String, ArrayList<a>> a = new ConcurrentHashMap<>();
private int b;
public enum a {
ISAuctionPerformanceDidntAttemptToLoad,
ISAuctionPerformanceFailedToLoad,
ISAuctionPerformanceLoadedSuccessfully,
ISAuctionPerformanceFailedToShow,
ISAuctionPerformanceShowedSuccessfully,
ISAuctionPerformanceNotPartOfWaterfall
}
public h(List<NetworkSettings> list, int i) {
this.b = i;
for (NetworkSettings networkSettings : list) {
this.a.put(networkSettings.getProviderName(), new ArrayList<>());
}
}
public String a(String str) {
ArrayList<a> arrayList = this.a.get(str);
String str2 = "";
if (arrayList != null && !arrayList.isEmpty()) {
Iterator<a> it = arrayList.iterator();
StringBuilder sb = new StringBuilder();
while (true) {
sb.append(str2);
sb.append(it.next().ordinal());
str2 = sb.toString();
if (!it.hasNext()) {
break;
}
str2 = str2 + ",";
sb = new StringBuilder();
}
}
return str2;
}
public void a(ConcurrentHashMap<String, a> concurrentHashMap) {
if (this.b == 0) {
return;
}
for (String str : this.a.keySet()) {
a aVar = a.ISAuctionPerformanceNotPartOfWaterfall;
if (concurrentHashMap.containsKey(str)) {
aVar = concurrentHashMap.get(str);
}
ArrayList<a> arrayList = this.a.get(str);
if (this.b != -1 && arrayList.size() == this.b) {
arrayList.remove(0);
}
arrayList.add(aVar);
}
}
}