繁体   English   中英

在React-Native中使用Android运行CodePush

[英]Running CodePush with Android in React-Native

在成功地为Android运行React-Native之后,我遇到了以下错误。

:app:compileDebugJavaWithJavac
/Users/Spicycurryman/Desktop/Main/Projects/Wosyl-Delivery-1.0-master/android/app/src/main/java/com/wosyldelivery/MainApplication.java:30: error: no suitable constructor found for CodePush(<null>,<anonymous ReactNativeHost>,boolean)
            new CodePush(null, this, BuildConfig.DEBUG),
            ^
    constructor CodePush.CodePush(String,Context,boolean,String) is not applicable
      (actual and formal argument lists differ in length)
    constructor CodePush.CodePush(String,Context,boolean) is not applicable
      (actual argument <anonymous ReactNativeHost> cannot be converted to Context by method invocation conversion)
    constructor CodePush.CodePush(String,Context) is not applicable
      (actual and formal argument lists differ in length)
1 error
:app:compileDebugJavaWithJavac FAILED

我按照仓库中的说明进行操作,即使在查看此https://github.com/Microsoft/react-native-code-push/issues/790后也不确定为什么会发生这种情况

这是我的MainApplication.java,用于完整上下文。

package com.wosyldelivery;

import android.app.Application;
import android.util.Log;

import com.facebook.react.ReactApplication;
import com.microsoft.codepush.react.CodePush;
import com.oblador.vectoricons.VectorIconsPackage;
import com.facebook.react.ReactInstanceManager;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;


import java.util.Arrays;
import java.util.List;

public class MainApplication extends Application implements ReactApplication {

  private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
    @Override
    protected boolean getUseDeveloperSupport() {
      return BuildConfig.DEBUG;
    }

    @Override
    protected List<ReactPackage> getPackages() {
      return Arrays.<ReactPackage>asList(
          new MainReactPackage(),
            new CodePush(null, this, BuildConfig.DEBUG),
            new VectorIconsPackage()
      );
    }
    @Override
    protected String getJSBundleFile() {
      return CodePush.getJSBundleFile();
    }
  };

  @Override
  public ReactNativeHost getReactNativeHost() {
      return mReactNativeHost;
  }
}

发生此错误的原因是什么? 如何解决?

new CodePush("deployment-key", getApplicationContext(), BuildConfig.DEBUG)

deployment-key是一个字母数字字符串,在您注册代码推送帐户时会获得该字符串,并且不能为null。

将CodePush的实例化更改为此:

new CodePush("deployment-key-here", MainApplication.this, BuildConfig.DEBUG)

暂无
暂无

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

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