- 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
46 lines
2.0 KiB
Java
46 lines
2.0 KiB
Java
package com.ironsource;
|
|
|
|
import android.os.Bundle;
|
|
import java.util.LinkedHashMap;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
import kotlin.Pair;
|
|
import kotlin.TuplesKt;
|
|
import kotlin.collections.CollectionsKt__IterablesKt;
|
|
import kotlin.collections.CollectionsKt___CollectionsKt;
|
|
import kotlin.collections.MapsKt__MapsJVMKt;
|
|
import kotlin.collections.MapsKt__MapsKt;
|
|
import kotlin.jvm.internal.SourceDebugExtension;
|
|
import kotlin.ranges.RangesKt___RangesKt;
|
|
|
|
@SourceDebugExtension({"SMAP\nFactory.kt\nKotlin\n*S Kotlin\n*F\n+ 1 Factory.kt\ncom/unity3d/ironsourceads/internal/load/ExtraParamsUtils\n+ 2 _Collections.kt\nkotlin/collections/CollectionsKt___CollectionsKt\n*L\n1#1,24:1\n1179#2,2:25\n1253#2,4:27\n*S KotlinDebug\n*F\n+ 1 Factory.kt\ncom/unity3d/ironsourceads/internal/load/ExtraParamsUtils\n*L\n14#1:25,2\n14#1:27,4\n*E\n"})
|
|
/* loaded from: classes2.dex */
|
|
public final class bc {
|
|
public static final bc a = new bc();
|
|
public static final String b = "ext_";
|
|
|
|
private bc() {
|
|
}
|
|
|
|
public final Map<String, String> a(Bundle bundle) {
|
|
int mapCapacity;
|
|
int coerceAtLeast;
|
|
Map<String, String> emptyMap;
|
|
Set<String> keySet = bundle != null ? bundle.keySet() : null;
|
|
if (keySet == null) {
|
|
emptyMap = MapsKt__MapsKt.emptyMap();
|
|
return emptyMap;
|
|
}
|
|
mapCapacity = MapsKt__MapsJVMKt.mapCapacity(CollectionsKt__IterablesKt.collectionSizeOrDefault(keySet, 10));
|
|
coerceAtLeast = RangesKt___RangesKt.coerceAtLeast(mapCapacity, 16);
|
|
LinkedHashMap linkedHashMap = new LinkedHashMap(coerceAtLeast);
|
|
for (String str : keySet) {
|
|
String str2 = b + str;
|
|
Object obj = bundle.get(str);
|
|
Pair pair = TuplesKt.to(str2, obj instanceof Iterable ? CollectionsKt___CollectionsKt.joinToString$default((Iterable) obj, ", ", null, null, 0, null, null, 62, null) : obj == null ? null : obj.toString());
|
|
linkedHashMap.put(pair.getFirst(), pair.getSecond());
|
|
}
|
|
return linkedHashMap;
|
|
}
|
|
}
|