Kufar v3.2.0版本的 MD5 值为:6a4d203db1c561c7e3bcd50d23fed59f

以下内容为反编译后的 CustomEvent.java 源代码,内容仅作参考


package com.schibsted.shared.events.schema.events;

import androidx.annotation.NonNull;
import com.schibsted.shared.events.schema.objects.Provider;
import com.schibsted.shared.events.schema.objects.Tracker;
import java.util.HashMap;

public class CustomEvent extends BaseBehaviorEvent {
    public HashMap<String, String> custom;
    public String subtype;
    public Tracker tracker;

    public CustomEvent(@NonNull String str, @NonNull Provider provider) {
        super("CustomEvent", provider);
        this.schema = "http://schema.schibsted.com/events/custom-event.json/89.json";
        this.subtype = "custom:" + str;
    }
}