Files
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

59 lines
1.6 KiB
Java

package com.applovin.impl;
import android.view.View;
import com.iab.omid.library.applovin.adsession.FriendlyObstructionPurpose;
/* loaded from: classes.dex */
public class og {
private final View a;
private final FriendlyObstructionPurpose b;
private final String c;
public String a() {
return this.c;
}
public FriendlyObstructionPurpose b() {
return this.b;
}
public View c() {
return this.a;
}
public og(View view, FriendlyObstructionPurpose friendlyObstructionPurpose, String str) {
this.a = view;
this.b = friendlyObstructionPurpose;
this.c = str;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
og ogVar = (og) obj;
View view = this.a;
if (view == null ? ogVar.a != null : !view.equals(ogVar.a)) {
return false;
}
if (this.b != ogVar.b) {
return false;
}
String str = this.c;
String str2 = ogVar.c;
return str != null ? str.equals(str2) : str2 == null;
}
public int hashCode() {
View view = this.a;
int hashCode = (view != null ? view.hashCode() : 0) * 31;
FriendlyObstructionPurpose friendlyObstructionPurpose = this.b;
int hashCode2 = (hashCode + (friendlyObstructionPurpose != null ? friendlyObstructionPurpose.hashCode() : 0)) * 31;
String str = this.c;
return hashCode2 + (str != null ? str.hashCode() : 0);
}
}