美文网首页
react-native使用RNFetchBlob 更新安卓包

react-native使用RNFetchBlob 更新安卓包

作者: 不一样的心情_eb40 | 来源:发表于2019-04-24 15:01 被阅读0次

react-native-fetch-blob链接: https://github.com/wkh237/react-native-fetch-blob

示例代码:

import RNFetchBlob from 'react-native-fetch-blob';

let dirs = RNFetchBlob.fs.dirs;
let android = RNFetchBlob.android;
RNFetchBlob.config({
        addAndroidDownloads: {
            // 调起原生下载管理
            useDownloadManager: true,
            // 你想要设置的下载的安装包保存的名字
            title: '盛云.apk',
            // 下载时候顶部通知栏的描述
            description: '下载完成之后将会自动安装',
            // 下载的文件格式
            mime: 'application/vnd.android.package-archive',
            // 下载完成之后扫描下载的文件
            mediaScannable: true,
            // 通知栏显示下载情况
            notification: true,
            // 文件下载的同时缓存起来,提高操作效率
            fileCache: true,
            path: dirs.DownloadDir + '/盛云.apk'
        }
    })
    .fetch('GET', `${this.state.apkUrl}`)
    .progress((received, total) => {
        // todo:貌似下载进度无法响应
        // console.log('下载进度:' + Math.floor((received / total) * 100) + '%');
    })
    .then(res => {
        android.actionViewIntent(
            dirs.DownloadDir + '/盛云.apk',
            'application/vnd.android.package-archive'
        );
    })
    .catch(err => {
        console.warn('下载失败');
        console.warn(err);
    });

2020年4月26日更新 react-native-fetch-blob已经没有维护了,所以但是我们可以使用rn-fetch-blob来代替用法几乎一致 https://github.com/joltup/rn-fetch-blob

遇到的问题以及解决办法

  • Android 9 上无法使用 android.actionViewIntent自动安装应用

解决办法:

  1. 修改 node_modules/rn-fetch-blob/android/src/main/java/com/RNFetchBlob/RNFetchBlob.java
    intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)替换为intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_ACTIVITY_NEW_TASK);

  2. 然后修改自己项目的AndroidManifest.xml增加

<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />

相关文章

网友评论

      本文标题:react-native使用RNFetchBlob 更新安卓包

      本文链接:https://www.haomeiwen.com/subject/yjjggqtx.html