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,29 @@
package com.applovin.impl;
import android.util.Pair;
import com.mbridge.msdk.playercommon.exoplayer2.C;
import com.mbridge.msdk.playercommon.exoplayer2.drm.WidevineUtil;
import java.util.Map;
/* loaded from: classes.dex */
public abstract class bs {
private static long a(Map map, String str) {
if (map == null) {
return C.TIME_UNSET;
}
try {
String str2 = (String) map.get(str);
return str2 != null ? Long.parseLong(str2) : C.TIME_UNSET;
} catch (NumberFormatException unused) {
return C.TIME_UNSET;
}
}
public static Pair a(z6 z6Var) {
Map d = z6Var.d();
if (d == null) {
return null;
}
return new Pair(Long.valueOf(a(d, WidevineUtil.PROPERTY_LICENSE_DURATION_REMAINING)), Long.valueOf(a(d, WidevineUtil.PROPERTY_PLAYBACK_DURATION_REMAINING)));
}
}