mirror of
https://github.com/status-im/react-native.git
synced 2025-01-25 00:39:03 +00:00
f93cf6ca19
Summary: Closes https://github.com/facebook/react-native/pull/5033 Reviewed By: svcscm Differential Revision: D2794157 Pulled By: androidtrunkagent fb-gh-sync-id: 9d30b3a661b18be31d246dc3f55c429cc4b51a8a
40 lines
1013 B
Java
40 lines
1013 B
Java
package <%= package %>;
|
|
|
|
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 "<%= name %>";
|
|
}
|
|
|
|
/**
|
|
* 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());
|
|
}
|
|
}
|