mirror of
https://github.com/roytam1/UXP.git
synced 2026-06-16 13:28:45 +00:00
13 lines
217 B
Java
13 lines
217 B
Java
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);
|
|
}
|