- 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
35 lines
620 B
Java
35 lines
620 B
Java
package com.applovin.impl;
|
|
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class fh {
|
|
private final String a;
|
|
private Map b;
|
|
|
|
public Map a() {
|
|
return this.b;
|
|
}
|
|
|
|
public String b() {
|
|
return this.a;
|
|
}
|
|
|
|
public String toString() {
|
|
return "PendingReward{result='" + this.a + "'params='" + this.b + "'}";
|
|
}
|
|
|
|
public static fh a(String str) {
|
|
return a(str, null);
|
|
}
|
|
|
|
private fh(String str, Map map) {
|
|
this.a = str;
|
|
this.b = map;
|
|
}
|
|
|
|
public static fh a(String str, Map map) {
|
|
return new fh(str, map);
|
|
}
|
|
}
|