blob: ab704e6d36871878ce9fc4098d84447b1d652db5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package com.adjust.sdk.plugin;
import android.content.Context;
import java.util.Map;
/**
* Created by pfms on 18/09/14.
*/
public interface Plugin {
Map.Entry<String, String> getParameter(Context context);
}
|