gpt4 book ai didi

android - React-Native Android CodePush 设置不下载更新

转载 作者:行者123 更新时间:2023-12-05 00:00:06 25 4
gpt4 key购买 nike

我在将 CodePush 设置到我的 React-Native Android 应用程序中时遇到问题。在我的仪表板上,没有显示任何应用已下载或安装更新。

注意:iOS Codepushing 适用于此移动应用,不适用于 Android。

我目前的 codePush 选项设置如下:

let codePushOptions = { 
checkFrequency: codePush.CheckFrequency.ON_APP_RESUME,
installMode: codePush.InstallMode.ON_NEXT_RESUME
};

我做过的事情:

  1. 在您的 android/settings.gradle 文件中,添加以下内容:

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

  2. 在您的 android/app/build.gradle 文件中,添加 :react-native-code-push 项目作为编译时依赖项:

    ...依赖关系{...编译项目(':react-native-code-push')

  3. 在您的 android/app/build.gradle 文件中,将 codepush.gradle 文件作为附加构建任务定义添加到 react.gradle 下:

    ...适用于:“../../node_modules/react-native/react.gradle”适用于:“../../node_modules/react-native-code-push/android/codepush.gradle”...

  4. 如果您要将 Code Push 集成到 React Native 应用程序中,请执行以下步骤:

通过以下更改更新 MainApplication.java 文件以使用 CodePush:

...
// 1. Import the plugin class.
import com.microsoft.codepush.react.CodePush;

public class MainApplication extends Application implements ReactApplication {

private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
...
// 2. Override the getJSBundleFile method in order to let
// the CodePush runtime determine where to get the JS
// bundle location from on each app start
@Override
protected String getJSBundleFile() {
return CodePush.getJSBundleFile();
}

@Override
protected List<ReactPackage> getPackages() {
// 3. Instantiate an instance of the CodePush runtime and add it to the list of
// existing packages, specifying the right deployment key. If you don't already
// have it, you can run "code-push deployment ls <appName> -k" to retrieve your key.
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new CodePush("deployment-key-here", MainApplication.this, BuildConfig.DEBUG)
);
}
};
}

这是我的 MainApplication.java 文件的图片

enter image description here


我知道还有this portion我不知道是否需要执行的设置说明。我尝试实现它,但出现错误,因为此代码与我文件中的示例文档完全不同。

我也不太确定这是什么:

public class MyReactNativeHost extends ReactNativeHost implements ReactInstanceHolder {
// ... usual overrides
}

编辑 2 - index.js 文件

import { AppRegistry } from 'react-native';
import codePush from "react-native-code-push";

import App from './app/config/app';

let codePushOptions = {
checkFrequency: codePush.CheckFrequency.ON_APP_RESUME,
installMode: codePush.InstallMode.ON_NEXT_RESUME
};

AppRegistry.registerComponent('AppName', () => codePush(codePushOptions)(App));

最佳答案

我将以下内容添加到我的 android/app/build.gradle 中,它可以作为解决方法。我猜这可能是 android gradle 插件问题。 AGP 4.1+ 中似乎有许多未记录的重大更改会影响 React Native。

在android下{ defaultConfig { 我加了

resValue 'string', "CODE_PUSH_APK_BUILD_TIME", String.format("\"%d\"", System.currentTimeMillis())

关于android - React-Native Android CodePush 设置不下载更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53450920/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com