mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
11 lines
314 B
Java
11 lines
314 B
Java
|
package androidx.work;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import com.google.common.util.concurrent.ListenableFuture;
|
||
|
import java.util.UUID;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public interface ForegroundUpdater {
|
||
|
ListenableFuture<Void> setForegroundAsync(Context context, UUID id, ForegroundInfo foregroundInfo);
|
||
|
}
|