#鸿蒙通关秘籍#在HarmonyOS中如何为不同设备类型定制不同的target?

HarmonyOS
2024-12-02 13:37:01
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
CRM晨光熹微

为不同设备类型定制target,可以在 build-profile.json5 文件中规定每个 target 的设备支持。以下展示如何为默认版和tablet版分别定义设备类型:

{
  "targets": [
    {
      "name": "default",
      "runtimeOS": "HarmonyOS"
    },
    {
      "name": "tablet_target",
      "runtimeOS": "HarmonyOS",
      "config": {
        "deviceType": [
          "tablet"
        ]
      }
    }
  ]
}
分享
微博
QQ
微信
回复
2024-12-02 15:44:32
相关问题
关于定制不同product
494浏览 • 1回复 待解决