jfilter/frag-den-staat-app

View on GitHub
android/app/src/main/java/de/fragdenstaat/app/MainActivity.java

Summary

Maintainability
A
0 mins
Test Coverage
package de.fragdenstaat.app;

import com.facebook.react.ReactActivity;

// https://kmagiera.github.io/react-native-gesture-handler/docs/getting-started.html

import com.facebook.react.ReactActivityDelegate;
import com.facebook.react.ReactRootView;
import com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView;

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 "FragDenStaat";
    }

  @Override
  protected ReactActivityDelegate createReactActivityDelegate() {
    return new ReactActivityDelegate(this, getMainComponentName()) {
      @Override
      protected ReactRootView createRootView() {
       return new RNGestureHandlerEnabledRootView(MainActivity.this);
      }
    };
  }
}