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,46 @@
package com.applovin.impl.privacy.cmp;
import com.applovin.sdk.AppLovinCmpError;
/* loaded from: classes2.dex */
public class CmpErrorImpl implements AppLovinCmpError {
private final AppLovinCmpError.Code a;
private final String b;
private final int c;
private final String d;
public CmpErrorImpl(AppLovinCmpError.Code code, String str) {
this(code, str, -1, "");
}
@Override // com.applovin.sdk.AppLovinCmpError
public int getCmpCode() {
return this.c;
}
@Override // com.applovin.sdk.AppLovinCmpError
public String getCmpMessage() {
return this.d;
}
@Override // com.applovin.sdk.AppLovinCmpError
public AppLovinCmpError.Code getCode() {
return this.a;
}
@Override // com.applovin.sdk.AppLovinCmpError
public String getMessage() {
return this.b;
}
public String toString() {
return "CmpErrorImpl(code=" + getCode() + ", message=" + getMessage() + ", cmpCode=" + getCmpCode() + ", cmpMessage=" + getCmpMessage() + ")";
}
public CmpErrorImpl(AppLovinCmpError.Code code, String str, int i, String str2) {
this.a = code;
this.b = str;
this.c = i;
this.d = str2;
}
}