- 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
98 lines
3.4 KiB
Java
98 lines
3.4 KiB
Java
package com.vungle.ads.internal.omsdk;
|
|
|
|
import android.webkit.WebView;
|
|
import androidx.annotation.VisibleForTesting;
|
|
import com.iab.omid.library.vungle.Omid;
|
|
import com.iab.omid.library.vungle.adsession.AdSession;
|
|
import com.iab.omid.library.vungle.adsession.AdSessionConfiguration;
|
|
import com.iab.omid.library.vungle.adsession.AdSessionContext;
|
|
import com.iab.omid.library.vungle.adsession.CreativeType;
|
|
import com.iab.omid.library.vungle.adsession.ImpressionType;
|
|
import com.iab.omid.library.vungle.adsession.Owner;
|
|
import com.iab.omid.library.vungle.adsession.Partner;
|
|
import com.vungle.ads.BuildConfig;
|
|
import java.util.concurrent.TimeUnit;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class OMTracker implements WebViewObserver {
|
|
public static final Companion Companion = new Companion(null);
|
|
private static final long DESTROY_DELAY_MS = TimeUnit.SECONDS.toMillis(1);
|
|
private AdSession adSession;
|
|
private final boolean enabled;
|
|
private boolean started;
|
|
|
|
public /* synthetic */ OMTracker(boolean z, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(z);
|
|
}
|
|
|
|
private OMTracker(boolean z) {
|
|
this.enabled = z;
|
|
}
|
|
|
|
public static final class Factory {
|
|
public final OMTracker make(boolean z) {
|
|
return new OMTracker(z, null);
|
|
}
|
|
}
|
|
|
|
public final void start() {
|
|
if (this.enabled && Omid.isActive()) {
|
|
this.started = true;
|
|
}
|
|
}
|
|
|
|
public final long stop() {
|
|
long j;
|
|
AdSession adSession;
|
|
if (!this.started || (adSession = this.adSession) == null) {
|
|
j = 0;
|
|
} else {
|
|
if (adSession != null) {
|
|
adSession.finish();
|
|
}
|
|
j = DESTROY_DELAY_MS;
|
|
}
|
|
this.started = false;
|
|
this.adSession = null;
|
|
return j;
|
|
}
|
|
|
|
@Override // com.vungle.ads.internal.omsdk.WebViewObserver
|
|
public void onPageFinished(WebView webView) {
|
|
Intrinsics.checkNotNullParameter(webView, "webView");
|
|
if (this.started && this.adSession == null) {
|
|
CreativeType creativeType = CreativeType.DEFINED_BY_JAVASCRIPT;
|
|
ImpressionType impressionType = ImpressionType.DEFINED_BY_JAVASCRIPT;
|
|
Owner owner = Owner.JAVASCRIPT;
|
|
AdSession createAdSession = AdSession.createAdSession(AdSessionConfiguration.createAdSessionConfiguration(creativeType, impressionType, owner, owner, false), AdSessionContext.createHtmlAdSessionContext(Partner.createPartner(BuildConfig.OMSDK_PARTNER_NAME, BuildConfig.VERSION_NAME), webView, null, null));
|
|
this.adSession = createAdSession;
|
|
if (createAdSession != null) {
|
|
createAdSession.registerAdView(webView);
|
|
}
|
|
AdSession adSession = this.adSession;
|
|
if (adSession != null) {
|
|
adSession.start();
|
|
}
|
|
}
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
@VisibleForTesting
|
|
public static /* synthetic */ void getDESTROY_DELAY_MS$annotations() {
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final long getDESTROY_DELAY_MS() {
|
|
return OMTracker.DESTROY_DELAY_MS;
|
|
}
|
|
}
|
|
}
|