Files
rr3-apk/decompiled-community/sources/com/iab/omid/library/unity3d/adsession/Partner.java
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

29 lines
660 B
Java

package com.iab.omid.library.unity3d.adsession;
import com.iab.omid.library.unity3d.utils.g;
/* loaded from: classes2.dex */
public class Partner {
private final String name;
private final String version;
private Partner(String str, String str2) {
this.name = str;
this.version = str2;
}
public static Partner createPartner(String str, String str2) {
g.a(str, "Name is null or empty");
g.a(str2, "Version is null or empty");
return new Partner(str, str2);
}
public String getName() {
return this.name;
}
public String getVersion() {
return this.version;
}
}