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,63 @@
package com.vungle.ads.fpd;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.ranges.IntRange;
/* loaded from: classes4.dex */
public enum AgeRange {
AGE_18_20(1, new IntRange(18, 20)),
AGE_21_30(2, new IntRange(21, 30)),
AGE_31_40(3, new IntRange(31, 40)),
AGE_41_50(4, new IntRange(41, 50)),
AGE_51_60(5, new IntRange(51, 60)),
AGE_61_70(6, new IntRange(61, 70)),
AGE_71_75(7, new IntRange(71, 75)),
OTHERS(0, new IntRange(Integer.MIN_VALUE, Integer.MAX_VALUE));
public static final Companion Companion = new Companion(null);
private final int id;
private final IntRange range;
public final int getId() {
return this.id;
}
public final IntRange getRange() {
return this.range;
}
AgeRange(int i, IntRange intRange) {
this.id = i;
this.range = intRange;
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
public final AgeRange fromAge$vungle_ads_release(int i) {
AgeRange ageRange;
AgeRange[] values = AgeRange.values();
int length = values.length;
int i2 = 0;
while (true) {
if (i2 >= length) {
ageRange = null;
break;
}
ageRange = values[i2];
IntRange range = ageRange.getRange();
int first = range.getFirst();
if (i <= range.getLast() && first <= i) {
break;
}
i2++;
}
return ageRange == null ? AgeRange.OTHERS : ageRange;
}
}
}