- 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
24 lines
419 B
Java
24 lines
419 B
Java
package com.facebook.ads;
|
|
|
|
import androidx.annotation.Keep;
|
|
import com.facebook.ads.Ad;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface FullScreenAd extends Ad {
|
|
|
|
@Keep
|
|
public interface ShowAdConfig {
|
|
}
|
|
|
|
@Keep
|
|
public interface ShowConfigBuilder {
|
|
ShowAdConfig build();
|
|
}
|
|
|
|
Ad.LoadConfigBuilder buildLoadAdConfig();
|
|
|
|
ShowConfigBuilder buildShowAdConfig();
|
|
|
|
boolean show();
|
|
}
|