From 134d2eced31a67de8a65edeac36f2a6a05d354ff Mon Sep 17 00:00:00 2001 From: WOSHIMAHAIFENG Date: Mon, 22 Jul 2024 16:54:42 +0800 Subject: [PATCH] Update manifest-modules.md --- docs/collocation/manifest-modules.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/collocation/manifest-modules.md b/docs/collocation/manifest-modules.md index 21a0c67c..24890ba5 100644 --- a/docs/collocation/manifest-modules.md +++ b/docs/collocation/manifest-modules.md @@ -192,3 +192,23 @@ app平台默认启动界面为白色(暗黑模式下为黑色),为了避 > app-ios平台支付模块需HBuilderX4.18及以上版本 + +### 配置定位SDK +在 app -> distribute -> modules 下添加 uni-getLocation 节点: +```json + modules:{ + "uni-getLocation":{ + "system":{}, + "tencent":{} + } + } +``` + +其中 uni-getLocation 下的节点表示要聚合的定位方式: +| 标识 | 定位方式 | +| :- | :- | +| system | 系统定位 | +| tencent | 腾讯定位 | + +添加相应的节点,云端打包就会将对应的定位 SDK 打包到最终安装包中。 + -- GitLab