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,58 @@
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);
}
}