mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-29 13:09:12 +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);
|
|
}
|