在发布版本中显示 epub 的问题 android

problem to show epub in release build android

我尝试使用 epubjs-rn 包通过以下代码显示我的 epub,在调试构建中一切正常,当我获得发布构建和测试时,epub 书不在开始显示时显示并修复加载, 我在 android 工作室控制台中调试并发现相同的错误:

I/ReactNativeJS: readBookEpub   id: 4868
I/ReactNativeJS: source: http://localhost:8899/4868/
E/ReactNativeJS: Empty Response

我的代码:

_showEpub(bookName) {
        console.log("_showEpub");


        
        const targetPath = 'http://127.0.0.1:8899/' + bookName + '.epub';




        //------------------------------------------------------show Epub 
        try {
            this.streamer.start()
                .then((origin) => {
                    console.log("Served from:", origin);
                    // this.streamer.check('http://127.0.0.1:8899/moby-dick.epub').then((t) => console.log("hiii"+t));
                    return this.streamer.get(targetPath);
                })
                .then((src) => {
                    console.log("Loading from:", src);
                    return this.setState({ urlBook: src });
                });
        }
        catch (err) {
            console.log("Error: " + err);
        }
        //---------------------------------------------------


    }

为了展示书籍,我通过RNBackgroundDownloader从我的服务器下载书籍并保存,然后将其解压缩到资产文件夹中以在本地阅读, 我的解压功能:

  _unZipBook(bookName) {
        console.log("_unZipBook")

        const sourcePath = Dirs.DocumentDir + '/FaraSource/e/' + bookName + '.zip';

        const targetPath = `${Dirs.DocumentDir}/assets/${bookName}`;

        unzip(sourcePath, targetPath)
            .then((path) => {

                console.log("unZip " + bookName + "in" + targetPath);
                this._showEpub(bookName);
                // return url;
            })
    }

谁能帮我解决这个问题?

我解决了问题,必须在AndroidManifest中添加一行

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest ...>
    <uses-permission android:name="android.permission.INTERNET" />
    <application
        ...
        android:usesCleartextTraffic="true"
        ...>
        ...
    </application>
</manifest>