Skip to content

Instantly share code, notes, and snippets.

@AidenMontgomery
Last active January 8, 2016 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AidenMontgomery/2c35dc879792c1678538 to your computer and use it in GitHub Desktop.
Save AidenMontgomery/2c35dc879792c1678538 to your computer and use it in GitHub Desktop.
The MainActivity I am seeing when creating a new react-native app
package com.androidmaptest;
import com.facebook.react.ReactActivity;
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 "AndroidMapTest";
}
/**
* 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());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment