- 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
21 lines
407 B
Java
21 lines
407 B
Java
package com.vungle.ads.internal.presenter;
|
|
|
|
import com.vungle.ads.VungleError;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public interface AdPlayCallback {
|
|
void onAdClick(String str);
|
|
|
|
void onAdEnd(String str);
|
|
|
|
void onAdImpression(String str);
|
|
|
|
void onAdLeftApplication(String str);
|
|
|
|
void onAdRewarded(String str);
|
|
|
|
void onAdStart(String str);
|
|
|
|
void onFailure(VungleError vungleError);
|
|
}
|