Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AdRegistrator.java « ads « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46c7fcf5f9b3c3df68df9d5fd3c16aa3c1317d72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.mapswithme.maps.ads;

import androidx.annotation.NonNull;
import android.view.View;

import com.mopub.nativeads.BaseNativeAd;

public interface AdRegistrator
{
  void registerView(@NonNull BaseNativeAd ad, @NonNull View view);
  void unregisterView(@NonNull BaseNativeAd ad, @NonNull View view);
}