Skip to content

Instantly share code, notes, and snippets.

@Kielan
Created April 4, 2016 08:27
Show Gist options
  • Save Kielan/fcaa07a5456d720af9711eece58988b7 to your computer and use it in GitHub Desktop.
Save Kielan/fcaa07a5456d720af9711eece58988b7 to your computer and use it in GitHub Desktop.
package com.chartapp;
import com.facebook.react.ReactActivity;
import cn.mandata.react_native_mpchart.MPChartPackage;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;
import java.util.Arrays;
import java.util.List;
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 "ChartApp";
}
/**
* Returns whether dev mode should be enabled.
* This enables e.g. the dev menu.
*/
@Override
protected boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
/**
* A list of packages used by the app. If the app uses additional views
* or modules besides the default ones, add more packages here.
*/
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new MPChartPackage()
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment