1

我已尽力按照此处此处的说明进行操作。Android 调试版本 ( react-native run-android) 按预期在 Android 模拟器和我的设备上运行,即,它在每次新安装或更新后重新加载 JS 文件。但是,当我安装发布版本 ( react-native run-android --variant=release) 时,它会显示应用程序的第一个屏幕,并且所有应用程序功能都不起作用。我还没有尝试在 iOS 上安装。似乎它没有从 codepush 加载 JS 文件。当我检查日志文件时(在模拟器上安装发布版本时),它挂在这一行:

[CodePush] Loading JS bundle from "assets://index.android.bundle"

令人惊讶的是,发布版本试图在本地加载 JS 包而不是检查 CodePush 远程服务器。我的 React-native 和 react-native-code-push 版本是 0.45.1 和 3.0.1-beta。我已经将我的代码部署到了登台和生产代码推送服务器,并通过运行验证了它的存在

code-push deployment ls onetext-Android -k

我还适当地配置了我的密钥。这样做了 10 多次后,有一次发布安装的日志文件实际上显示:

[CodePush] Loading JS bundle from "/data/user/0/com.onetext/files/CodePush/f93a24d467d53.../CodePush/index.android.bundle"

该应用程序提示我安装最新更新。但是,安装完成后它就崩溃了。从那一刻起,我就无法让它从 codepush 服务器加载文件。任何关于在哪里查看或如何调试的提示将不胜感激。我的应用程序是以native-starter-kit作为起点构建的。这是我的 settings.gradle 文件:

rootProject.name = 'OneText'
include ':react-native-onesignal'
project(':react-native-onesignal').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-onesignal/android')

include ':react-native-image-picker'
project(':react-native-image-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-image-picker/android')

include ':react-native-code-push'
project(':react-native-code-push').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-code-push/android/app')

include ':app'

我的 build.gradle 文件的相关部分:

apply from: "../../node_modules/react-native/react.gradle"
apply from: "../../node_modules/react-native-code-push/android/codepush.gradle"

def enableSeparateBuildPerCPUArchitecture = false

def enableProguardInReleaseBuilds = false

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.onetext"
        minSdkVersion 16
        targetSdkVersion 22
        versionCode 4
        versionName "1.0.1"
        ndk {
            abiFilters "armeabi-v7a", "x86"
        }
         manifestPlaceholders = [onesignal_app_id: "xxx",
                                         onesignal_google_project_number: "xxx"]
    }
    signingConfigs {
        release {
            if (project.hasProperty('MYAPP_RELEASE_STORE_FILE')) {
                storeFile file(MYAPP_RELEASE_STORE_FILE)
                storePassword MYAPP_RELEASE_STORE_PASSWORD
                keyAlias MYAPP_RELEASE_KEY_ALIAS
                keyPassword MYAPP_RELEASE_KEY_PASSWORD
            }
        }
    }
    splits {
        abi {
            reset()
            enable enableSeparateBuildPerCPUArchitecture
            universalApk false  // If true, also generate a universal APK
            include "armeabi-v7a", "x86"
        }
    }
    buildTypes {
        debug {
            buildConfigField "String", "CODEPUSH_KEY", '""'
        }
        releaseStaging {
            buildConfigField "String", "CODEPUSH_KEY", '"H3ZFJ..."'
        }
        release {
            buildConfigField "String", "CODEPUSH_KEY", '"r0Sx..."'
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
            signingConfig signingConfigs.release
        }
    }
    // applicationVariants are e.g. debug, release
    applicationVariants.all { variant ->
        variant.outputs.each { output ->
            // For each separate APK per architecture, set a unique version code as described here:
            // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
            def versionCodes = ["armeabi-v7a":1, "x86":2]
            def abi = output.getFilter(OutputFile.ABI)
            if (abi != null) {  // null for the universal-debug, universal-release variants
                output.versionCodeOverride =
                        versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
            }
        }
    }
}

dependencies {
    compile project(':react-native-onesignal')
    compile project(':react-native-image-picker')
    compile project(':react-native-code-push')
    compile fileTree(dir: "libs", include: ["*.jar"])
    compile "com.android.support:appcompat-v7:23.0.1"
    compile "com.facebook.react:react-native:+"  // From node_modules
}

// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
    from configurations.compile
    into 'libs'
}

MainApplication.java:

package com.onetext;

import android.app.Application;

import com.facebook.react.ReactApplication;
import com.geektime.rnonesignalandroid.ReactNativeOneSignalPackage;
import com.microsoft.codepush.react.CodePush;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;
import com.facebook.soloader.SoLoader;
import com.imagepicker.ImagePickerPackage;

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

public class MainApplication extends Application implements ReactApplication {

  private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {

    @Override
    protected String getJSBundleFile() {
      return CodePush.getJSBundleFile();
    }

    @Override
    public boolean getUseDeveloperSupport() {
      return BuildConfig.DEBUG;
    }

    @Override
    protected List<ReactPackage> getPackages() {
      return Arrays.<ReactPackage>asList(
          new MainReactPackage(),
            new ReactNativeOneSignalPackage(),
            new CodePush(BuildConfig.CODEPUSH_KEY, MainApplication.this, BuildConfig.DEBUG), // Add/change this line.
            new ImagePickerPackage()
      );
    }
  };

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

  @Override
  public void onCreate() {
    super.onCreate();
    SoLoader.init(this, /* native exopackage */ false);
  }
}
4

1 回答 1

1

即使在使用 CodePush 时,非调试应用程序也始终需要包含 JS Bundle。CodePush 的同步/更新/验证安装函数都是从 JS 调用,而不是从 Java 或 ObjC/Swift 调用(应用程序要么使用 codePush 高阶组件包装注册到 AppRegistry 的组件,要么应用程序正在调用 codePush.sync() 函数或更低级别的功能来执行更新检查并安装更新)。

我在这里的假设是,在撰写此问题时,您还没有在相当长的一段时间内重建您的 jsbundle,因此显示的版本不是最新的,很可能根本不包括与 CodePush 的集成,因此会也不检查发布到 CodePush 的更新。

总之 - 构建你的 android jsbundle,重新安装发布版本,一切都应该工作。

于 2017-10-27T17:22:15.310 回答