提交 6ebc74d9 编写于 作者: D DCloud_LXH

feat: mp-weixin

上级 f203b5e4
此差异已折叠。
因为 它太大了无法显示 source diff 。你可以改为 查看blob
此差异已折叠。
......@@ -48,12 +48,12 @@ uni-app x 的隐私信息访问的许可描述配置,移入了[Info.plist](htt
使用[uni内置模块](./manifest-modules.md#utsmodules)时,云端打包回自动添加模块需要的隐私信息访问的许可描述,但许可描述信息是通用描述,不一定适合应用的实际使用场景描述,需根据应用的实际情况在[Info.plist](https://uniapp.dcloud.net.cn/tutorial/app-nativeresource-ios.html#infoPlist)中配置准确的许可描述。
#### 渠道信息
#### 渠道信息
> HBuilder4.31版本新增支持
> HBuilder4.31版本新增支持
uni-app x 的渠道信息配置,云端需在“App打包”界面配置,详情参考[配置渠道包](../tutorial/app-package.md#channel)
离线打包时需在原生工程中配置,详情参考[Android平台配置应用渠道包](../native/use/android.md#androidmanifest)
uni-app x 的渠道信息配置,云端需在“App打包”界面配置,详情参考[配置渠道包](../tutorial/app-package.md#channel)
离线打包时需在原生工程中配置,详情参考[Android平台配置应用渠道包](../native/use/android.md#androidmanifest)
#### DISTRIBUTE配置 @app-distribute
......@@ -87,7 +87,7 @@ uni-app x 的渠道信息配置,云端需在“App打包”界面配置,详
<!-- MANIFESTJSON.icons_ios.table -->
> 必须使用 `png` 格式图标,图片中不能存在透明区域
> 必须使用 `png` 格式图标,图片中不能存在透明区域
<!-- MANIFESTJSON.icons_ios.compatibility -->
......@@ -138,56 +138,56 @@ uni-app x 的渠道信息配置,云端需在“App打包”界面配置,详
###### manifestPlaceholders @manifestplaceholders
manifest.json中不提供配置 `manifestPlaceholders` 数据,如果应用使用的插件或三方SDK需要使用,可在项目的 `nativeResources/android/manifestPlaceholders.json` 文件中配置,详情参考[Android原生应用清单文件和资源](https://uniapp.dcloud.net.cn/tutorial/app-nativeresource-android.html#manifestplaceholders)
manifest.json中不提供配置 `manifestPlaceholders` 数据,如果应用使用的插件或三方SDK需要使用,可在项目的 `nativeResources/android/manifestPlaceholders.json` 文件中配置,详情参考[Android原生应用清单文件和资源](https://uniapp.dcloud.net.cn/tutorial/app-nativeresource-android.html#manifestplaceholders)
###### enableResourceOptimizations @enableresourceoptimizations
> HBuilder4.33版本新增支持 enableResourceOptimizations 配置项
> HBuilder4.33版本新增支持 enableResourceOptimizations 配置项
Android平台云端打包时gradle.properties的android.enableResourceOptimizations配置项,配置是否开启Android原生res资源文件优化,开启后res资源文件名称会被混淆,默认值为 ture,如不希望混淆原生res资源文件名称,可在 app -> distribute -> android 节点下配置以下字段关闭:
Android平台云端打包时gradle.properties的android.enableResourceOptimizations配置项,配置是否开启Android原生res资源文件优化,开启后res资源文件名称会被混淆,默认值为 ture,如不希望混淆原生res资源文件名称,可在 app -> distribute -> android 节点下配置以下字段关闭:
```json
"enableResourceOptimizations": false
```
###### aaptOptions @aaptoptions
###### aaptOptions @aaptoptions
> HBuilder4.31版本新增支持
> HBuilder4.31版本新增支持
Android平台云端打包时build.gradle的aaptOptions配置项,支持的属性参考:[Android官方文档](https://developer.android.google.cn/reference/tools/gradle-api/7.1/com/android/build/api/dsl/AaptOptions?hl=en),如下示例源码:
```json
Android平台云端打包时build.gradle的aaptOptions配置项,支持的属性参考:[Android官方文档](https://developer.android.google.cn/reference/tools/gradle-api/7.1/com/android/build/api/dsl/AaptOptions?hl=en),如下示例源码:
```json
"aaptOptions": [
"noCompress 'png', 'jpg', 'jpeg'" //配置禁止对 png、jpg、jpeg格式的文件进行压缩
]
```
云端打包默认包含以下配置:
- additionalParameters '--auto-add-overlay'
- ignoreAssetsPattern '!.svn:!.git:.*:!CVS:!thumbs.db:!picasa.ini:!*.scc:*~'
云端打包默认包含以下配置:
- additionalParameters '--auto-add-overlay'
- ignoreAssetsPattern '!.svn:!.git:.*:!CVS:!thumbs.db:!picasa.ini:!*.scc:*~'
###### buildFeatures @buildfeatures
###### buildFeatures @buildfeatures
> HBuilder4.31版本新增支持
> HBuilder4.31版本新增支持
Android平台云端打包时build.gradle的buildFeatures配置项,支持的属性参考:[Android官方文档](https://developer.android.google.cn/reference/tools/gradle-api/7.1/com/android/build/api/dsl/BuildFeatures?hl=en),如下示例源码:
```json
Android平台云端打包时build.gradle的buildFeatures配置项,支持的属性参考:[Android官方文档](https://developer.android.google.cn/reference/tools/gradle-api/7.1/com/android/build/api/dsl/BuildFeatures?hl=en),如下示例源码:
```json
"buildFeatures": [
"viewBinding true", //开启dataBinding
"dataBinding true" //开启viewBinding
]
```
###### packagingOptions @packagingoptions
Android平台云端打包时build.gradle的buildFeatures配置项,支持的属性参考:[Android官方文档](https://developer.android.google.cn/reference/tools/gradle-api/7.4/com/android/build/api/dsl/PackagingOptions),如下示例源码:
```json
###### packagingOptions @packagingoptions
Android平台云端打包时build.gradle的buildFeatures配置项,支持的属性参考:[Android官方文档](https://developer.android.google.cn/reference/tools/gradle-api/7.4/com/android/build/api/dsl/PackagingOptions),如下示例源码:
```json
"packagingOptions": [
"exclude 'META-INF/LICENSE'", //排除文件META-INF/LICENSE
"exclude 'META-INF/LICENSE.txt'" //排除文件META-INF/LICENSE.txt
]
```
云端打包默认包含以下配置:
- pickFirst 'lib/*/libstlport_shared.so'
- pickFirst 'lib/*/libc++_shared.so'
云端打包默认包含以下配置:
- pickFirst 'lib/*/libstlport_shared.so'
- pickFirst 'lib/*/libc++_shared.so'
##### IOS配置 @distribute-ios
......@@ -197,51 +197,59 @@ Android平台云端打包时build.gradle的buildFeatures配置项,支持的属
<!-- MANIFESTJSON.distribute_ios.compatibility -->
###### CFBundleName @cfbundlename
###### CFBundleName @cfbundlename
>HBuilder4.34版本新增支持
>HBuilder4.34版本新增支持
iOS平台配置应用内部名称,默认值为“UniAppX”,最多支持15个字符,详细说明参考[苹果官方文档](https://developer.apple.com/documentation/bundleresources/information-property-list/cfbundlename)
iOS平台配置应用内部名称,默认值为“UniAppX”,最多支持15个字符,详细说明参考[苹果官方文档](https://developer.apple.com/documentation/bundleresources/information-property-list/cfbundlename)
以下为配置应用内部名称示例:
```json
```json
{
"CFBundleName": "MyApp"
}
```
###### UIRequiresFullScreen @uirequiresfullscreen
###### UIRequiresFullScreen @uirequiresfullscreen
>HBuilder4.34版本新增支持
>HBuilder4.34版本新增支持
iOS平台配置应用在iPad设置是否能够与其他应用程序共享屏幕(分屏显示),需配置应用支持iPad设备时有效,默认值为true(可与其他应用程序共享屏幕)。更多信息参考[苹果官方文档](https://developer.apple.com/documentation/bundleresources/information-property-list/uirequiresfullscreen)
iOS平台配置应用在iPad设置是否能够与其他应用程序共享屏幕(分屏显示),需配置应用支持iPad设备时有效,默认值为true(可与其他应用程序共享屏幕)。更多信息参考[苹果官方文档](https://developer.apple.com/documentation/bundleresources/information-property-list/uirequiresfullscreen)
以下为配置应用不与其他应用共享屏幕示例:
```json
```json
{
"UIRequiresFullScreen": false
}
```
## 其它设置
## 其它设置
### URL Scheme @urlScheme
uni-app x 项目 manifest.json 文件不再提供 url scheme 配置,HBuilderX4.18及以上版本支持在 app 原生应用配置文件中进行设置,详情参考:
- [Android平台 url scheme 配置](https://uniapp.dcloud.net.cn/tutorial/app-nativeresource-android.html#urlscheme)
- [iOS平台 url scheme 配置](https://uniapp.dcloud.net.cn/tutorial/app-nativeresource-ios.html#urlscheme)
### URL Scheme @urlScheme
uni-app x 项目 manifest.json 文件不再提供 url scheme 配置,HBuilderX4.18及以上版本支持在 app 原生应用配置文件中进行设置,详情参考:
- [Android平台 url scheme 配置](https://uniapp.dcloud.net.cn/tutorial/app-nativeresource-android.html#urlscheme)
- [iOS平台 url scheme 配置](https://uniapp.dcloud.net.cn/tutorial/app-nativeresource-ios.html#urlscheme)
**注意**
**注意**
- uni-app x项目标准基座已配置 url scheme 值:"uniappx"
- 配置 url scheme 需提交云端打包才能生效
- 配置 url scheme 需提交云端打包才能生效
标准基座可通过此网页体验 Url Scheme 启动 App:[https://uniappx.dcloud.net.cn/scheme.html](https://uniappx.dcloud.net.cn/scheme.html)
### Universal Link @ulink
### manifestmp-weixin 配置项列表 @manifest-mp-weixin
<!-- MANIFESTJSON.manifest_mp-weixin.description -->
<!-- MANIFESTJSON.manifest_mp-weixin.table -->
<!-- MANIFESTJSON.manifest_mp-weixin.compatibility -->
### Universal Link @ulink
uni-app x 项目 manifest.json 文件不再提供 iOS 平台的 通用链接(universal link)相关配置,HBuilderX4.18及以上版本支持在 iOS原生应用配置文件中通过 `关联域(Associated Domains)` 配置通用链接,详情参考:
- [iOS平台通用链接配置教程](https://uniapp.dcloud.net.cn/tutorial/app-ios-capabilities.html#%E9%80%9A%E7%94%A8%E9%93%BE%E6%8E%A5-universal-link)
- [iOS平台通用链接配置教程](https://uniapp.dcloud.net.cn/tutorial/app-ios-capabilities.html#%E9%80%9A%E7%94%A8%E9%93%BE%E6%8E%A5-universal-link)
**注意**
- uni-app x项目标准基座已配置 universal link 值:"https://uniappx.dcloud.net.cn/ulink",但重签名会使得通用链接配置失效,无法通过通用链接启动标准基座
**注意**
- uni-app x项目标准基座已配置 universal link 值:"https://uniappx.dcloud.net.cn/ulink",但重签名会使得通用链接配置失效,无法通过通用链接启动标准基座
- 配置 universal link 需提交云端打包才能生效
......@@ -273,5 +281,12 @@ uni-app x 项目 manifest.json 文件不再提供 iOS 平台的 通用链接(u
}
```
<!-- MANIFESTJSON.tutorial -->
### HBuilderX配置 @manifest-__hbuilderx
<!-- MANIFESTJSON.manifest___hbuilderx.description -->
<!-- MANIFESTJSON.manifest___hbuilderx.table -->
<!-- MANIFESTJSON.manifest___hbuilderx.compatibility -->
<!-- MANIFESTJSON.tutorial -->
......@@ -68,3 +68,36 @@
* unicloud
* [unicloud-db](unicloud-db.md)
* [animation-view](animation-view.md)
* Skyline
* 手势系统
* [double-tap-gesture-handler](double-tap-gesture-handler.md)
* [force-press-gesture-handler](force-press-gesture-handler.md)
* [horizontal-drag-gesture-handler](horizontal-drag-gesture-handler.md)
* [long-press-gesture-handler](long-press-gesture-handler.md)
* [pan-gesture-handler](pan-gesture-handler.md)
* [scale-gesture-handler](scale-gesture-handler.md)
* [tap-gesture-handler](tap-gesture-handler.md)
* [vertical-drag-gesture-handler](vertical-drag-gesture-handler.md)
* [draggable-sheet](draggable-sheet.md)
* [grid-builder](grid-builder.md)
* [grid-view](grid-view.md)
* [list-builder](list-builder.md)
* [open-container](open-container.md)
* [share-element](share-element.md)
* [snapshot](snapshot.md)
* [span](span.md)
* 开放能力
* [ad-custom](ad-custom.md)
* [official-account](official-account.md)
* [store-home](store-home.md)
* [store-product](store-product.md)
* [其他组件](unsupport.md)
* [aria-component](aria-component.md)
* [native-component](native-component.md)
* [channel-live](channel-live.md)
* [channel-video](channel-video.md)
* [voip-room](voip-room.md)
* [keyboard-accessory](keyboard-accessory.md)
* [page-container](page-container.md)
* [root-portal](root-portal.md)
* [block](block.md)
## ad-custom
<!-- UTSCOMJSON.ad-custom.description -->
<!-- UTSCOMJSON.ad-custom.compatibility -->
<!-- UTSCOMJSON.ad-custom.attribute -->
<!-- UTSCOMJSON.ad-custom.event -->
<!-- UTSCOMJSON.ad-custom.component_type -->
<!-- UTSCOMJSON.ad-custom.children -->
<!-- UTSCOMJSON.ad-custom.example -->
<!-- UTSCOMJSON.ad-custom.reference -->
## aria-component
<!-- UTSCOMJSON.aria-component.description -->
<!-- UTSCOMJSON.aria-component.compatibility -->
<!-- UTSCOMJSON.aria-component.attribute -->
<!-- UTSCOMJSON.aria-component.event -->
<!-- UTSCOMJSON.aria-component.component_type -->
<!-- UTSCOMJSON.aria-component.children -->
<!-- UTSCOMJSON.aria-component.example -->
<!-- UTSCOMJSON.aria-component.reference -->
## channel-live
<!-- UTSCOMJSON.channel-live.description -->
<!-- UTSCOMJSON.channel-live.compatibility -->
<!-- UTSCOMJSON.channel-live.attribute -->
<!-- UTSCOMJSON.channel-live.event -->
<!-- UTSCOMJSON.channel-live.component_type -->
<!-- UTSCOMJSON.channel-live.children -->
<!-- UTSCOMJSON.channel-live.example -->
<!-- UTSCOMJSON.channel-live.reference -->
## channel-video
<!-- UTSCOMJSON.channel-video.description -->
<!-- UTSCOMJSON.channel-video.compatibility -->
<!-- UTSCOMJSON.channel-video.attribute -->
<!-- UTSCOMJSON.channel-video.event -->
<!-- UTSCOMJSON.channel-video.component_type -->
<!-- UTSCOMJSON.channel-video.children -->
<!-- UTSCOMJSON.channel-video.example -->
<!-- UTSCOMJSON.channel-video.reference -->
## double-tap-gesture-handler
<!-- UTSCOMJSON.double-tap-gesture-handler.description -->
<!-- UTSCOMJSON.double-tap-gesture-handler.compatibility -->
<!-- UTSCOMJSON.double-tap-gesture-handler.attribute -->
<!-- UTSCOMJSON.double-tap-gesture-handler.event -->
<!-- UTSCOMJSON.double-tap-gesture-handler.component_type -->
<!-- UTSCOMJSON.double-tap-gesture-handler.children -->
<!-- UTSCOMJSON.double-tap-gesture-handler.example -->
<!-- UTSCOMJSON.double-tap-gesture-handler.reference -->
## draggable-sheet
<!-- UTSCOMJSON.draggable-sheet.description -->
<!-- UTSCOMJSON.draggable-sheet.compatibility -->
<!-- UTSCOMJSON.draggable-sheet.attribute -->
<!-- UTSCOMJSON.draggable-sheet.event -->
<!-- UTSCOMJSON.draggable-sheet.component_type -->
<!-- UTSCOMJSON.draggable-sheet.children -->
<!-- UTSCOMJSON.draggable-sheet.example -->
<!-- UTSCOMJSON.draggable-sheet.reference -->
## force-press-gesture-handler
<!-- UTSCOMJSON.force-press-gesture-handler.description -->
<!-- UTSCOMJSON.force-press-gesture-handler.compatibility -->
<!-- UTSCOMJSON.force-press-gesture-handler.attribute -->
<!-- UTSCOMJSON.force-press-gesture-handler.event -->
<!-- UTSCOMJSON.force-press-gesture-handler.component_type -->
<!-- UTSCOMJSON.force-press-gesture-handler.children -->
<!-- UTSCOMJSON.force-press-gesture-handler.example -->
<!-- UTSCOMJSON.force-press-gesture-handler.reference -->
## grid-builder
<!-- UTSCOMJSON.grid-builder.description -->
<!-- UTSCOMJSON.grid-builder.compatibility -->
<!-- UTSCOMJSON.grid-builder.attribute -->
<!-- UTSCOMJSON.grid-builder.event -->
<!-- UTSCOMJSON.grid-builder.component_type -->
<!-- UTSCOMJSON.grid-builder.children -->
<!-- UTSCOMJSON.grid-builder.example -->
<!-- UTSCOMJSON.grid-builder.reference -->
## grid-view
<!-- UTSCOMJSON.grid-view.description -->
<!-- UTSCOMJSON.grid-view.compatibility -->
<!-- UTSCOMJSON.grid-view.attribute -->
<!-- UTSCOMJSON.grid-view.event -->
<!-- UTSCOMJSON.grid-view.component_type -->
<!-- UTSCOMJSON.grid-view.children -->
<!-- UTSCOMJSON.grid-view.example -->
<!-- UTSCOMJSON.grid-view.reference -->
## horizontal-drag-gesture-handler
<!-- UTSCOMJSON.horizontal-drag-gesture-handler.description -->
<!-- UTSCOMJSON.horizontal-drag-gesture-handler.compatibility -->
<!-- UTSCOMJSON.horizontal-drag-gesture-handler.attribute -->
<!-- UTSCOMJSON.horizontal-drag-gesture-handler.event -->
<!-- UTSCOMJSON.horizontal-drag-gesture-handler.component_type -->
<!-- UTSCOMJSON.horizontal-drag-gesture-handler.children -->
<!-- UTSCOMJSON.horizontal-drag-gesture-handler.example -->
<!-- UTSCOMJSON.horizontal-drag-gesture-handler.reference -->
## keyboard-accessory
<!-- UTSCOMJSON.keyboard-accessory.description -->
<!-- UTSCOMJSON.keyboard-accessory.compatibility -->
<!-- UTSCOMJSON.keyboard-accessory.attribute -->
<!-- UTSCOMJSON.keyboard-accessory.event -->
<!-- UTSCOMJSON.keyboard-accessory.component_type -->
<!-- UTSCOMJSON.keyboard-accessory.children -->
<!-- UTSCOMJSON.keyboard-accessory.example -->
<!-- UTSCOMJSON.keyboard-accessory.reference -->
## list-builder
<!-- UTSCOMJSON.list-builder.description -->
<!-- UTSCOMJSON.list-builder.compatibility -->
<!-- UTSCOMJSON.list-builder.attribute -->
<!-- UTSCOMJSON.list-builder.event -->
<!-- UTSCOMJSON.list-builder.component_type -->
<!-- UTSCOMJSON.list-builder.children -->
<!-- UTSCOMJSON.list-builder.example -->
<!-- UTSCOMJSON.list-builder.reference -->
## live-player
<!-- UTSCOMJSON.live-player.description -->
<!-- UTSCOMJSON.live-player.compatibility -->
<!-- UTSCOMJSON.live-player.attribute -->
<!-- UTSCOMJSON.live-player.event -->
<!-- UTSCOMJSON.live-player.component_type -->
<!-- UTSCOMJSON.live-player.children -->
<!-- UTSCOMJSON.live-player.example -->
<!-- UTSCOMJSON.live-player.reference -->
## live-pusher
<!-- UTSCOMJSON.live-pusher.description -->
<!-- UTSCOMJSON.live-pusher.compatibility -->
<!-- UTSCOMJSON.live-pusher.attribute -->
<!-- UTSCOMJSON.live-pusher.event -->
<!-- UTSCOMJSON.live-pusher.component_type -->
<!-- UTSCOMJSON.live-pusher.children -->
<!-- UTSCOMJSON.live-pusher.example -->
<!-- UTSCOMJSON.live-pusher.reference -->
## long-press-gesture-handler
<!-- UTSCOMJSON.long-press-gesture-handler.description -->
<!-- UTSCOMJSON.long-press-gesture-handler.compatibility -->
<!-- UTSCOMJSON.long-press-gesture-handler.attribute -->
<!-- UTSCOMJSON.long-press-gesture-handler.event -->
<!-- UTSCOMJSON.long-press-gesture-handler.component_type -->
<!-- UTSCOMJSON.long-press-gesture-handler.children -->
<!-- UTSCOMJSON.long-press-gesture-handler.example -->
<!-- UTSCOMJSON.long-press-gesture-handler.reference -->
## native-component
<!-- UTSCOMJSON.native-component.description -->
<!-- UTSCOMJSON.native-component.compatibility -->
<!-- UTSCOMJSON.native-component.attribute -->
<!-- UTSCOMJSON.native-component.event -->
<!-- UTSCOMJSON.native-component.component_type -->
<!-- UTSCOMJSON.native-component.children -->
<!-- UTSCOMJSON.native-component.example -->
<!-- UTSCOMJSON.native-component.reference -->
## official-account
<!-- UTSCOMJSON.official-account.description -->
<!-- UTSCOMJSON.official-account.compatibility -->
<!-- UTSCOMJSON.official-account.attribute -->
<!-- UTSCOMJSON.official-account.event -->
<!-- UTSCOMJSON.official-account.component_type -->
<!-- UTSCOMJSON.official-account.children -->
<!-- UTSCOMJSON.official-account.example -->
<!-- UTSCOMJSON.official-account.reference -->
## open-container
<!-- UTSCOMJSON.open-container.description -->
<!-- UTSCOMJSON.open-container.compatibility -->
<!-- UTSCOMJSON.open-container.attribute -->
<!-- UTSCOMJSON.open-container.event -->
<!-- UTSCOMJSON.open-container.component_type -->
<!-- UTSCOMJSON.open-container.children -->
<!-- UTSCOMJSON.open-container.example -->
<!-- UTSCOMJSON.open-container.reference -->
## page-container
<!-- UTSCOMJSON.page-container.description -->
<!-- UTSCOMJSON.page-container.compatibility -->
<!-- UTSCOMJSON.page-container.attribute -->
<!-- UTSCOMJSON.page-container.event -->
<!-- UTSCOMJSON.page-container.component_type -->
<!-- UTSCOMJSON.page-container.children -->
<!-- UTSCOMJSON.page-container.example -->
<!-- UTSCOMJSON.page-container.reference -->
## pan-gesture-handler
<!-- UTSCOMJSON.pan-gesture-handler.description -->
<!-- UTSCOMJSON.pan-gesture-handler.compatibility -->
<!-- UTSCOMJSON.pan-gesture-handler.attribute -->
<!-- UTSCOMJSON.pan-gesture-handler.event -->
<!-- UTSCOMJSON.pan-gesture-handler.component_type -->
<!-- UTSCOMJSON.pan-gesture-handler.children -->
<!-- UTSCOMJSON.pan-gesture-handler.example -->
<!-- UTSCOMJSON.pan-gesture-handler.reference -->
## root-portal
<!-- UTSCOMJSON.root-portal.description -->
<!-- UTSCOMJSON.root-portal.compatibility -->
<!-- UTSCOMJSON.root-portal.attribute -->
<!-- UTSCOMJSON.root-portal.event -->
<!-- UTSCOMJSON.root-portal.component_type -->
<!-- UTSCOMJSON.root-portal.children -->
<!-- UTSCOMJSON.root-portal.example -->
<!-- UTSCOMJSON.root-portal.reference -->
## scale-gesture-handler
<!-- UTSCOMJSON.scale-gesture-handler.description -->
<!-- UTSCOMJSON.scale-gesture-handler.compatibility -->
<!-- UTSCOMJSON.scale-gesture-handler.attribute -->
<!-- UTSCOMJSON.scale-gesture-handler.event -->
<!-- UTSCOMJSON.scale-gesture-handler.component_type -->
<!-- UTSCOMJSON.scale-gesture-handler.children -->
<!-- UTSCOMJSON.scale-gesture-handler.example -->
<!-- UTSCOMJSON.scale-gesture-handler.reference -->
## share-element
<!-- UTSCOMJSON.share-element.description -->
<!-- UTSCOMJSON.share-element.compatibility -->
<!-- UTSCOMJSON.share-element.attribute -->
<!-- UTSCOMJSON.share-element.event -->
<!-- UTSCOMJSON.share-element.component_type -->
<!-- UTSCOMJSON.share-element.children -->
<!-- UTSCOMJSON.share-element.example -->
<!-- UTSCOMJSON.share-element.reference -->
## snapshot
<!-- UTSCOMJSON.snapshot.description -->
<!-- UTSCOMJSON.snapshot.compatibility -->
<!-- UTSCOMJSON.snapshot.attribute -->
<!-- UTSCOMJSON.snapshot.event -->
<!-- UTSCOMJSON.snapshot.component_type -->
<!-- UTSCOMJSON.snapshot.children -->
<!-- UTSCOMJSON.snapshot.example -->
<!-- UTSCOMJSON.snapshot.reference -->
## span
<!-- UTSCOMJSON.span.description -->
<!-- UTSCOMJSON.span.compatibility -->
<!-- UTSCOMJSON.span.attribute -->
<!-- UTSCOMJSON.span.event -->
<!-- UTSCOMJSON.span.component_type -->
<!-- UTSCOMJSON.span.children -->
<!-- UTSCOMJSON.span.example -->
<!-- UTSCOMJSON.span.reference -->
## store-home
<!-- UTSCOMJSON.store-home.description -->
<!-- UTSCOMJSON.store-home.compatibility -->
<!-- UTSCOMJSON.store-home.attribute -->
<!-- UTSCOMJSON.store-home.event -->
<!-- UTSCOMJSON.store-home.component_type -->
<!-- UTSCOMJSON.store-home.children -->
<!-- UTSCOMJSON.store-home.example -->
<!-- UTSCOMJSON.store-home.reference -->
## store-product
<!-- UTSCOMJSON.store-product.description -->
<!-- UTSCOMJSON.store-product.compatibility -->
<!-- UTSCOMJSON.store-product.attribute -->
<!-- UTSCOMJSON.store-product.event -->
<!-- UTSCOMJSON.store-product.component_type -->
<!-- UTSCOMJSON.store-product.children -->
<!-- UTSCOMJSON.store-product.example -->
<!-- UTSCOMJSON.store-product.reference -->
## tap-gesture-handler
<!-- UTSCOMJSON.tap-gesture-handler.description -->
<!-- UTSCOMJSON.tap-gesture-handler.compatibility -->
<!-- UTSCOMJSON.tap-gesture-handler.attribute -->
<!-- UTSCOMJSON.tap-gesture-handler.event -->
<!-- UTSCOMJSON.tap-gesture-handler.component_type -->
<!-- UTSCOMJSON.tap-gesture-handler.children -->
<!-- UTSCOMJSON.tap-gesture-handler.example -->
<!-- UTSCOMJSON.tap-gesture-handler.reference -->
## vertical-drag-gesture-handler
<!-- UTSCOMJSON.vertical-drag-gesture-handler.description -->
<!-- UTSCOMJSON.vertical-drag-gesture-handler.compatibility -->
<!-- UTSCOMJSON.vertical-drag-gesture-handler.attribute -->
<!-- UTSCOMJSON.vertical-drag-gesture-handler.event -->
<!-- UTSCOMJSON.vertical-drag-gesture-handler.component_type -->
<!-- UTSCOMJSON.vertical-drag-gesture-handler.children -->
<!-- UTSCOMJSON.vertical-drag-gesture-handler.example -->
<!-- UTSCOMJSON.vertical-drag-gesture-handler.reference -->
## voip-room
<!-- UTSCOMJSON.voip-room.description -->
<!-- UTSCOMJSON.voip-room.compatibility -->
<!-- UTSCOMJSON.voip-room.attribute -->
<!-- UTSCOMJSON.voip-room.event -->
<!-- UTSCOMJSON.voip-room.component_type -->
<!-- UTSCOMJSON.voip-room.children -->
<!-- UTSCOMJSON.voip-room.example -->
<!-- UTSCOMJSON.voip-room.reference -->
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册