diff --git a/native/android/app/src/main/java/app/comm/android/MainActivity.java b/native/android/app/src/main/java/app/comm/android/MainActivity.java index edffb651c..69952d025 100644 --- a/native/android/app/src/main/java/app/comm/android/MainActivity.java +++ b/native/android/app/src/main/java/app/comm/android/MainActivity.java @@ -1,71 +1,69 @@ package app.comm.android; import android.content.Intent; import android.os.Bundle; import com.facebook.react.ReactActivity; import com.facebook.react.ReactActivityDelegate; import com.facebook.react.ReactRootView; import expo.modules.ReactActivityDelegateWrapper; public class MainActivity extends ReactActivity { /** * Returns the name of the main component registered from JavaScript. * This is used to schedule rendering of the component. */ @Override protected String getMainComponentName() { return "Comm"; } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(null); } @Override public void onNewIntent(Intent intent) { super.onNewIntent(intent); setIntent(intent); } /** * Returns the instance of the {@link ReactActivityDelegate}. There the * RootView is created and you can specify the renderer you wish to use - the * new renderer (Fabric) or the old renderer (Paper). */ @Override protected ReactActivityDelegate createReactActivityDelegate() { return new ReactActivityDelegateWrapper( - this, - new MainActivityDelegate(this, getMainComponentName()) - ); + this, new MainActivityDelegate(this, getMainComponentName())); } public static class MainActivityDelegate extends ReactActivityDelegate { public MainActivityDelegate( ReactActivity activity, String mainComponentName) { super(activity, mainComponentName); } @Override protected ReactRootView createRootView() { ReactRootView reactRootView = new ReactRootView(getContext()); // If you opted-in for the New Architecture, we enable the Fabric // Renderer. reactRootView.setIsFabric(BuildConfig.IS_NEW_ARCHITECTURE_ENABLED); return reactRootView; } @Override protected boolean isConcurrentRootEnabled() { // If you opted-in for the New Architecture, we enable Concurrent Root // (i.e. React 18). More on this on // https://reactjs.org/blog/2022/03/29/react-v18.html return BuildConfig.IS_NEW_ARCHITECTURE_ENABLED; } } @Override public void invokeDefaultOnBackPressed() { moveTaskToBack(true); } }