1. 程式人生 > 其它 >鴻蒙OS應用開發之——This device type does not match the module profile

鴻蒙OS應用開發之——This device type does not match the module profile

技術標籤:HarmonyOS

一 現象

執行專案到裝置時,會出現錯誤,資訊如下

This device type does not match the module profile.
Error while Deploying HAP

二 原因

config.json中裝置欄位配置與裝置不匹配(裝置要求執行到phone(手機)上,實際執行到其他裝置上)

"deviceType": [
      "phone"
 ],

三 解決辦法

3.1 deviceType可供選擇型別

屬性名稱含義資料型別是否可預設
default表示所有裝置通用的應用配置資訊物件
phone表示手機類裝置的應用資訊配置物件可預設,預設為空
tablet表示平板的應用配置資訊物件可預設,預設為空
tv表示智慧屏特有的應用配置資訊物件可預設,預設為空
car表示車機特有的應用配置資訊物件可預設,預設為空
wearable表示智慧穿戴特有的應用配置資訊物件可預設,預設為空
liteWearable表示輕量級智慧穿戴特有的應用配置資訊物件可預設,預設為空
smartVision表示智慧攝像頭特有的應用配置資訊物件可預設,預設為空

2.2 修改或新增deviceType(適配手機和平板)

 "deviceType": [
      "phone","tablet"
 ],