- 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
30 lines
1000 B
Java
30 lines
1000 B
Java
package com.fyber.inneractive.sdk.network;
|
|
|
|
import com.fyber.inneractive.sdk.util.IAlog;
|
|
import org.json.JSONArray;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class e implements w<String> {
|
|
public final /* synthetic */ String a;
|
|
public final /* synthetic */ JSONArray b;
|
|
public final /* synthetic */ long c;
|
|
|
|
public e(String str, JSONArray jSONArray, long j) {
|
|
this.a = str;
|
|
this.b = jSONArray;
|
|
this.c = j;
|
|
}
|
|
|
|
@Override // com.fyber.inneractive.sdk.network.w
|
|
public final void a(String str, Exception exc, boolean z) {
|
|
String str2 = str;
|
|
IAlog.a("Event Request: Hitting URL finished: %s, body: %s", this.a, this.b);
|
|
if (exc == null) {
|
|
IAlog.a("Event Request: Hitting URL response code: %s", str2);
|
|
} else {
|
|
IAlog.a("Event Request: Hitting URL failed: %s", exc);
|
|
}
|
|
IAlog.a("Event Request: Url hit took %s millis", Long.valueOf(System.currentTimeMillis() - this.c));
|
|
}
|
|
}
|