mirror of
https://github.com/status-im/react-native.git
synced 2025-02-11 08:56:44 +00:00
Summary: We should use 4 spaces of indentation in the MainActivity template as this is the most common setting outside fb. public Reviewed By: bestander Differential Revision: D2911952 fb-gh-sync-id: 3b5285945f0033d7342348b7a7cbafa32809f7dc shipit-source-id: 3b5285945f0033d7342348b7a7cbafa32809f7dc
41 lines
1.0 KiB
Java
41 lines
1.0 KiB
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()
|
|
);
|
|
}
|
|
}
|