23 lines
364 B
Java
23 lines
364 B
Java
|
package com.huawei.hms.support.api.client;
|
||
|
|
||
|
import android.content.Context;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public interface ApiClient {
|
||
|
String getAppID();
|
||
|
|
||
|
Context getContext();
|
||
|
|
||
|
String getCpID();
|
||
|
|
||
|
String getPackageName();
|
||
|
|
||
|
String getSessionId();
|
||
|
|
||
|
SubAppInfo getSubAppInfo();
|
||
|
|
||
|
String getTransportName();
|
||
|
|
||
|
boolean isConnected();
|
||
|
}
|