文章40 | 阅读 20744 | 点赞0
包名 | 说明 | 默认是否下载 | 参考 |
---|---|---|---|
Native | C/C++语言SDK包 | 否 | 《Native API参考》 |
JS | JS语言SDK包 | 是 | 《JS API参考》 |
Java | Java语言SDK包 | 是 | 《Java API参考》 |
system-image | Phone设备的X86本地模拟器的SDK包 | 否 | 使用本地模拟器,需同时下载Emulator |
Emulator | X86本地模拟器 | 否 | 使用本地模拟器,需同时下载system-image |
Toolchains | SDK工具链,HarmonyOS应用开发必备工具集,包括编译、打包、签名、数据库管理等工具的集合 | 是 | - |
Previewer | HarmonyOS应用预览器,在开发过程中可以动态预览Phone、TV、Wearable、LiteWearable等设备的应用效果,支持JS和Java应用预览 | 是 | 使用预览器查看应用效果 |
systemProp.http.proxyHost=proxy.server.com
systemProp.http.proxyPort=8080
systemProp.http.nonProxyHosts=*.company.com|10.*|100.*
systemProp.http.proxyUser=userId
systemProp.http.proxyPassword=password
systemProp.https.proxyHost=proxy.server.com
systemProp.https.proxyPort=8080
systemProp.https.nonProxyHosts=*.company.com|10.*|100.*
systemProp.https.proxyUser=userId
systemProp.https.proxyPassword=password
如果非首次设置向导进入HTTP Proxy,您可以通过如下方式进入HTTP Proxy配置界面:
在欢迎页点击Configure > Settings > Appearance & Behavior > System Settings > HTTP Proxy进入HTTP Proxy设置界面(Mac系统为Configure > Preferences > Appearance & Behavior > System Settings > HTTP Proxy)。
在打开了工程的情况下,可以点击File > Settings > Appearance & Behavior > System Settings > HTTP Proxy进入HTTP Proxy设置界面(Mac系统为DevEco Studio > Preferences > Appearance & Behavior > System Settings > HTTP Proxy)
proxy=http://user:password@proxy.server.com:80
https-proxy=http://user:password@proxy.server.com:80
如果password中存在特殊字符,如@、#、*等符号,可能导致配置不生效,建议将特殊字符替换为ASCII码,并在ASCII码前加百分号%。常用符号替换为ASCII码对照表如下:
!:%21
@:%40
#:%23
¥:%24
&:%26
*:%2A
+:%2B
npm info express
npm cache clean -f
.\npm cache clean -f
如果是创建的原子化服务,则:
原子化服务是免安装的,config.json 中自动添加 installationFree 字段,取值为“true”。
如果 entry 模块的 installationFree 字段为 true,则其相关的所有 hap模块的 installationFree 字段都默认为 true;如果 entry 模块的 installationFree 字段为 false,则其相关的所有 hap 模块可以配置为 true 或 false。
编译构建 App 时,每个 hap 包大小不能超过 10MB。
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/Forever_wj/article/details/117964823
内容来源于网络,如有侵权,请联系作者删除!