- 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
26 lines
612 B
Java
26 lines
612 B
Java
package com.facebook.ads.internal.api;
|
|
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import androidx.annotation.Keep;
|
|
import androidx.annotation.UiThread;
|
|
|
|
@Keep
|
|
@UiThread
|
|
/* loaded from: classes2.dex */
|
|
public interface AdComponentView {
|
|
void addView(View view);
|
|
|
|
void addView(View view, int i);
|
|
|
|
void addView(View view, int i, int i2);
|
|
|
|
void addView(View view, int i, ViewGroup.LayoutParams layoutParams);
|
|
|
|
void addView(View view, ViewGroup.LayoutParams layoutParams);
|
|
|
|
void onWindowFocusChanged(boolean z);
|
|
|
|
void setLayoutParams(ViewGroup.LayoutParams layoutParams);
|
|
}
|