更新记录
1.0.0(2020-06-10) 下载此版本
发布
平台兼容性
Android | Android CPU类型 | iOS |
---|---|---|
√ | armeabi-v7a:未测试,arm64-v8a:未测试,x86:未测试 | × |
原生插件通用使用流程:
- 购买插件,选择该插件绑定的项目。
- 在HBuilderX里找到项目,在manifest的app原生插件配置中勾选模块,如需要填写参数则参考插件作者的文档添加。
- 根据插件作者的提供的文档开发代码,在代码中引用插件,调用插件功能。
- 打包自定义基座,选择插件,得到自定义基座,然后运行时选择自定义基座,进行log输出测试。
- 开发完毕后正式云打包
付费原生插件目前不支持离线打包。
Android 离线打包原生插件另见文档 https://nativesupport.dcloud.net.cn/NativePlugin/offline_package/android
iOS 离线打包原生插件另见文档 https://nativesupport.dcloud.net.cn/NativePlugin/offline_package/ios
注意事项:使用HBuilderX2.7.14以下版本,如果同一插件且同一appid下购买并绑定了多个包名,提交云打包界面提示包名绑定不一致时,需要在HBuilderX项目中manifest.json->“App原生插件配置”->”云端插件“列表中删除该插件重新选择
//当第三方程序选中文件采用第三方打开后 在index的 onshow方法检测
//获取文件的平台路径 var arg = plus.runtime.arguments; if (arg.startsWith("{")) {//如果是JSON对象,用于以文件形式分享的情况,如:wps if (arg.indexOf("android.intent.extra.STREAM")>0) { var jsonObj=JSON.parse(arg); content = jsonObj['android.intent.extra.STREAM']; } else { //请使用文件或附件方式分享。 return; } }
if (content.startsWith("file://")) { //直接的文件路径,常见QQ中 plus.nativeUI.confirm("是否上传本文件打印", function(e) { if(e.index == 1) { return } else { uploadFile(content); }; }); } else if (content.startsWith("content://com.tencent.mm.external.fileprovider/external/")) { //微信 var filepath = filePath = "file:///storage/emulated/0/" + content.substr(56); plus.nativeUI.confirm("是否上传本文件打印", function(e) { if(e.index == 1) { return } else { uploadFile(filePath); }; }); } else if (content.startsWith("content://com.android.fileexplorer.myprovider/external_files/")) { //小米文件管理器 var filepath = filePath = "file:///storage/emulated/0/" + content.substr(61); plus.nativeUI.confirm("是否上传本文件打印", function(e) { if(e.index == 1) { return } else { uploadFile(filePath); }; }); } else if (content.startsWith("content://com.estrongs.files/")) { //ES文件管理器 var filepath = filePath = "file:///" + content.substr(29); plus.nativeUI.confirm("是否上传本文件打印", function(e) { if(e.index == 1) { return } else { uploadFile(filePath); }; }); } else if (content.startsWith("content://cn.wps.moffice_eng.fileprovider/external/")) { //WPS以文件形式分享 var filepath = filePath = "file:///storage/emulated/0/" + content.substr(51); plus.nativeUI.confirm("是否上传本文件打印", function(e) { if(e.index == 1) { return } else { uploadFile(filePath); }; }); } else if (content.indexOf("external_files/")) { var filepath = filePath = "file:///storage/emulated/0/" + content.substr(content.indexOf("external_files/")+15); plus.nativeUI.confirm("是否上传本文件打印", function(e) { if(e.index == 1) { return } else { uploadFile(filePath); }; }); }else if (content.indexOf("external/")) { var filepath = filePath = "file:///storage/emulated/0/" + content.substr(content.indexOf("external/")+9); plus.nativeUI.confirm("是否上传本文件打印", function(e) { if(e.index == 1) { return } else { uploadFile(filePath); }; }); } else { plus.OpenFile.OpenFileFunction(arg, "0", "0", "0", function(res) { plus.nativeUI.confirm("是否上传本文件打印?", function(e) { if(e.index == 1) { return } else { uploadFile(res); }; }); }, function(res) { mui.alert(res); }); }