Files
rr3-apk/decompiled/sources/com/applovin/impl/m3.java
Daniel Elliott f9d20bb3fc 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>
2026-02-18 14:52:23 -08:00

46 lines
1.2 KiB
Java

package com.applovin.impl;
import com.applovin.sdk.AppLovinSdkConfiguration;
/* loaded from: classes.dex */
public class m3 {
private final AppLovinSdkConfiguration.ConsentFlowUserGeography a;
public AppLovinSdkConfiguration.ConsentFlowUserGeography a() {
return this.a;
}
public String toString() {
return "CmpAdapterParameters(debugUserGeography=" + a() + ")";
}
public boolean a(Object obj) {
return obj instanceof m3;
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof m3)) {
return false;
}
m3 m3Var = (m3) obj;
if (!m3Var.a(this)) {
return false;
}
AppLovinSdkConfiguration.ConsentFlowUserGeography a = a();
AppLovinSdkConfiguration.ConsentFlowUserGeography a2 = m3Var.a();
return a != null ? a.equals(a2) : a2 == null;
}
public int hashCode() {
AppLovinSdkConfiguration.ConsentFlowUserGeography a = a();
return (a == null ? 43 : a.hashCode()) + 59;
}
public m3(AppLovinSdkConfiguration.ConsentFlowUserGeography consentFlowUserGeography) {
this.a = consentFlowUserGeography;
}
}