From 86d3a419b6362fa978c17b3703afc88ffdf896fd Mon Sep 17 00:00:00 2001 From: wanganxp Date: Thu, 6 Jun 2024 00:30:53 +0800 Subject: [PATCH] =?UTF-8?q?uts=E6=8F=92=E4=BB=B6debug=E5=92=8C=E8=A7=86?= =?UTF-8?q?=E9=A2=91=E6=9D=83=E9=99=90=E6=8F=8F=E8=BF=B0=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/_sidebar.md | 2 ++ docs/api/choose-image.md | 2 +- docs/api/choose-video.md | 5 +++++ docs/plugin/uts-plugin.md | 8 ++++---- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/docs/_sidebar.md b/docs/_sidebar.md index 9a75e0d9..a31334e6 100644 --- a/docs/_sidebar.md +++ b/docs/_sidebar.md @@ -29,6 +29,8 @@ * 运行和调试 * [真机运行](https://uniapp.dcloud.net.cn/tutorial/run/run-app.html) * [Android审查元素](debug/android-inspector.md) + * [uts插件Android Debug](https://uniapp.dcloud.net.cn/tutorial/debug/uni-uts-debug.html) + * [uts插件iOS Debug](https://uniapp.dcloud.net.cn/tutorial/debug/uni-uts-debug-ios.html) * [性能优化](performance.md) * [源码和示例](sample.md) * [uni错误规范](https://uniapp.dcloud.net.cn/tutorial/err-spec.html) diff --git a/docs/api/choose-image.md b/docs/api/choose-image.md index 2fffcaf1..bde83fcb 100644 --- a/docs/api/choose-image.md +++ b/docs/api/choose-image.md @@ -17,6 +17,6 @@ ## Tips -* 获取手机端app是否拥有摄像头权限,请使用API [uni.getAppAuthorizeSetting](get-app-authorize-setting.md) +* 本API会自动申请摄像头和相册权限,如需手动获取app是否拥有摄像头和相册权限,参考 [uni.getAppAuthorizeSetting](get-app-authorize-setting.md) * app端拍照和相册选择会在应用沙盒目录的cache目录产生临时文件,位置[详见](file-system-spec.md#cache)。 * app端如需主动删除临时文件,使用[uni.getFileSystemManager](get-file-system-manager.md)。 diff --git a/docs/api/choose-video.md b/docs/api/choose-video.md index fec5a40c..fb1ac98f 100644 --- a/docs/api/choose-video.md +++ b/docs/api/choose-video.md @@ -15,3 +15,8 @@ + +## Tips +* 本API会自动申请摄像头和相册权限,如需手动获取app是否拥有摄像头和相册权限,参考 [uni.getAppAuthorizeSetting](get-app-authorize-setting.md) +* app端拍摄和相册选择会在应用沙盒目录的cache目录产生临时文件,位置[详见](file-system-spec.md#cache)。 +* app端如需主动删除临时文件,使用[uni.getFileSystemManager](get-file-system-manager.md)。 \ No newline at end of file diff --git a/docs/plugin/uts-plugin.md b/docs/plugin/uts-plugin.md index 353eaacb..e3f348aa 100644 --- a/docs/plugin/uts-plugin.md +++ b/docs/plugin/uts-plugin.md @@ -1372,21 +1372,21 @@ uts插件编译需要XCode环境,因此在mac电脑安装了XCode工具时支 在windows电脑或者mac电脑没有安装XCode工具时,需要提交云端打包生成自定义基座后才能调用uts插件。 -### debug断点调试 -uts插件支持debug断点调试。 +### Debug断点调试 +uts插件支持debug断点调试。可以在uts插件代码中打断点、查看上下文,与前端代码联调。 - [Android debug教程](https://uniapp.dcloud.net.cn/tutorial/debug/uni-uts-debug.html) - [iOS debug教程](https://uniapp.dcloud.net.cn/tutorial/debug/uni-uts-debug-ios.html) #### Bug&Tips -- 目前仅支持uni-app js项目使用uts插件时的调试;uni-app x预计在HBuilderX4.0起支持debug uts插件。 - Android平台不支持跨进程调试/日志打印,即 console.log 目前只能在当前进程生效,开发多进程应用时,暂时无法打印日志到控制台 -## 云端打包 +## 打包 正常支持云端打包。但打包后uts编译为了纯原生二进制代码,不支持wgt热更新。 +本地打包:[另见文档](../native/README.md) ## 常见问题 -- GitLab