mirror of
https://github.com/status-im/react-native.git
synced 2025-01-20 06:18:57 +00:00
e46736219c
Reviewed By: mkonicek Differential Revision:D2812482 Ninja: Doesn't affect any fb apps or code, purely for open source fb-gh-sync-id: 4d190354112e3f002405686769dcc409e3394c3c
41 lines
1020 B
Java
41 lines
1020 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()
|
|
);
|
|
}
|
|
}
|