17 lines
387 B
Java
17 lines
387 B
Java
package io.flutter.embedding.engine.plugins.service;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public interface ServiceAware {
|
|
|
|
/* loaded from: classes6.dex */
|
|
public interface OnModeChangeListener {
|
|
void onMoveToBackground();
|
|
|
|
void onMoveToForeground();
|
|
}
|
|
|
|
void onAttachedToService(ServicePluginBinding servicePluginBinding);
|
|
|
|
void onDetachedFromService();
|
|
}
|