mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
25 lines
630 B
Java
25 lines
630 B
Java
|
package io.flutter.app;
|
||
|
|
||
|
import android.app.Activity;
|
||
|
import android.app.Application;
|
||
|
import io.flutter.FlutterInjector;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class FlutterApplication extends Application {
|
||
|
private Activity mCurrentActivity = null;
|
||
|
|
||
|
public Activity getCurrentActivity() {
|
||
|
return this.mCurrentActivity;
|
||
|
}
|
||
|
|
||
|
public void setCurrentActivity(Activity activity) {
|
||
|
this.mCurrentActivity = activity;
|
||
|
}
|
||
|
|
||
|
@Override // android.app.Application
|
||
|
public void onCreate() {
|
||
|
super.onCreate();
|
||
|
FlutterInjector.instance().flutterLoader().startInitialization(this);
|
||
|
}
|
||
|
}
|