- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
21 lines
638 B
Java
21 lines
638 B
Java
package com.facebook.ads.internal.api;
|
|
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
import androidx.annotation.Keep;
|
|
import androidx.annotation.Nullable;
|
|
import com.facebook.ads.MediaView;
|
|
import java.util.List;
|
|
|
|
@Keep
|
|
/* loaded from: classes2.dex */
|
|
public interface NativeBannerAdApi {
|
|
void registerViewForInteraction(View view, ImageView imageView);
|
|
|
|
void registerViewForInteraction(View view, ImageView imageView, @Nullable List<View> list);
|
|
|
|
void registerViewForInteraction(View view, MediaView mediaView);
|
|
|
|
void registerViewForInteraction(View view, MediaView mediaView, @Nullable List<View> list);
|
|
}
|