简体   繁体   English

运行react-native run-android时,在MainActivity.java上出错

[英]Getting error on MainActivity.java when running react-native run-android

I'm running react-native run-android and I'm getting this error when compiling. 我正在运行react-native run-android ,我在编译时遇到了这个错误。

:app:compileDebugJavaWithJavac - is not incremental (eg outputs have changed, no previous execution, etc.) :app:compileDebugJavaWithJavac - 不是增量的(例如输出已更改,之前没有执行等)

MainActivity.java:37: error: method does not override or implement a method from a supertype @Override ^ 1 error :app:compileDebugJavaWithJavac FAILED MainActivity.java:37:error:方法不会覆盖或实现超类型@Override ^ 1错误的方法:app:compileDebugJavaWithJavac FAILED

FAILURE: Build failed with an exception. FAILURE:构建因异常而失败。

I really don't know how to proceed so any suggestion is really welcome. 我真的不知道怎么办,所以任何建议都非常受欢迎。

I have installed: 我安装了:

  • javac 1.8.0_101 javac 1.8.0_101
  • react-native-cli: 1.0.0 react-native-cli:1.0.0
  • react-native: 0.32.0 反应原生:0.32.0

EDIT 编辑

This is the MainActivity.java 这是MainActivity.java

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 "netbeast";
    }

    /**
     * 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  **//This is the line 37 where the error occurs**
    protected List<ReactPackage> getPackages() {
        return Arrays.<ReactPackage>asList(
            new MainReactPackage(),
            new VectorIconsPackage(),
            new UdpSocketsModule(),
            new RNNetworkInfoPackage()
        );
    }
}

尝试运行react-native upgrade,这将更新mainActivity.java。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM