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,77 @@
package com.mbridge.msdk.out;
import android.text.TextUtils;
import androidx.annotation.NonNull;
import com.mbridge.msdk.system.NoProGuard;
import java.io.Serializable;
/* loaded from: classes4.dex */
public class MBridgeIds implements NoProGuard, Serializable {
private String bidToken = "";
private boolean isCache = false;
private String placementId;
private String requestId;
private String unitId;
public String getPlacementId() {
return this.placementId;
}
public String getUnitId() {
return this.unitId;
}
public boolean isCache() {
return this.isCache;
}
public void setBidToken(String str) {
this.bidToken = str;
}
public void setCache(boolean z) {
this.isCache = z;
}
public void setPlacementId(String str) {
this.placementId = str;
}
public void setRequestId(String str) {
this.requestId = str;
}
public void setUnitId(String str) {
this.unitId = str;
}
public MBridgeIds() {
}
public MBridgeIds(String str, String str2) {
this.placementId = str;
this.unitId = str2;
}
public MBridgeIds(String str, String str2, String str3) {
this.placementId = str;
this.unitId = str2;
this.requestId = str3;
}
public String getBidToken() {
if (TextUtils.isEmpty(this.bidToken)) {
this.bidToken = "";
}
return this.bidToken;
}
public String getRequestId() {
return TextUtils.isEmpty(this.requestId) ? "" : this.requestId;
}
@NonNull
public String toString() {
return "MBridgeIds{placementId='" + this.placementId + "', unitId='" + this.unitId + "', bidToken='" + this.bidToken + "'}";
}
}