- 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
18 lines
630 B
Java
18 lines
630 B
Java
package com.facebook.ads.internal.api;
|
|
|
|
import android.content.Context;
|
|
import android.view.View;
|
|
import androidx.annotation.Keep;
|
|
import androidx.annotation.Nullable;
|
|
import com.facebook.ads.NativeAdViewAttributes;
|
|
import com.facebook.ads.NativeBannerAd;
|
|
import com.facebook.ads.NativeBannerAdView;
|
|
|
|
@Keep
|
|
/* loaded from: classes2.dex */
|
|
public interface NativeBannerAdViewApi {
|
|
View render(Context context, NativeBannerAd nativeBannerAd, NativeBannerAdView.Type type);
|
|
|
|
View render(Context context, NativeBannerAd nativeBannerAd, NativeBannerAdView.Type type, @Nullable NativeAdViewAttributes nativeAdViewAttributes);
|
|
}
|