Rabbit-R1/android (non root)/java/sources/io/flutter/embedding/engine/deferredcomponents/DeferredComponentManager.java

24 lines
677 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
package io.flutter.embedding.engine.deferredcomponents;
import io.flutter.embedding.engine.FlutterJNI;
import io.flutter.embedding.engine.systemchannels.DeferredComponentChannel;
/* loaded from: classes3.dex */
public interface DeferredComponentManager {
void destroy();
String getDeferredComponentInstallState(int i, String str);
void installDeferredComponent(int i, String str);
void loadAssets(int i, String str);
void loadDartLibrary(int i, String str);
void setDeferredComponentChannel(DeferredComponentChannel deferredComponentChannel);
void setJNI(FlutterJNI flutterJNI);
boolean uninstallDeferredComponent(int i, String str);
}