- 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
33 lines
1018 B
Java
33 lines
1018 B
Java
package com.applovin.impl;
|
|
|
|
import org.xmlpull.v1.XmlPullParser;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class gs {
|
|
public static boolean b(XmlPullParser xmlPullParser, String str) {
|
|
return a(xmlPullParser) && xmlPullParser.getName().equals(str);
|
|
}
|
|
|
|
public static boolean c(XmlPullParser xmlPullParser, String str) {
|
|
return b(xmlPullParser) && xmlPullParser.getName().equals(str);
|
|
}
|
|
|
|
public static String a(XmlPullParser xmlPullParser, String str) {
|
|
int attributeCount = xmlPullParser.getAttributeCount();
|
|
for (int i = 0; i < attributeCount; i++) {
|
|
if (xmlPullParser.getAttributeName(i).equals(str)) {
|
|
return xmlPullParser.getAttributeValue(i);
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public static boolean b(XmlPullParser xmlPullParser) {
|
|
return xmlPullParser.getEventType() == 2;
|
|
}
|
|
|
|
public static boolean a(XmlPullParser xmlPullParser) {
|
|
return xmlPullParser.getEventType() == 3;
|
|
}
|
|
}
|