mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 02:43:07 +09:00
12 lines
217 B
Java
12 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);
|
|
}
|