com.deploygate.service.IDeployGateSdkService.aidl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
DeployGate SDK for Android
package com.deploygate.service;
import com.deploygate.service.IDeployGateSdkServiceCallback;
interface IDeployGateSdkService {
/** Register a callback interface for DeployGate SDK Service. */
void init(in IDeployGateSdkServiceCallback callback, in String packageName, in Bundle extras);
void sendEvent(in String packageName, in String action, in Bundle extras);
}