- 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
23 lines
490 B
Java
23 lines
490 B
Java
package com.mbridge.msdk.out;
|
|
|
|
import android.content.Context;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public abstract class MBCommonHandler {
|
|
protected Context context;
|
|
protected Map<String, Object> properties;
|
|
|
|
public abstract boolean load();
|
|
|
|
public abstract void release();
|
|
|
|
public MBCommonHandler() {
|
|
}
|
|
|
|
public MBCommonHandler(Map<String, Object> map, Context context) {
|
|
this.properties = map;
|
|
this.context = context;
|
|
}
|
|
}
|