tooot/android/app/src/main/java/com/xmflsct/app/tooot/MainActivity.java

41 lines
1.4 KiB
Java
Raw Normal View History

2021-01-28 00:41:53 +01:00
package com.xmflsct.app.tooot;
2023-07-11 23:21:41 +02:00
import expo.modules.ReactActivityDelegateWrapper;
2021-01-28 00:41:53 +01:00
import android.os.Bundle;
import com.facebook.react.ReactActivity;
import com.facebook.react.ReactActivityDelegate;
2023-02-11 19:15:34 +01:00
import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint;
import com.facebook.react.defaults.DefaultReactActivityDelegate;
2021-01-28 00:41:53 +01:00
2021-10-24 00:43:00 +02:00
import expo.modules.ReactActivityDelegateWrapper;
2021-01-28 00:41:53 +01:00
public class MainActivity extends ReactActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(null);
2021-01-28 00:41:53 +01:00
}
2022-05-08 22:35:43 +02:00
/**
* Returns the name of the main component registered from JavaScript.
* This is used to schedule rendering of the component.
*/
@Override
protected String getMainComponentName() {
return "main";
}
/**
2023-02-11 19:15:34 +01:00
* Returns the instance of the {@link ReactActivityDelegate}. Here we use a util class {@link
* DefaultReactActivityDelegate} which allows you to easily enable Fabric and Concurrent React
* (aka React 18) with two boolean flags.
2022-05-08 22:35:43 +02:00
*/
@Override
protected ReactActivityDelegate createReactActivityDelegate() {
2023-07-11 23:21:41 +02:00
return new ReactActivityDelegateWrapper(this, BuildConfig.IS_NEW_ARCHITECTURE_ENABLED, new DefaultReactActivityDelegate(
2023-02-11 19:15:34 +01:00
this,
getMainComponentName(),
// If you opted-in for the New Architecture, we enable the Fabric Renderer.
2023-07-11 23:21:41 +02:00
DefaultNewArchitectureEntryPoint.getFabricEnabled()));
2022-05-08 22:35:43 +02:00
}
2021-01-28 00:41:53 +01:00
}