cordova - 将额外的二进制文件捆绑到应用程序根目录
构建项目时,我如何指示 cordova 将 file.bin 添加到生成的 APK 中,以便安装 apk 后该文件将在此路径中可用:/data/data/com.myapp/file。 bin
file.bin 是来自 https://github.com/aria2/aria2 项目,它是一个运行在android上的命令行工具下载器。
我安装了插件:org.apache.cordova.shell-exec 这样我就可以“chmod 755 /data/data/com.myapp/file.bin”并从我的js代码调用这个二进制文件。
我尝试添加到 config.xml:
但这不起作用,它是尽管已将其复制到 app/src/main/file.bin,但未添加到最终的 .APK。
when building a project, HOW do i instruct cordova to add a file.bin to the resulted APK, so that after installing the apk the file will be available in this path: /data/data/com.myapp/file.bin
file.bin is a ( Cross-compiled Android binary file ) from the https://github.com/aria2/aria2 project, it is a command line tool downloader that run on android.
i installed plugin: org.apache.cordova.shell-exec
so that i can "chmod 755 /data/data/com.myapp/file.bin" and call this binary file from my js code.
i tried adding to config.xml:<resource-file src="file.bin" target="app/src/main/file.bin" />
but this did not work, it was not add to the final .APK, although it was copied to app/src/main/file.bin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论