mirror of
https://github.com/topjohnwu/Magisk.git
synced 2026-07-03 14:08:39 +02:00
13 lines
291 B
Java
13 lines
291 B
Java
package androidx.lifecycle;
|
|
|
|
import android.content.Context;
|
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
public class ProcessLifecycleAccessor {
|
|
public static void init(@NonNull Context context) {
|
|
LifecycleDispatcher.init(context);
|
|
ProcessLifecycleOwner.init(context);
|
|
}
|
|
}
|