Files
rr3-apk/decompiled-community/sources/com/facebook/ads/internal/api/NativeAdBaseApi.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

99 lines
1.8 KiB
Java

package com.facebook.ads.internal.api;
import android.graphics.drawable.Drawable;
import android.view.View;
import androidx.annotation.Keep;
import androidx.annotation.Nullable;
import com.facebook.ads.ExtraHints;
import com.facebook.ads.NativeAdBase;
@Keep
/* loaded from: classes2.dex */
public interface NativeAdBaseApi {
NativeAdBase.NativeAdLoadConfigBuilder buildLoadAdConfig(NativeAdBase nativeAdBase);
void destroy();
void downloadMedia();
@Nullable
String getAdBodyText();
@Nullable
String getAdCallToAction();
@Nullable
NativeAdImageApi getAdChoicesIcon();
@Nullable
String getAdChoicesImageUrl();
@Nullable
String getAdChoicesLinkUrl();
@Nullable
String getAdChoicesText();
@Nullable
NativeAdImageApi getAdCoverImage();
@Nullable
String getAdHeadline();
@Nullable
NativeAdImageApi getAdIcon();
@Nullable
String getAdLinkDescription();
@Nullable
String getAdSocialContext();
@Nullable
@Deprecated
NativeAdRatingApi getAdStarRating();
@Nullable
String getAdTranslation();
@Nullable
String getAdUntrimmedBodyText();
@Nullable
String getAdvertiserName();
float getAspectRatio();
@Nullable
String getId();
String getPlacementId();
@Nullable
Drawable getPreloadedIconViewDrawable();
@Nullable
String getPromotedTranslation();
@Nullable
String getSponsoredTranslation();
boolean hasCallToAction();
boolean isAdInvalidated();
boolean isAdLoaded();
void loadAd();
void loadAd(NativeAdBase.NativeLoadAdConfig nativeLoadAdConfig);
void onCtaBroadcast();
void setExtraHints(ExtraHints extraHints);
void setOnTouchListener(View.OnTouchListener onTouchListener);
void unregisterView();
}